├── .gitattributes ├── .github ├── issue_template └── pull_request_template ├── .gitignore ├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README.md ├── config ├── Config-build.in ├── Config-devel.in ├── Config-images.in └── Config-kernel.in ├── feeds.conf.default ├── include ├── autotools.mk ├── cmake.mk ├── debug.mk ├── depends.mk ├── device_table.txt ├── download.mk ├── feeds.mk ├── hardened-ld-pie.specs ├── hardening.mk ├── host-build.mk ├── image-commands.mk ├── image-legacy.mk ├── image.mk ├── kernel-build.mk ├── kernel-defaults.mk ├── kernel-version.mk ├── kernel.mk ├── netfilter.mk ├── nls.mk ├── package-bin.mk ├── package-defaults.mk ├── package-dumpinfo.mk ├── package-ipkg.mk ├── package-seccomp.mk ├── package.mk ├── prereq-build.mk ├── prereq.mk ├── quilt.mk ├── rootfs.mk ├── scan.awk ├── scan.mk ├── shell.sh ├── site │ ├── aarch64 │ ├── aarch64_be │ ├── arc │ ├── arm │ ├── armeb │ ├── darwin │ ├── i386 │ ├── i486 │ ├── i686 │ ├── linux │ ├── m68k │ ├── mips │ ├── mips64 │ ├── mips64el │ ├── mipsel │ ├── powerpc │ ├── powerpc64 │ ├── sparc │ └── x86_64 ├── subdir.mk ├── target.mk ├── toolchain-build.mk ├── toplevel.mk ├── u-boot.mk ├── uclibc++.mk ├── unpack.mk ├── verbose.mk └── version.mk ├── package ├── Makefile ├── base-files │ ├── Makefile │ ├── files │ │ ├── bin │ │ │ ├── board_detect │ │ │ ├── config_generate │ │ │ └── ipcalc.sh │ │ ├── etc │ │ │ ├── banner │ │ │ ├── banner.failsafe │ │ │ ├── board.d │ │ │ │ └── 99-default_network │ │ │ ├── device_info │ │ │ ├── diag.sh │ │ │ ├── ethers │ │ │ ├── fstab │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── hotplug.d │ │ │ │ └── net │ │ │ │ │ └── 00-sysctl │ │ │ ├── init.d │ │ │ │ ├── boot │ │ │ │ ├── done │ │ │ │ ├── gpio_switch │ │ │ │ ├── led │ │ │ │ ├── sysctl │ │ │ │ ├── sysfixtime │ │ │ │ ├── system │ │ │ │ └── umount │ │ │ ├── inittab │ │ │ ├── iproute2 │ │ │ │ ├── ematch_map │ │ │ │ ├── rt_protos │ │ │ │ └── rt_tables │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── os-release │ │ │ ├── passwd │ │ │ ├── preinit │ │ │ ├── profile │ │ │ ├── protocols │ │ │ ├── rc.button │ │ │ │ ├── failsafe │ │ │ │ ├── power │ │ │ │ ├── reboot │ │ │ │ ├── reset │ │ │ │ └── rfkill │ │ │ ├── rc.common │ │ │ ├── rc.local │ │ │ ├── services │ │ │ ├── shadow │ │ │ ├── shells │ │ │ ├── sysctl.conf │ │ │ ├── sysctl.d │ │ │ │ └── 10-default.conf │ │ │ ├── sysupgrade.conf │ │ │ └── uci-defaults │ │ │ │ ├── 10_migrate-shadow │ │ │ │ ├── 12_network-generate-ula │ │ │ │ └── 13_fix-group-user │ │ ├── lib │ │ │ ├── functions.sh │ │ │ ├── functions │ │ │ │ ├── caldata.sh │ │ │ │ ├── leds.sh │ │ │ │ ├── migrations.sh │ │ │ │ ├── network.sh │ │ │ │ ├── preinit.sh │ │ │ │ ├── service.sh │ │ │ │ ├── system.sh │ │ │ │ └── uci-defaults.sh │ │ │ ├── preinit │ │ │ │ ├── 02_default_set_state │ │ │ │ ├── 02_sysinfo │ │ │ │ ├── 10_indicate_failsafe │ │ │ │ ├── 10_indicate_preinit │ │ │ │ ├── 30_failsafe_wait │ │ │ │ ├── 40_run_failsafe_hook │ │ │ │ ├── 50_indicate_regular_preinit │ │ │ │ ├── 70_initramfs_test │ │ │ │ ├── 80_mount_root │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ └── 99_10_run_init │ │ │ └── upgrade │ │ │ │ ├── common.sh │ │ │ │ ├── do_stage2 │ │ │ │ ├── fwtool.sh │ │ │ │ ├── keep.d │ │ │ │ └── base-files-essential │ │ │ │ ├── nand.sh │ │ │ │ └── stage2 │ │ ├── rom │ │ │ └── note │ │ ├── sbin │ │ │ ├── firstboot │ │ │ ├── hotplug-call │ │ │ ├── led.sh │ │ │ ├── pkg_check │ │ │ ├── sysupgrade │ │ │ └── wifi │ │ └── usr │ │ │ ├── lib │ │ │ └── os-release │ │ │ └── libexec │ │ │ ├── login.sh │ │ │ └── validate_firmware_image │ └── image-config.in ├── boot │ ├── arm-trusted-firmware-mvebu │ │ └── Makefile │ ├── arm-trusted-firmware-sunxi │ │ └── Makefile │ ├── at91bootstrap │ │ ├── Makefile │ │ └── at91bootstrap.mk │ ├── fconfig │ │ └── Makefile │ ├── grub2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-verifiers-Blocklist-fallout-cleanup.patch │ │ │ ├── 100-grub_setup_root.patch │ │ │ └── 300-CVE-2015-8370.patch │ ├── imx-bootlets │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-skip_sb_generation.patch │ │ │ ├── 002-set_elftosb_config.patch │ │ │ └── 003-add-olinuxino.patch │ ├── kexec-tools │ │ ├── Config.in │ │ ├── Makefile │ │ └── files │ │ │ ├── kdump.config │ │ │ ├── kdump.defaults │ │ │ └── kdump.init │ ├── 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 │ ├── tfa-layerscape │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fiptool-hostbuild-fixes.patch │ │ │ ├── 002-plat-nxp-tools-fix-a-makefile-bug-that-will-use-defa.patch │ │ │ └── 003-plat-nxp-tools-fix-create_pbl-and-byte_swap-host-bui.patch │ ├── uboot-ar71xx │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 0001-upstream-Reproducible-U-Boot-build-support-using-SOURCE_DATE_.patch │ │ │ ├── 0002-upstream-Makefile-Reproducible-U-Boot-build-support.patch │ │ │ ├── 001-ar71xx.patch │ │ │ ├── 002-ar71xx-spi.patch │ │ │ ├── 010-enet-ag71xx.patch │ │ │ ├── 011-switch-rtl8366sr.patch │ │ │ ├── 020-freebsd-compat.patch │ │ │ ├── 021-darwin_compat.patch │ │ │ ├── 022-getline_backport.patch │ │ │ ├── 023-musl-compat.patch │ │ │ ├── 030-no_examples.patch │ │ │ ├── 040-no_extern_inline.patch │ │ │ └── 041-no_weak_alias.patch │ │ └── src │ │ │ ├── board │ │ │ └── zyxel │ │ │ │ └── nbg460n │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── nbg460n.c │ │ │ │ └── u-boot.lds │ │ │ ├── cpu │ │ │ └── mips │ │ │ │ └── ar71xx_serial.c │ │ │ ├── drivers │ │ │ ├── net │ │ │ │ ├── ag71xx.c │ │ │ │ ├── ag71xx.h │ │ │ │ └── phy │ │ │ │ │ ├── rtl8366.h │ │ │ │ │ └── rtl8366_mii.c │ │ │ └── spi │ │ │ │ └── ar71xx_spi.c │ │ │ └── include │ │ │ ├── asm-mips │ │ │ ├── ar71xx.h │ │ │ └── ar71xx_gpio.h │ │ │ └── configs │ │ │ └── nbg460n.h │ ├── uboot-at91 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-Wformat-security.patch │ ├── uboot-envtools │ │ ├── Makefile │ │ ├── files │ │ │ ├── apm821xx │ │ │ ├── ar71xx │ │ │ ├── ath79 │ │ │ ├── cns3xxx │ │ │ ├── imx6 │ │ │ ├── ipq40xx │ │ │ ├── ipq806x │ │ │ ├── kirkwood │ │ │ ├── lantiq │ │ │ ├── layerscape │ │ │ ├── mpc85xx │ │ │ ├── mvebu │ │ │ ├── mxs │ │ │ ├── oxnas │ │ │ ├── pistachio │ │ │ ├── ramips │ │ │ └── uboot-envtools.sh │ │ └── patches │ │ │ └── 001-compile.patch │ ├── uboot-fritz4040 │ │ └── Makefile │ ├── uboot-imx6 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-imx6-apalis-Make-the-boot-process-more-generic.patch │ │ │ ├── 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 │ │ ├── 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 │ │ └── patches │ │ │ ├── 0001-modify-macro-QSPI_NOR_BOOTCOMMAND-of-ls1046ardb-for-.patch │ │ │ ├── 0002-modify-macro-QSPI_NOR_BOOTCOMMAND-of-ls1012afrwy-for.patch │ │ │ └── 0003-modify-macro-QSPI_NOR_BOOTCOMMAND-of-ls1012ardb-for-.patch │ ├── uboot-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-add_support_for_macronix_mx25u12835f.patch │ │ │ ├── 120-mvebu_armada-37xx.h_increase_max_gunzip_size.patch │ │ │ └── 210-link-libcrypto-static.patch │ ├── uboot-mxs │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-add-i2se-duckbill.patch │ │ │ └── 210-link-libcrypto-static.patch │ ├── uboot-omap │ │ ├── Makefile │ │ └── files │ │ │ └── boot.scr.txt │ ├── uboot-oxnas │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 010-capacity-is-unsigned.patch │ │ │ ├── 020-socfpgaimage_portability.patch │ │ │ ├── 150-spl-block.patch │ │ │ ├── 200-icplus-phy.patch │ │ │ ├── 300-oxnas-target.patch │ │ │ ├── 400-gcc-5-compiler.patch │ │ │ ├── 410-gcc-6-compiler.patch │ │ │ ├── 420-gcc-7-compiler.patch │ │ │ └── 800-fix-bootm-assertion.patch │ │ └── src │ │ │ ├── arch │ │ │ └── arm │ │ │ │ ├── cpu │ │ │ │ └── arm1136 │ │ │ │ │ └── nas782x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── pinmux.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ └── include │ │ │ │ └── asm │ │ │ │ └── arch-nas782x │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── hardware.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── spl.h │ │ │ │ ├── sysctl.h │ │ │ │ └── timer.h │ │ │ ├── board │ │ │ └── ox820 │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── ox820.c │ │ │ │ ├── spl_start.S │ │ │ │ └── u-boot-spl.lds │ │ │ ├── common │ │ │ ├── env_ext4.c │ │ │ └── spl │ │ │ │ └── spl_block.c │ │ │ ├── configs │ │ │ └── ox820_defconfig │ │ │ ├── drivers │ │ │ ├── block │ │ │ │ └── plxsata_ide.c │ │ │ └── usb │ │ │ │ └── host │ │ │ │ └── ehci-oxnas.c │ │ │ ├── include │ │ │ └── configs │ │ │ │ └── ox820.h │ │ │ └── tools │ │ │ └── mkox820crc.c │ ├── uboot-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 │ │ │ └── 250-Sinovoip-BPI-M2-Ultra-defconfig.patch │ │ ├── uEnv-a64.txt │ │ ├── uEnv-default.txt │ │ └── uEnv-pangolin.txt │ ├── uboot-tegra │ │ └── Makefile │ └── uboot-zynq │ │ ├── Makefile │ │ ├── files │ │ └── uEnv-default.txt │ │ └── patches │ │ ├── 110-zybo-z7-read-mac-address-from-SPI-flash-memory.patch │ │ └── 210-link-libcrypto-static.patch ├── devel │ ├── binutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Do-not-pass-host-compiler-sanitization-flags-on-to-l.patch │ │ │ └── 0002-When-building-target-binaries-ensure-that-the-warnin.patch │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gdb-pr14523-mips-signal-number.patch │ │ │ ├── 010-aarch64-headers.patch │ │ │ ├── 100-musl_fix.patch │ │ │ ├── 110-shared_libgcc.patch │ │ │ ├── 120-sigprocmask-invalid-call.patch │ │ │ └── 130-uclibc-fix.patch │ ├── perf │ │ └── Makefile │ ├── strace │ │ └── Makefile │ ├── trace-cmd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 110-mac80211_tracepoint.patch │ │ │ └── 120-limits.patch │ └── valgrind │ │ ├── Makefile │ │ ├── files │ │ └── default.supp │ │ └── patches │ │ ├── 100-fix_configure_check.patch │ │ └── 130-fix_arm_arch_detection.patch ├── firmware │ ├── amd64-microcode │ │ └── Makefile │ ├── ath10k-firmware │ │ └── Makefile │ ├── b43legacy-firmware │ │ └── Makefile │ ├── cypress-firmware │ │ └── Makefile │ ├── cypress-nvram │ │ └── Makefile │ ├── intel-microcode │ │ └── Makefile │ ├── ipq-wifi │ │ ├── Makefile │ │ ├── board-aruba_ap-303.qca4019 │ │ ├── board-avm_fritzrepeater-1200.qca4019 │ │ ├── board-ezviz_cs-w3-wd1200g-eup.qca4019 │ │ ├── board-linksys_ea8300.qca4019 │ │ ├── board-linksys_ea8300.qca9888 │ │ ├── board-qxwlan-e2600ac.bin │ │ └── board-qxwlan_e2600ac.bin │ ├── lantiq │ │ └── dsl-vrx200-firmware-xdsl │ │ │ └── Makefile │ ├── layerscape │ │ ├── fman-ucode │ │ │ └── Makefile │ │ ├── ls-dpl │ │ │ └── Makefile │ │ ├── ls-mc │ │ │ └── Makefile │ │ ├── ls-rcw │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 0001-Disable-byte-swapping.patch │ │ │ │ └── 0002-Convert-to-python3.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 │ │ ├── 010-regdb-fix-compatibility-with-python2.patch │ │ └── 500-world-regd-5GHz.patch ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-compat.patch │ │ │ ├── 200-initial-macaddr.patch │ │ │ └── 300-api_sync.patch │ ├── ath10k-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 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 │ │ │ ├── 170-mac80211-pass-the-vif-to-cancel_remain_on_channel.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 │ │ │ ├── 960-0010-ath10k-limit-htt-rx-ring-size.patch │ │ │ ├── 960-0011-ath10k-limit-pci-buffer-size.patch │ │ │ └── 976-ath10k-Check-if-station-exists-before-forwarding-tx-.patch │ ├── 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 │ │ │ │ └── 400-linux-415.patch │ │ ├── ltq-vdsl-fw │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── LzmaWrapper.c │ │ │ │ ├── LzmaWrapper.h │ │ │ │ ├── Makefile │ │ │ │ ├── vdsl_fw_install.sh │ │ │ │ └── w921v_fw_cutter.c │ │ ├── ltq-vdsl-mei │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 010-warnings.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ ├── 101_no-date-time.patch │ │ │ │ └── 110-reset-g_tx_link_rate-on-showtime-exit.patch │ │ ├── ltq-vdsl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ └── 110-semaphore-lock.patch │ │ └── ltq-vmmc │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ └── vmmc.init │ │ │ └── patches │ │ │ ├── 000-portability.patch │ │ │ ├── 020-not-leak-cflags.patch │ │ │ ├── 100-target.patch │ │ │ ├── 200-compat.patch │ │ │ ├── 400-falcon.patch │ │ │ └── 500-ar9_vr9.patch │ ├── leds-apu2 │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── leds-apu2.c │ ├── linux │ │ ├── Makefile │ │ ├── files │ │ │ ├── sysctl-br-netfilter.conf │ │ │ ├── sysctl-nf-conntrack.conf │ │ │ └── sysctl-tcp-bbr.conf │ │ └── modules │ │ │ ├── 001-depends.mk │ │ │ ├── block.mk │ │ │ ├── can.mk │ │ │ ├── crypto.mk │ │ │ ├── firewire.mk │ │ │ ├── fs.mk │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── iio.mk │ │ │ ├── input.mk │ │ │ ├── leds.mk │ │ │ ├── lib.mk │ │ │ ├── netdevices.mk │ │ │ ├── netfilter.mk │ │ │ ├── netsupport.mk │ │ │ ├── nls.mk │ │ │ ├── other.mk │ │ │ ├── pcmcia.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ ├── usb.mk │ │ │ ├── video.mk │ │ │ ├── virt.mk │ │ │ ├── w1.mk │ │ │ ├── wireless.mk │ │ │ └── wpan.mk │ ├── mac80211 │ │ ├── Makefile │ │ ├── ath.mk │ │ ├── broadcom.mk │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── mac80211.sh │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ └── mac80211.hotplug │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── patches │ │ │ ├── ath │ │ │ │ ├── 070-ath_common_config.patch │ │ │ │ ├── 080-ath10k_thermal_config.patch │ │ │ │ ├── 101-ath9k-use-iowrite32-over-__raw_writel.patch │ │ │ │ ├── 120-owl-loader-compat.patch │ │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ │ ├── 350-ath9k_hw-reset-AHB-WMAC-interface-on-AR91xx.patch │ │ │ │ ├── 351-ath9k_hw-issue-external-reset-for-QCA955x.patch │ │ │ │ ├── 354-ath9k-force-rx_clear-when-disabling-rx.patch │ │ │ │ ├── 356-Revert-ath9k-interpret-requested-txpower-in-EIRP-dom.patch │ │ │ │ ├── 365-ath9k-adjust-tx-power-reduction-for-US-regulatory-do.patch │ │ │ │ ├── 400-ath_move_debug_code.patch │ │ │ │ ├── 401-ath9k_blink_default.patch │ │ │ │ ├── 402-ath_regd_optional.patch │ │ │ │ ├── 403-world_regd_fixup.patch │ │ │ │ ├── 404-regd_no_assoc_hints.patch │ │ │ │ ├── 405-ath_regd_us.patch │ │ │ │ ├── 406-ath_relax_default_regd.patch │ │ │ │ ├── 410-ath9k_allow_adhoc_and_ap.patch │ │ │ │ ├── 411-ath5k_allow_adhoc_and_ap.patch │ │ │ │ ├── 420-ath5k_disable_fast_cc.patch │ │ │ │ ├── 430-add_ath5k_platform.patch │ │ │ │ ├── 431-add_platform_eeprom_support_to_ath5k.patch │ │ │ │ ├── 432-ath5k_add_pciids.patch │ │ │ │ ├── 440-ath5k_channel_bw_debugfs.patch │ │ │ │ ├── 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 │ │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ │ ├── 930-ath10k_add_tpt_led_trigger.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-Check-if-station-exists-before-forwarding-tx-.patch │ │ │ │ ├── 980-ath10k-fix-max-antenna-gain-unit.patch │ │ │ │ └── 981-ath10k-adjust-tx-power-reduction-for-US-regulatory-d.patch │ │ │ ├── brcm │ │ │ │ ├── 040-brcmutil_option.patch │ │ │ │ ├── 101-v5.5-0001-brcmfmac-don-t-WARN-when-there-are-no-requests.patch │ │ │ │ ├── 101-v5.5-0002-brcmfmac-fix-suspend-resume-when-power-is-cut-off.patch │ │ │ │ ├── 103-v5.5-brcmfmac-remove-set-but-not-used-variable-mpnum-nsp-.patch │ │ │ │ ├── 104-v5.5-brcmfmac-disable-PCIe-interrupts-before-bus-reset.patch │ │ │ │ ├── 105-v5.5-brcmfmac-remove-monitor-interface-when-detaching.patch │ │ │ │ ├── 110-v5.6-brcmfmac-Fix-memory-leak-in-brcmf_p2p_create_p2pdev.patch │ │ │ │ ├── 111-v5.6-brcmfmac-Fix-use-after-free-in-brcmf_sdio_readframes.patch │ │ │ │ ├── 112-v5.6-brcmfmac-set-interface-carrier-to-off-by-default.patch │ │ │ │ ├── 113-v5.6-brcmfmac-fix-interface-sanity-check.patch │ │ │ │ ├── 114-v5.6-0001-brcmfmac-reset-two-D11-cores-if-chip-has-two-D11-cor.patch │ │ │ │ ├── 114-v5.6-0002-brcmfmac-set-F2-blocksize-and-watermark-for-4359.patch │ │ │ │ ├── 114-v5.6-0003-brcmfmac-fix-rambase-for-4359-9.patch │ │ │ │ ├── 114-v5.6-0004-brcmfmac-make-errors-when-setting-roaming-parameters.patch │ │ │ │ ├── 114-v5.6-0005-brcmfmac-add-support-for-BCM4359-SDIO-chipset.patch │ │ │ │ ├── 114-v5.6-0006-brcmfmac-add-RSDB-condition-when-setting-interface-c.patch │ │ │ │ ├── 114-v5.6-0007-brcmfmac-not-set-mbss-in-vif-if-firmware-does-not-su.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 │ │ │ ├── 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 │ │ │ │ ├── 020-rt2800-remove-errornous-duplicate-condition.patch │ │ │ │ ├── 100-rt2x00_options.patch │ │ │ │ ├── 501-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ │ ├── 601-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ │ ├── 602-rt2x00-introduce-rt2x00eeprom.patch │ │ │ │ ├── 603-rt2x00-of_load_eeprom_filename.patch │ │ │ │ ├── 604-rt2x00-load-eeprom-on-SoC-from-a-mtd-device-defines-.patch │ │ │ │ ├── 606-rt2x00-allow_disabling_bands_through_platform_data.patch │ │ │ │ ├── 607-rt2x00-add_platform_data_mac_addr.patch │ │ │ │ ├── 608-rt2x00-allow_disabling_bands_through_dts.patch │ │ │ │ ├── 609-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch │ │ │ │ ├── 610-rt2x00-change-led-polarity-from-OF.patch │ │ │ │ ├── 611-rt2x00-add-AP+STA-support.patch │ │ │ │ ├── 612-rt2x00-led-tpt-trigger-support.patch │ │ │ │ ├── 650-rt2x00-add-support-for-external-PA-on-MT7620.patch │ │ │ │ ├── 982-rt2x00-add-rf-self-txdc-calibration.patch │ │ │ │ ├── 983-rt2x00-add-r-calibration.patch │ │ │ │ ├── 984-rt2x00-add-rxdcoc-calibration.patch │ │ │ │ ├── 985-rt2x00-add-rxiq-calibration.patch │ │ │ │ └── 986-rt2x00-add-TX-LOFT-calibration.patch │ │ │ └── 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-optimize-skb-resizing.patch │ │ │ │ ├── 301-mac80211-minstrel-remove-divisions-in-tx-status-path.patch │ │ │ │ ├── 302-mac80211-minstrel_ht-replace-rate-stats-ewma-with-a-.patch │ │ │ │ ├── 303-mac80211-minstrel_ht-rename-prob_ewma-to-prob_avg-us.patch │ │ │ │ ├── 304-mac80211-sta-randomize-BA-session-dialog-token-alloc.patch │ │ │ │ ├── 350-cfg80211-fix-memory-leak-in-nl80211_probe_mesh_link.patch │ │ │ │ ├── 351-cfg80211-fix-memory-leak-in-cfg80211_cqm_rssi_update.patch │ │ │ │ ├── 352-cfg80211-fix-page-refcount-issue-in-A-MSDU-decap.patch │ │ │ │ └── 500-mac80211_configure_antenna_gain.patch │ │ ├── ralink.mk │ │ ├── realtek.mk │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mt76 │ │ └── Makefile │ ├── mwlwifi │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-vendor_command_policy.patch │ ├── nat46 │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── rtl8812au-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-use-kernel-byteorder.patch │ │ │ └── 002-vendor_command_policy.patch │ ├── 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 │ │ │ └── 010-fix-arc.patch │ ├── libconfig │ │ └── Makefile │ ├── libcxx │ │ ├── Makefile │ │ ├── files │ │ │ └── g++-libcxx │ │ └── patches │ │ │ ├── 010-cxx17.patch │ │ │ └── 020-fixes.patch │ ├── libevent2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Add-missing-file-Uninstall.cmake.in.patch │ │ │ └── 0002-Add-Uninstall.cmake.in-into-dist-archive.patch │ ├── libiconv-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-strip_charsets.patch │ │ │ ├── 101-autotools.patch │ │ │ ├── 103-configure_ac_fix.patch │ │ │ ├── 200-work-with-libtool2.patch │ │ │ └── 300-fortify-source-compat.patch │ ├── libiconv │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── iconv.c │ │ │ ├── include │ │ │ ├── charmaps.h │ │ │ ├── charmaps │ │ │ │ ├── iso-8859-10.h │ │ │ │ ├── iso-8859-13.h │ │ │ │ ├── iso-8859-14.h │ │ │ │ ├── iso-8859-16.h │ │ │ │ ├── iso-8859-2.h │ │ │ │ ├── iso-8859-3.h │ │ │ │ ├── iso-8859-4.h │ │ │ │ ├── iso-8859-5.h │ │ │ │ ├── iso-8859-6.h │ │ │ │ ├── iso-8859-7.h │ │ │ │ ├── iso-8859-8.h │ │ │ │ ├── iso-8859-9.h │ │ │ │ ├── koi8-r.h │ │ │ │ ├── windows-1250.h │ │ │ │ ├── windows-1251.h │ │ │ │ ├── windows-1252.h │ │ │ │ ├── windows-1253.h │ │ │ │ ├── windows-1254.h │ │ │ │ ├── windows-1255.h │ │ │ │ ├── windows-1256.h │ │ │ │ ├── windows-1257.h │ │ │ │ ├── windows-1258.h │ │ │ │ └── windows-874.h │ │ │ └── iconv.h │ │ │ └── m4 │ │ │ └── iconv.m4 │ ├── libjson-c │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-libm.patch │ ├── libmnl │ │ └── Makefile │ ├── libnetfilter-conntrack │ │ └── Makefile │ ├── libnetfilter-cthelper │ │ └── Makefile │ ├── libnetfilter-cttimeout │ │ └── Makefile │ ├── libnetfilter-log │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-build-remove-unnecessary-pkgconfig-config.status-dep.patch │ │ │ ├── 0002-build-remove-unused-lines-in-Makefile.am.patch │ │ │ ├── 0003-build-resolve-automake-1.12-warnings.patch │ │ │ ├── 0004-Add-include-needed-for-integer-type-definition.patch │ │ │ ├── 0005-configure-uclinux-is-also-linux.patch │ │ │ └── 0006-configure-add-without-ipulog-option-to-disable-libip.patch │ ├── libnetfilter-queue │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-checksum_computation.patch │ ├── libnfnetlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-missing_include.patch │ ├── libnftnl │ │ └── Makefile │ ├── libnl-tiny │ │ └── Makefile │ ├── libnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-build-add-Libs.private-field-in-libnl-pkg-config-file.patch │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 102-skip-manpages.patch │ │ │ ├── 103-makefile_flex_workaround.patch │ │ │ ├── 201-space_optimization.patch │ │ │ ├── 203-undef_iw_mode_monitor.patch │ │ │ └── 204-usb-bus-path.patch │ ├── libroxml │ │ └── Makefile │ ├── libtool │ │ └── Makefile │ ├── libubox │ │ └── Makefile │ ├── libunwind │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-fix-building-getcontext_S.patch │ │ │ ├── 003-fix-missing-ef_reg-defs-with-musl.patch │ │ │ └── 004-ppc-musl.patch │ ├── libusb-compat │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-musl-stdint.patch │ ├── libusb │ │ └── Makefile │ ├── lzo │ │ └── Makefile │ ├── mbedtls │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-config.patch │ ├── ncurses │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-ncurses-5.6-20080112-urxvt.patch │ │ │ ├── 101-ncurses-5.6-20080628-kbs.patch │ │ │ ├── 102-ncurses-5.9-gcc-5.patch │ │ │ ├── 103-ncurses-ar-determinism.patch │ │ │ ├── 200-fix_missing_include.patch │ │ │ └── 900-terminfo.patch │ ├── nettle │ │ ├── Config.in │ │ └── Makefile │ ├── nghttp2 │ │ └── Makefile │ ├── openssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-Configure-afalg-support.patch │ │ │ ├── 110-openwrt_targets.patch │ │ │ ├── 120-strip-cflags-from-binary.patch │ │ │ ├── 130-dont-build-tests-fuzz.patch │ │ │ ├── 140-allow-prefer-chacha20.patch │ │ │ ├── 150-openssl.cnf-add-engines-conf.patch │ │ │ ├── 400-eng_devcrypto-save-ioctl-if-EVP_MD_.FLAG_ONESHOT.patch │ │ │ ├── 410-eng_devcrypto-add-configuration-options.patch │ │ │ ├── 420-eng_devcrypto-add-command-to-dump-driver-info.patch │ │ │ ├── 430-e_devcrypto-make-the-dev-crypto-engine-dynamic.patch │ │ │ ├── 500-e_devcrypto-default-to-not-use-digests-in-engine.patch │ │ │ └── 510-e_devcrypto-ignore-error-when-closing-session.patch │ ├── popt │ │ └── Makefile │ ├── readline │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-curses-link.patch │ ├── sysfsutils │ │ ├── Makefile │ │ ├── files │ │ │ ├── local.conf │ │ │ ├── sysfs.conf │ │ │ └── sysfsutils │ │ └── patches │ │ │ └── 200-mnt_path_check.patch │ ├── toolchain │ │ ├── Makefile │ │ └── glibc-files │ │ │ └── etc │ │ │ └── nsswitch.conf │ ├── uclibc++ │ │ ├── Makefile │ │ ├── files │ │ │ └── config.default │ │ └── patches │ │ │ ├── 001-no-ansi.patch │ │ │ ├── 002-undef-functions.patch │ │ │ ├── 003-no-fPIC.patch │ │ │ ├── 004-uClibc-Make-long-long-available-to-C-11.patch │ │ │ └── 005-istream_helpers-Fix-sscanf-typo.patch │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ ├── wolfssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-disable-hardening-check.patch │ └── zlib │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ ├── 001-neon-implementation-of-adler32.patch │ │ ├── 002-arm-specific-optimisations-for-inflate.patch │ │ ├── 003-attach-sourcefiles-in-patch-002-to-buildsystem.patch │ │ └── 004-relative-pkg-config-paths.patch ├── network │ ├── config │ │ ├── firewall │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── firewall.config │ │ │ │ ├── firewall.hotplug │ │ │ │ ├── firewall.init │ │ │ │ └── firewall.user │ │ ├── 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 │ │ │ │ └── uci-defaults │ │ │ │ │ └── 14_migrate-dhcp-release │ │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── dhcp.script │ │ │ │ │ └── proto │ │ │ │ │ │ └── dhcp.sh │ │ │ │ └── network │ │ │ │ │ └── config.sh │ │ │ │ ├── sbin │ │ │ │ ├── devstatus │ │ │ │ ├── ifdown │ │ │ │ ├── ifstatus │ │ │ │ └── ifup │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── udhcpc │ │ │ │ └── default.script │ │ ├── qos-scripts │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── qos │ │ │ │ ├── hotplug.d │ │ │ │ │ └── iface │ │ │ │ │ │ └── 10-qos │ │ │ │ └── init.d │ │ │ │ │ └── qos │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ ├── qos-start │ │ │ │ ├── qos-stat │ │ │ │ └── qos-stop │ │ │ │ └── lib │ │ │ │ └── qos │ │ │ │ ├── generate.sh │ │ │ │ └── tcrules.awk │ │ ├── soloscli │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── atm │ │ │ │ │ │ │ └── 15-solos-init │ │ │ │ │ └── uci-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 │ │ └── xfrm │ │ │ ├── Makefile │ │ │ └── files │ │ │ └── xfrm.sh │ ├── ipv6 │ │ ├── 464xlat │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── 464xlat.sh │ │ │ └── src │ │ │ │ ├── 464xlatcfg.c │ │ │ │ └── Makefile │ │ ├── 6in4 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── 6in4.sh │ │ ├── 6rd │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── 6rd.sh │ │ │ └── src │ │ │ │ ├── 6rdcalc.c │ │ │ │ └── Makefile │ │ ├── 6to4 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── 6to4.sh │ │ ├── ds-lite │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── dslite.sh │ │ ├── map │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── map.sh │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mapcalc.c │ │ ├── odhcp6c │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── dhcpv6.script │ │ │ │ └── dhcpv6.sh │ │ └── thc-ipv6 │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 000-cflags_override.patch │ │ │ └── 100-no-ssl.patch │ ├── services │ │ ├── dnsmasq │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── 50-dnsmasq-migrate-resolv-conf-auto.sh │ │ │ │ ├── dhcp-script.sh │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dhcpbogushostname.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.init │ │ │ │ ├── dnsmasq_acl.json │ │ │ │ ├── dnsmasqsec.hotplug │ │ │ │ └── rfc6761.conf │ │ │ └── patches │ │ │ │ ├── 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 │ │ │ │ ├── 0040-Fix-crash-when-negative-SRV-response-over-TCP-gets-s.patch │ │ │ │ ├── 050-crypto-use-nettle-ecc_curve-access-functions.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 │ │ │ │ ├── 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.hotplug │ │ │ │ ├── hostapd.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── wpa_supplicant-basic.config │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ └── wps-hotplug.sh │ │ │ ├── patches │ │ │ │ ├── 004-mesh-use-setup-completion-callback-to-complete-mesh-.patch │ │ │ │ ├── 005-mesh-update-ssid-frequency-as-pri-sec-channel-switch.patch │ │ │ │ ├── 006-mesh-inform-kernel-driver-DFS-handler-in-userspace.patch │ │ │ │ ├── 007-mesh-apply-channel-attributes-before-running-Mesh.patch │ │ │ │ ├── 011-mesh-Allow-DFS-channels-to-be-selected-if-dfs-is-ena.patch │ │ │ │ ├── 013-mesh-do-not-allow-pri-sec-channel-switch.patch │ │ │ │ ├── 015-mesh-do-not-use-offchan-mgmt-tx-on-DFS.patch │ │ │ │ ├── 016-mesh-fix-channel-switch-error-during-CAC.patch │ │ │ │ ├── 018-mesh-make-forwarding-configurable.patch │ │ │ │ ├── 051-wpa_supplicant-fix-race-condition-in-mesh-mpm-new-pe.patch │ │ │ │ ├── 067-0001-AP-Silently-ignore-management-frame-from-unexpected-.patch │ │ │ │ ├── 100-daemonize_fix.patch │ │ │ │ ├── 200-multicall.patch │ │ │ │ ├── 300-noscan.patch │ │ │ │ ├── 301-mesh-noscan.patch │ │ │ │ ├── 310-rescan_immediately.patch │ │ │ │ ├── 320-optional_rfkill.patch │ │ │ │ ├── 330-nl80211_fix_set_freq.patch │ │ │ │ ├── 340-reload_freq_change.patch │ │ │ │ ├── 341-mesh-ctrl-iface-channel-switch.patch │ │ │ │ ├── 350-nl80211_del_beacon_bss.patch │ │ │ │ ├── 360-ctrl_iface_reload.patch │ │ │ │ ├── 370-ap_sta_support.patch │ │ │ │ ├── 380-disable_ctrl_iface_mib.patch │ │ │ │ ├── 381-hostapd_cli_UNKNOWN-COMMAND.patch │ │ │ │ ├── 390-wpa_ie_cap_workaround.patch │ │ │ │ ├── 400-wps_single_auth_enc_type.patch │ │ │ │ ├── 410-limit_debug_messages.patch │ │ │ │ ├── 420-indicate-features.patch │ │ │ │ ├── 430-hostapd_cli_ifdef.patch │ │ │ │ ├── 431-wpa_cli_ifdef.patch │ │ │ │ ├── 432-missing-typedef.patch │ │ │ │ ├── 450-scan_wait.patch │ │ │ │ ├── 460-wpa_supplicant-add-new-config-params-to-be-used-with.patch │ │ │ │ ├── 461-driver_nl80211-use-new-parameters-during-ibss-join.patch │ │ │ │ ├── 463-add-mcast_rate-to-11s.patch │ │ │ │ ├── 464-fix-mesh-obss-check.patch │ │ │ │ ├── 470-survey_data_fallback.patch │ │ │ │ ├── 500-lto-jobserver-support.patch │ │ │ │ ├── 599-wpa_supplicant-fix-warnings.patch │ │ │ │ ├── 600-ubus_support.patch │ │ │ │ └── 700-wifi-reload.patch │ │ │ └── src │ │ │ │ ├── src │ │ │ │ ├── ap │ │ │ │ │ ├── ubus.c │ │ │ │ │ └── ubus.h │ │ │ │ └── utils │ │ │ │ │ └── build_features.h │ │ │ │ └── wpa_supplicant │ │ │ │ ├── ubus.c │ │ │ │ └── ubus.h │ │ ├── igmpproxy │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── igmpproxy.config │ │ │ │ └── igmpproxy.init │ │ ├── ipset-dns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── ipset-dns.config │ │ │ │ └── ipset-dns.init │ │ ├── lldpd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── lldpd.config │ │ │ │ └── lldpd.init │ │ │ └── patches │ │ │ │ ├── 001-disable_libcap.patch │ │ │ │ └── 010-limits.patch │ │ ├── odhcpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.init │ │ ├── omcproxy │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── omcproxy.config │ │ │ │ └── omcproxy.init │ │ ├── openvpn-easy-rsa │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── openvpn-easy-rsa.upgrade │ │ │ └── patches │ │ │ │ └── 101-static_EASYRSA.patch │ │ ├── openvpn │ │ │ ├── Config-mbedtls.in │ │ │ ├── Config-nossl.in │ │ │ ├── Config-openssl.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── openvpn.config │ │ │ │ ├── openvpn.init │ │ │ │ ├── openvpn.options │ │ │ │ └── openvpn.upgrade │ │ │ └── patches │ │ │ │ ├── 001-reproducible-remove_DATE.patch │ │ │ │ ├── 100-mbedtls-disable-runtime-version-check.patch │ │ │ │ ├── 110-openssl-dont-use-deprecated-ssleay-symbols.patch │ │ │ │ ├── 111-openssl-add-missing-include-statements.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ └── utils │ │ ├── adb-enablemodem │ │ ├── Makefile │ │ └── files │ │ │ └── adb-enablemodem │ │ ├── arptables │ │ └── Makefile │ │ ├── comgt │ │ ├── Makefile │ │ ├── files │ │ │ ├── 3g.chat │ │ │ ├── 3g.sh │ │ │ ├── 3g.usb │ │ │ ├── directip-stop.gcom │ │ │ ├── directip.gcom │ │ │ ├── directip.sh │ │ │ ├── evdo.chat │ │ │ ├── getcardinfo.gcom │ │ │ ├── getcarrier.gcom │ │ │ ├── getcnum.gcom │ │ │ ├── getimsi.gcom │ │ │ ├── getstrength.gcom │ │ │ ├── ncm.json │ │ │ ├── ncm.sh │ │ │ ├── runcommand.gcom │ │ │ ├── setmode.gcom │ │ │ └── setpin.gcom │ │ └── patches │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 002-termios.patch │ │ │ ├── 003-no_XCASE.patch │ │ │ └── 004-check_tty.patch │ │ ├── curl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-no_docs_tests.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-fix-RTLD_NEXT.patch │ │ ├── ebtables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-musl_fix.patch │ │ │ └── 200-fix-extension-init.patch │ │ ├── ethtool │ │ └── Makefile │ │ ├── iftop │ │ └── Makefile │ │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0003-fix-non-ipv6-builds.patch │ │ │ └── 010-libcxx.patch │ │ ├── iperf3 │ │ └── Makefile │ │ ├── iproute2 │ │ ├── Makefile │ │ ├── files │ │ │ └── 15-teql │ │ └── patches │ │ │ ├── 100-configure.patch │ │ │ ├── 110-darwin_fixes.patch │ │ │ ├── 115-add-config-xtlibdir.patch │ │ │ ├── 120-no_arpd.patch │ │ │ ├── 130-no_netem.patch │ │ │ ├── 140-allow_pfifo_fast.patch │ │ │ ├── 140-keep_libmnl_optional.patch │ │ │ ├── 145-keep_libelf_optional.patch │ │ │ ├── 150-keep_libcap_optional.patch │ │ │ ├── 160-libnetlink-pic.patch │ │ │ ├── 170-ip_tiny.patch │ │ │ ├── 175-reduce-dynamic-syms.patch │ │ │ ├── 180-drop_FAILED_POLICY.patch │ │ │ └── 200-drop_libbsd_dependency.patch │ │ ├── ipset │ │ └── Makefile │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 010-add-savedscp-support.patch │ │ │ ├── 101-remove-check-already.patch │ │ │ ├── 102-iptables-disable-modprobe.patch │ │ │ ├── 103-optional-xml.patch │ │ │ ├── 200-configurable_builtin.patch │ │ │ ├── 600-shared-libext.patch │ │ │ ├── 700-disable-legacy-revisions.patch │ │ │ └── 800-flowoffload_target.patch │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 120-antenna_gain.patch │ │ │ ├── 130-survey-bss-rx-time.patch │ │ │ └── 200-reduce_size.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ └── Makefile │ │ ├── layerscape │ │ └── restool │ │ │ ├── Makefile │ │ │ └── patches │ │ │ └── 0001-restool-fix-get_device_file-function.patch │ │ ├── linux-atm │ │ ├── Makefile │ │ ├── files │ │ │ ├── atm.hotplug │ │ │ ├── br2684-up │ │ │ ├── br2684ctl │ │ │ └── br2684ctl_wrap │ │ └── patches │ │ │ ├── 000-debian_16.patch │ │ │ ├── 200-no_libfl.patch │ │ │ ├── 300-objcopy_path.patch │ │ │ ├── 400-portability_fixes.patch │ │ │ ├── 500-br2684ctl_script.patch │ │ │ ├── 501-br2684ctl_itfname.patch │ │ │ ├── 510-remove-LINUX_NETDEVICE-hack.patch │ │ │ ├── 600-fix-format-errors.patch │ │ │ └── 700-musl-include.patch │ │ ├── maccalc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── nftables │ │ └── Makefile │ │ ├── owipcalc │ │ ├── Makefile │ │ └── src │ │ │ └── owipcalc.c │ │ ├── resolveip │ │ ├── Makefile │ │ └── src │ │ │ └── resolveip.c │ │ ├── rssileds │ │ ├── Makefile │ │ ├── files │ │ │ └── rssileds.init │ │ └── src │ │ │ └── rssileds.c │ │ ├── tcpdump │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove_pcap_debug.patch │ │ │ ├── 002-remove_static_libpcap_check.patch │ │ │ └── 100-tcpdump_mini.patch │ │ ├── umbim │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── mbim.sh │ │ ├── uqmi │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── qmi.sh │ │ ├── wireguard-tools │ │ ├── Makefile │ │ └── files │ │ │ ├── wireguard.sh │ │ │ └── wireguard_watchdog │ │ ├── wireless-tools │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-debian.patch │ │ │ ├── 002-fix-iwconfig-power-argument-parsing.patch │ │ │ ├── 003-we_essential_def.patch │ │ │ └── 004-increase_iwlist_buffer.patch │ │ ├── wpan-tools │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-src-nl_extras.h-fix-compatibility-with-libnl-3.3.0.patch │ │ └── wwan │ │ ├── Makefile │ │ └── files │ │ ├── data │ │ ├── 0421-03a7 │ │ ├── 0421-060d │ │ ├── 0421-060e │ │ ├── 0421-0612 │ │ ├── 0421-0619 │ │ ├── 0421-061e │ │ ├── 0421-0623 │ │ ├── 0421-0629 │ │ ├── 0421-062d │ │ ├── 0421-062f │ │ ├── 0421-0638 │ │ ├── 05c6-0016 │ │ ├── 05c6-0023 │ │ ├── 05c6-00a0 │ │ ├── 05c6-6000 │ │ ├── 05c6-9000 │ │ ├── 07d1-3e01 │ │ ├── 07d1-3e02 │ │ ├── 07d1-7e11 │ │ ├── 0af0-4005 │ │ ├── 0af0-6901 │ │ ├── 0af0-7201 │ │ ├── 0af0-8120 │ │ ├── 0af0-9200 │ │ ├── 0b3c-c000 │ │ ├── 0b3c-c001 │ │ ├── 0b3c-c002 │ │ ├── 0b3c-c003 │ │ ├── 0b3c-c004 │ │ ├── 0b3c-c005 │ │ ├── 0b3c-c00a │ │ ├── 0b3c-c00b │ │ ├── 0bdb-1900 │ │ ├── 0bdb-1902 │ │ ├── 0bdb-190a │ │ ├── 0bdb-190d │ │ ├── 0bdb-1910 │ │ ├── 0c88-17da │ │ ├── 0c88-180a │ │ ├── 0f3d-68a2 │ │ ├── 0f3d-68aa │ │ ├── 1004-6124 │ │ ├── 1004-6141 │ │ ├── 1004-6157 │ │ ├── 1004-618f │ │ ├── 106c-3711 │ │ ├── 106c-3714 │ │ ├── 106c-3715 │ │ ├── 106c-3716 │ │ ├── 106c-3717 │ │ ├── 106c-3718 │ │ ├── 106c-3721 │ │ ├── 1199-0017 │ │ ├── 1199-0018 │ │ ├── 1199-0019 │ │ ├── 1199-0020 │ │ ├── 1199-0021 │ │ ├── 1199-0022 │ │ ├── 1199-0023 │ │ ├── 1199-0024 │ │ ├── 1199-0025 │ │ ├── 1199-0026 │ │ ├── 1199-0027 │ │ ├── 1199-0028 │ │ ├── 1199-0112 │ │ ├── 1199-0120 │ │ ├── 1199-0218 │ │ ├── 1199-0220 │ │ ├── 1199-0224 │ │ ├── 1199-0301 │ │ ├── 1199-6802 │ │ ├── 1199-6803 │ │ ├── 1199-6804 │ │ ├── 1199-6805 │ │ ├── 1199-6808 │ │ ├── 1199-6809 │ │ ├── 1199-6813 │ │ ├── 1199-6815 │ │ ├── 1199-6816 │ │ ├── 1199-6820 │ │ ├── 1199-6821 │ │ ├── 1199-6822 │ │ ├── 1199-6833 │ │ ├── 1199-6834 │ │ ├── 1199-6835 │ │ ├── 1199-6838 │ │ ├── 1199-6839 │ │ ├── 1199-683a │ │ ├── 1199-683b │ │ ├── 1199-6850 │ │ ├── 1199-6851 │ │ ├── 1199-6852 │ │ ├── 1199-6853 │ │ ├── 1199-6855 │ │ ├── 1199-6856 │ │ ├── 1199-6859 │ │ ├── 1199-685a │ │ ├── 1199-6880 │ │ ├── 1199-6890 │ │ ├── 1199-6891 │ │ ├── 1199-6892 │ │ ├── 1199-6893 │ │ ├── 1199-68a2 │ │ ├── 1199-68aa │ │ ├── 1199-68c0 │ │ ├── 12d1-1035 │ │ ├── 12d1-1404 │ │ ├── 12d1-1406 │ │ ├── 12d1-140b │ │ ├── 12d1-140c │ │ ├── 12d1-1412 │ │ ├── 12d1-141b │ │ ├── 12d1-1433 │ │ ├── 12d1-1436 │ │ ├── 12d1-1444 │ │ ├── 12d1-144e │ │ ├── 12d1-1464 │ │ ├── 12d1-1465 │ │ ├── 12d1-1491 │ │ ├── 12d1-14a5 │ │ ├── 12d1-14a8 │ │ ├── 12d1-14ac │ │ ├── 12d1-14ae │ │ ├── 12d1-14c6 │ │ ├── 12d1-14c8 │ │ ├── 12d1-14c9 │ │ ├── 12d1-14ca │ │ ├── 12d1-14cb │ │ ├── 12d1-14cc │ │ ├── 12d1-14cf │ │ ├── 12d1-14d2 │ │ ├── 12d1-1506 │ │ ├── 12d1-150a │ │ ├── 12d1-150c │ │ ├── 12d1-150f │ │ ├── 12d1-151b │ │ ├── 12d1-151d │ │ ├── 12d1-156c │ │ ├── 12d1-1576 │ │ ├── 12d1-1577 │ │ ├── 12d1-1578 │ │ ├── 12d1-1589 │ │ ├── 12d1-1c05 │ │ ├── 12d1-1c07 │ │ ├── 12d1-1c08 │ │ ├── 12d1-1c10 │ │ ├── 12d1-1c12 │ │ ├── 12d1-1c1e │ │ ├── 12d1-1c1f │ │ ├── 12d1-1c23 │ │ ├── 12d1-1f16 │ │ ├── 1410-1400 │ │ ├── 1410-1410 │ │ ├── 1410-1420 │ │ ├── 1410-1430 │ │ ├── 1410-1450 │ │ ├── 1410-2100 │ │ ├── 1410-2110 │ │ ├── 1410-2120 │ │ ├── 1410-2130 │ │ ├── 1410-2400 │ │ ├── 1410-2410 │ │ ├── 1410-2420 │ │ ├── 1410-4100 │ │ ├── 1410-4400 │ │ ├── 1410-6000 │ │ ├── 1410-6001 │ │ ├── 1410-6002 │ │ ├── 1410-6010 │ │ ├── 1410-7001 │ │ ├── 1410-7003 │ │ ├── 1410-7030 │ │ ├── 1410-7031 │ │ ├── 1410-7041 │ │ ├── 1410-7042 │ │ ├── 1410-9011 │ │ ├── 1410-b001 │ │ ├── 1529-3100 │ │ ├── 16d5-6202 │ │ ├── 16d5-6501 │ │ ├── 16d5-6502 │ │ ├── 16d5-6603 │ │ ├── 16d5-900d │ │ ├── 16d8-5141 │ │ ├── 16d8-5533 │ │ ├── 16d8-5543 │ │ ├── 16d8-5553 │ │ ├── 16d8-6002 │ │ ├── 16d8-6006 │ │ ├── 16d8-6007 │ │ ├── 16d8-6008 │ │ ├── 16d8-6522 │ │ ├── 16d8-6523 │ │ ├── 16d8-6532 │ │ ├── 16d8-6533 │ │ ├── 16d8-6543 │ │ ├── 16d8-680a │ │ ├── 19d2-0001 │ │ ├── 19d2-0002 │ │ ├── 19d2-0015 │ │ ├── 19d2-0016 │ │ ├── 19d2-0017 │ │ ├── 19d2-0018 │ │ ├── 19d2-0019 │ │ ├── 19d2-0022 │ │ ├── 19d2-0024 │ │ ├── 19d2-0025 │ │ ├── 19d2-0031 │ │ ├── 19d2-0033 │ │ ├── 19d2-0037 │ │ ├── 19d2-0039 │ │ ├── 19d2-0042 │ │ ├── 19d2-0052 │ │ ├── 19d2-0055 │ │ ├── 19d2-0057 │ │ ├── 19d2-0063 │ │ ├── 19d2-0064 │ │ ├── 19d2-0066 │ │ ├── 19d2-0073 │ │ ├── 19d2-0079 │ │ ├── 19d2-0082 │ │ ├── 19d2-0086 │ │ ├── 19d2-0091 │ │ ├── 19d2-0094 │ │ ├── 19d2-0104 │ │ ├── 19d2-0108 │ │ ├── 19d2-0116 │ │ ├── 19d2-0117 │ │ ├── 19d2-0121 │ │ ├── 19d2-0124 │ │ ├── 19d2-0128 │ │ ├── 19d2-0142 │ │ ├── 19d2-0143 │ │ ├── 19d2-0152 │ │ ├── 19d2-0157 │ │ ├── 19d2-0167 │ │ ├── 19d2-0170 │ │ ├── 19d2-0199 │ │ ├── 19d2-0257 │ │ ├── 19d2-0265 │ │ ├── 19d2-0284 │ │ ├── 19d2-0326 │ │ ├── 19d2-1003 │ │ ├── 19d2-1008 │ │ ├── 19d2-1010 │ │ ├── 19d2-1015 │ │ ├── 19d2-1018 │ │ ├── 19d2-1172 │ │ ├── 19d2-1173 │ │ ├── 19d2-1176 │ │ ├── 19d2-1177 │ │ ├── 19d2-1181 │ │ ├── 19d2-1203 │ │ ├── 19d2-1208 │ │ ├── 19d2-1211 │ │ ├── 19d2-1212 │ │ ├── 19d2-1217 │ │ ├── 19d2-1218 │ │ ├── 19d2-1220 │ │ ├── 19d2-1222 │ │ ├── 19d2-1245 │ │ ├── 19d2-1252 │ │ ├── 19d2-1254 │ │ ├── 19d2-1256 │ │ ├── 19d2-1270 │ │ ├── 19d2-1401 │ │ ├── 19d2-1402 │ │ ├── 19d2-1426 │ │ ├── 19d2-1512 │ │ ├── 19d2-1515 │ │ ├── 19d2-1518 │ │ ├── 19d2-1519 │ │ ├── 19d2-1522 │ │ ├── 19d2-1525 │ │ ├── 19d2-1527 │ │ ├── 19d2-1537 │ │ ├── 19d2-1538 │ │ ├── 19d2-1544 │ │ ├── 19d2-2002 │ │ ├── 19d2-2003 │ │ ├── 19d2-ffdd │ │ ├── 19d2-ffe4 │ │ ├── 19d2-ffe9 │ │ ├── 19d2-fff1 │ │ ├── 19d2-fffb │ │ ├── 19d2-fffc │ │ ├── 19d2-fffd │ │ ├── 19d2-fffe │ │ ├── 19d2-ffff │ │ ├── 1a8d-1002 │ │ ├── 1a8d-1003 │ │ ├── 1a8d-1007 │ │ ├── 1a8d-1009 │ │ ├── 1a8d-100c │ │ ├── 1a8d-100d │ │ ├── 1a8d-2006 │ │ ├── 1bbb-0000 │ │ ├── 1bbb-0012 │ │ ├── 1bbb-0017 │ │ ├── 1bbb-0052 │ │ ├── 1bbb-00b7 │ │ ├── 1bbb-00ca │ │ ├── 1bbb-011e │ │ ├── 1bbb-0203 │ │ ├── 1c9e-6060 │ │ ├── 1c9e-6061 │ │ ├── 1c9e-9000 │ │ ├── 1c9e-9603 │ │ ├── 1c9e-9605 │ │ ├── 1c9e-9607 │ │ ├── 1c9e-9801 │ │ ├── 1c9e-9900 │ │ ├── 1e0e-9000 │ │ ├── 1e0e-9100 │ │ ├── 1e0e-9200 │ │ ├── 1e0e-ce16 │ │ ├── 1e0e-cefe │ │ ├── 1e2d-0053 │ │ ├── 1e2d-005b │ │ ├── 2001-7d00 │ │ ├── 2001-7d01 │ │ ├── 2001-7d02 │ │ ├── 2001-7d03 │ │ ├── 211f-6801 │ │ ├── 2357-0201 │ │ ├── 2357-0202 │ │ ├── 2357-0203 │ │ ├── 2357-9000 │ │ ├── 2c7c-0125 │ │ ├── 413c-8114 │ │ ├── 413c-8115 │ │ ├── 413c-8116 │ │ ├── 413c-8117 │ │ ├── 413c-8118 │ │ ├── 413c-8128 │ │ ├── 413c-8129 │ │ ├── 413c-8133 │ │ ├── 413c-8134 │ │ ├── 413c-8135 │ │ ├── 413c-8136 │ │ ├── 413c-8137 │ │ ├── 413c-8138 │ │ ├── 413c-8147 │ │ ├── 413c-8180 │ │ ├── 413c-8181 │ │ ├── 413c-8182 │ │ ├── 413c-8186 │ │ ├── 413c-8194 │ │ ├── 413c-8195 │ │ ├── 413c-8196 │ │ └── 413c-819b │ │ ├── wwan.sh │ │ ├── wwan.usb │ │ └── wwan.usbmisc ├── system │ ├── ca-certificates │ │ └── Makefile │ ├── fstools │ │ ├── Makefile │ │ └── files │ │ │ ├── blockd.init │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── media-change.hotplug │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ ├── fwtool │ │ └── Makefile │ ├── iucode-tool │ │ └── Makefile │ ├── mtd │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── fis.c │ │ │ ├── fis.h │ │ │ ├── imagetag.c │ │ │ ├── jffs2.c │ │ │ ├── jffs2.h │ │ │ ├── linksys_bootcount.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── mtd.c │ │ │ ├── mtd.h │ │ │ ├── seama.c │ │ │ ├── seama.h │ │ │ ├── tpl_ramips_recoveryflag.c │ │ │ ├── trx.c │ │ │ ├── wrg.c │ │ │ ├── wrgg.c │ │ │ └── wrgg.h │ ├── openwrt-keyring │ │ └── Makefile │ ├── opkg │ │ ├── Makefile │ │ └── files │ │ │ ├── 20_migrate-feeds │ │ │ ├── customfeeds.conf │ │ │ ├── opkg-key │ │ │ ├── opkg-smime.conf │ │ │ └── opkg.conf │ ├── procd │ │ ├── Makefile │ │ └── files │ │ │ ├── hotplug-preinit.json │ │ │ ├── hotplug.json │ │ │ ├── procd.sh │ │ │ └── reload_config │ ├── rpcd │ │ ├── Makefile │ │ └── files │ │ │ ├── rpcd.config │ │ │ └── rpcd.init │ ├── ubox │ │ ├── Makefile │ │ └── files │ │ │ └── log.init │ ├── ubus │ │ └── Makefile │ ├── ucert │ │ └── Makefile │ ├── uci │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── config │ │ │ └── uci.sh │ ├── urandom-seed │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── init.d │ │ │ │ └── urandom_seed │ │ │ ├── lib │ │ │ └── preinit │ │ │ │ └── 81_urandom_seed │ │ │ └── sbin │ │ │ └── urandom_seed │ ├── urngd │ │ ├── Makefile │ │ └── files │ │ │ └── urngd.init │ ├── usign │ │ └── Makefile │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── adb │ ├── Makefile │ └── patches │ │ ├── 001-create_Makefile.patch │ │ ├── 003-fix-musl-build.patch │ │ ├── 010-openssl-1.1.patch │ │ └── 020-cherry-picked-superspeed-fix.patch │ ├── brcm2708-userland │ ├── Makefile │ └── patches │ │ └── 001-interface-vcms_host-cmake-fixes.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 │ │ ├── 020-no-utime.patch │ │ └── 021-fix-LDFLAGS.patch │ ├── ct-bugcheck │ ├── Makefile │ └── src │ │ ├── bugcheck.initd │ │ ├── bugcheck.sh │ │ └── bugchecker.sh │ ├── e2fsprogs │ ├── Makefile │ ├── files │ │ ├── e2fsck.conf │ │ └── e2fsck.sh │ └── patches │ │ ├── 000-relocatable.patch │ │ ├── 001-com_err_version.patch │ │ └── 002-fix-subst-host-build.patch │ ├── f2fs-tools │ ├── Makefile │ └── 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 │ │ ├── 001-include-version-number.patch │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ ├── 013-lnum-strtoul-parsing-fixes.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 030-archindependent-bytecode.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 001-include-version-number.patch │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ ├── 013-lnum-strtoul-parsing-fixes.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 020-shared_liblua.patch │ │ ├── 030-archindependent-bytecode.patch │ │ ├── 040-use-symbolic-functions.patch │ │ ├── 050-honor-cflags.patch │ │ ├── 100-no_readline.patch │ │ ├── 200-lua-path.patch │ │ └── 300-opcode_performance.patch │ ├── lua5.3 │ ├── Makefile │ ├── patches-host │ │ ├── 001-include-version-number.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 001-include-version-number.patch │ │ ├── 020-shared_liblua.patch │ │ └── 100-no_readline.patch │ ├── mdadm │ ├── Makefile │ ├── files │ │ ├── mdadm.config │ │ └── mdadm.init │ └── patches │ │ ├── 100-cross_compile.patch │ │ ├── 101-mdadm.h-Undefine-dprintf-before-redefining.patch │ │ ├── 102-Add-missing-include-file-sys-sysmacros.h.patch │ │ └── 200-reduce_size.patch │ ├── mtd-utils │ ├── Makefile │ └── patches │ │ ├── 100-fix_includes.patch │ │ └── 130-lzma_jffs2.patch │ ├── nvram │ ├── Makefile │ ├── files │ │ └── nvram.init │ └── src │ │ ├── Makefile │ │ ├── cli.c │ │ ├── crc.c │ │ ├── nvram.c │ │ ├── nvram.h │ │ └── sdinitvals.h │ ├── osafeloader │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── md5.c │ │ ├── md5.h │ │ └── osafeloader.c │ ├── oseama │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── md5.c │ │ ├── md5.h │ │ └── oseama.c │ ├── otrx │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── otrx.c │ ├── px5g │ ├── Makefile │ └── px5g.c │ ├── spidev_test │ └── Makefile │ ├── ugps │ ├── Makefile │ └── files │ │ ├── gps.config │ │ └── ugps.init │ ├── usbmode │ ├── Makefile │ ├── data │ │ └── 12d1-1f16 │ └── files │ │ ├── usbmode.hotplug │ │ └── usbmode.init │ ├── usbreset │ ├── Makefile │ └── src │ │ └── usbreset.c │ ├── usbutils │ └── Makefile │ ├── util-linux │ ├── Makefile │ └── patches │ │ ├── 003-fix_pkgconfig_files.patch │ │ └── 100-use_urandom.patch │ └── xfsprogs │ ├── Makefile │ └── patches │ ├── 100-no-selftest.patch │ ├── 110-subdirs.patch │ ├── 120-disable_assert.patch │ ├── 130-db-malloc-Use-posix_memalign-instead-of-deprecated-v.patch │ └── 140-copy-file-range.patch ├── 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 ├── functions.sh ├── gen-dependencies.sh ├── gen_image_generic.sh ├── get_source_date_epoch.sh ├── getver.sh ├── ipkg-build ├── ipkg-make-index.sh ├── ipkg-remove ├── json_add_image_info.py ├── 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 ├── sign_images.sh ├── slugimage.pl ├── srecimage.pl ├── strip-kmod.sh ├── symlink-tree.sh ├── sysupgrade-tar.sh ├── target-metadata.pl ├── time.pl ├── timestamp.pl └── ubinize-image.sh ├── target ├── Config.in ├── Makefile ├── imagebuilder │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── Makefile │ │ └── repositories.conf ├── linux │ ├── Makefile │ ├── apm821xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_iface_mac_apm821xx │ │ │ │ ├── 05_set_preinit_iface_apm821xx │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ ├── platform.sh │ │ │ │ └── wdbook.sh │ │ ├── config-4.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-0007-crypto-crypto4xx-extend-aead-fallback-checks.patch │ │ │ ├── 022-0008-crypto-crypto4xx-put-temporary-dst-sg-into-request-c.patch │ │ │ ├── 023-0001-treewide-kzalloc-kcalloc.patch │ │ │ ├── 023-0002-crypto-skcipher-remove-useless-setting-of-type-flags.patch │ │ │ ├── 023-0003-crypto-drop-mask-CRYPTO_ALG_ASYNC-from-cipher-tfm-al.patch │ │ │ ├── 023-0004-crypto4xx_core-don-t-abuse-__dma_sync_page.patch │ │ │ ├── 023-0005-cross-tree-phase-out-dma_zalloc_coherent.patch │ │ │ ├── 023-0006-crypto-crypto4xx-add-prng-crypto-support.patch │ │ │ ├── 023-0007-crypto-crypto4xx-Fix-wrong-ppc4xx_trng_probe-ppc4xx_.patch │ │ │ ├── 023-0013-crypto-crypto4xx-fix-AES-CTR-blocksize-value.patch │ │ │ ├── 023-0014-crypto-crypto4xx-fix-blocksize-for-cfb-and-ofb.patch │ │ │ ├── 023-0015-crypto-crypto4xx-block-ciphers-should-only-accept-co.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 │ │ │ ├── 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-dt-bindings-dmaengine-dw-dmac-add-protection-control.patch │ │ │ ├── 023-0003-crypto-drop-mask-CRYPTO_ALG_ASYNC-from-cipher-tfm-al.patch │ │ │ ├── 023-0004-crypto4xx_core-don-t-abuse-__dma_sync_page.patch │ │ │ ├── 023-0005-cross-tree-phase-out-dma_zalloc_coherent.patch │ │ │ ├── 023-0006-crypto-crypto4xx-add-prng-crypto-support.patch │ │ │ ├── 023-0007-crypto-crypto4xx-Fix-wrong-ppc4xx_trng_probe-ppc4xx_.patch │ │ │ ├── 023-0012-crypto-crypto4xx-get-rid-of-redundant-using_sd-varia.patch │ │ │ ├── 140-GPIO-add-named-gpio-exports.patch │ │ │ ├── 201-add-amcc-apollo3g-support.patch │ │ │ ├── 202-add-netgear-wndr4700-support.patch │ │ │ ├── 300-fix-atheros-nics-on-apm82181.patch │ │ │ ├── 301-fix-memory-map-wndr4700.patch │ │ │ ├── 801-usb-xhci-add-firmware-loader-for-uPD720201-and-uPD72.patch │ │ │ ├── 802-usb-xhci-force-msi-renesas-xhci.patch │ │ │ ├── 803-hwmon-tc654-add-detection-routine.patch │ │ │ └── 804-hwmon-tc654-add-thermal_cooling-device.patch │ │ └── sata │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── ar71xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ ├── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ └── net │ │ │ │ │ │ └── 10-ar922x-led-fix │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_network-switchX-migration │ │ │ │ │ ├── 03_network-vlan-migration │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ ├── 09_fix-checksum │ │ │ │ │ └── 09_fix-seama-header │ │ │ └── lib │ │ │ │ ├── ar71xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_ar71xx.sh │ │ │ │ ├── 05_set_iface_mac_ar71xx │ │ │ │ ├── 05_set_preinit_iface_ar71xx │ │ │ │ └── 82_patch_ath10k │ │ │ │ └── upgrade │ │ │ │ ├── allnet.sh │ │ │ │ ├── dir825.sh │ │ │ │ ├── merakinand.sh │ │ │ │ ├── openmesh.sh │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── ath79 │ │ │ │ │ ├── Kconfig.openwrt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dev-ap9x-pci.c │ │ │ │ │ ├── dev-ap9x-pci.h │ │ │ │ │ ├── dev-dsa.c │ │ │ │ │ ├── dev-dsa.h │ │ │ │ │ ├── dev-eth.c │ │ │ │ │ ├── dev-eth.h │ │ │ │ │ ├── dev-m25p80.c │ │ │ │ │ ├── dev-m25p80.h │ │ │ │ │ ├── dev-nfc.c │ │ │ │ │ ├── dev-nfc.h │ │ │ │ │ ├── mach-a60.c │ │ │ │ │ ├── mach-alfa-ap120c.c │ │ │ │ │ ├── mach-alfa-ap96.c │ │ │ │ │ ├── mach-alfa-nx.c │ │ │ │ │ ├── mach-all0258n.c │ │ │ │ │ ├── mach-all0315n.c │ │ │ │ │ ├── mach-antminer-s1.c │ │ │ │ │ ├── mach-antminer-s3.c │ │ │ │ │ ├── mach-antrouter-r1.c │ │ │ │ │ ├── mach-ap121f.c │ │ │ │ │ ├── mach-ap132.c │ │ │ │ │ ├── mach-ap143.c │ │ │ │ │ ├── mach-ap147.c │ │ │ │ │ ├── mach-ap152.c │ │ │ │ │ ├── mach-ap531b0.c │ │ │ │ │ ├── mach-ap90q.c │ │ │ │ │ ├── mach-ap91-5g.c │ │ │ │ │ ├── mach-ap96.c │ │ │ │ │ ├── mach-archer-c25-v1.c │ │ │ │ │ ├── mach-archer-c59-v1.c │ │ │ │ │ ├── mach-archer-c60-v1.c │ │ │ │ │ ├── mach-archer-c7-v4.c │ │ │ │ │ ├── mach-archer-c7-v5.c │ │ │ │ │ ├── mach-archer-c7.c │ │ │ │ │ ├── mach-arduino-yun.c │ │ │ │ │ ├── mach-aw-nr580.c │ │ │ │ │ ├── mach-bhr-4grv2.c │ │ │ │ │ ├── mach-bhu-bxu2000n2-a.c │ │ │ │ │ ├── mach-bsb.c │ │ │ │ │ ├── mach-c55.c │ │ │ │ │ ├── mach-c60.c │ │ │ │ │ ├── mach-cap324.c │ │ │ │ │ ├── mach-cap4200ag.c │ │ │ │ │ ├── mach-carambola2.c │ │ │ │ │ ├── mach-cf-e316n-v2.c │ │ │ │ │ ├── mach-cpe510.c │ │ │ │ │ ├── mach-cpe870.c │ │ │ │ │ ├── mach-cr3000.c │ │ │ │ │ ├── mach-cr5000.c │ │ │ │ │ ├── mach-dap-1330-a1.c │ │ │ │ │ ├── mach-dap-2695-a1.c │ │ │ │ │ ├── mach-dgl-5500-a1.c │ │ │ │ │ ├── mach-dhp-1565-a1.c │ │ │ │ │ ├── mach-dir-505-a1.c │ │ │ │ │ ├── mach-dir-600-a1.c │ │ │ │ │ ├── mach-dir-615-c1.c │ │ │ │ │ ├── mach-dir-615-i1.c │ │ │ │ │ ├── mach-dir-825-b1.c │ │ │ │ │ ├── mach-dir-825-c1.c │ │ │ │ │ ├── mach-dir-869-a1.c │ │ │ │ │ ├── mach-dlan-hotspot.c │ │ │ │ │ ├── mach-dlan-pro-1200-ac.c │ │ │ │ │ ├── mach-dlan-pro-500-wp.c │ │ │ │ │ ├── mach-domywifi-dw33d.c │ │ │ │ │ ├── mach-dr344.c │ │ │ │ │ ├── mach-dr531.c │ │ │ │ │ ├── mach-dragino2.c │ │ │ │ │ ├── mach-e1700ac-v2.c │ │ │ │ │ ├── mach-e2100l.c │ │ │ │ │ ├── mach-e558-v2.c │ │ │ │ │ ├── mach-e600g-v2.c │ │ │ │ │ ├── mach-e750a-v4.c │ │ │ │ │ ├── mach-e750g-v8.c │ │ │ │ │ ├── mach-eap120.c │ │ │ │ │ ├── mach-eap300v2.c │ │ │ │ │ ├── mach-eap7660d.c │ │ │ │ │ ├── mach-el-m150.c │ │ │ │ │ ├── mach-el-mini.c │ │ │ │ │ ├── mach-ens202ext.c │ │ │ │ │ ├── mach-epg5000.c │ │ │ │ │ ├── mach-esr1750.c │ │ │ │ │ ├── mach-esr900.c │ │ │ │ │ ├── mach-ew-balin.c │ │ │ │ │ ├── mach-ew-dorin.c │ │ │ │ │ ├── mach-f9k1115v2.c │ │ │ │ │ ├── mach-fritz300e.c │ │ │ │ │ ├── mach-fritz4020.c │ │ │ │ │ ├── mach-fritz450e.c │ │ │ │ │ ├── mach-gl-ar150.c │ │ │ │ │ ├── mach-gl-ar300.c │ │ │ │ │ ├── mach-gl-ar300m.c │ │ │ │ │ ├── mach-gl-ar750.c │ │ │ │ │ ├── mach-gl-ar750s.c │ │ │ │ │ ├── mach-gl-domino.c │ │ │ │ │ ├── mach-gl-inet.c │ │ │ │ │ ├── mach-gl-mifi.c │ │ │ │ │ ├── mach-gl-usb150.c │ │ │ │ │ ├── mach-gs-minibox-v32.c │ │ │ │ │ ├── mach-gs-oolite-v1.c │ │ │ │ │ ├── mach-gs-oolite-v5-2.c │ │ │ │ │ ├── mach-hiveap-121.c │ │ │ │ │ ├── mach-hiwifi-hc6361.c │ │ │ │ │ ├── mach-hornet-ub.c │ │ │ │ │ ├── mach-ja76pf.c │ │ │ │ │ ├── mach-jwap003.c │ │ │ │ │ ├── mach-jwap230.c │ │ │ │ │ ├── mach-koala.c │ │ │ │ │ ├── mach-lan-turtle.c │ │ │ │ │ ├── mach-lima.c │ │ │ │ │ ├── mach-mc-mac1200r.c │ │ │ │ │ ├── mach-mr12.c │ │ │ │ │ ├── mach-mr16.c │ │ │ │ │ ├── mach-mr1750.c │ │ │ │ │ ├── mach-mr18.c │ │ │ │ │ ├── mach-mr600.c │ │ │ │ │ ├── mach-mr900.c │ │ │ │ │ ├── mach-mynet-n600.c │ │ │ │ │ ├── mach-mynet-n750.c │ │ │ │ │ ├── mach-mynet-rext.c │ │ │ │ │ ├── mach-mzk-w04nu.c │ │ │ │ │ ├── mach-mzk-w300nh.c │ │ │ │ │ ├── mach-n5q.c │ │ │ │ │ ├── mach-nbg460n.c │ │ │ │ │ ├── mach-nbg6716.c │ │ │ │ │ ├── mach-om2p.c │ │ │ │ │ ├── mach-om5p.c │ │ │ │ │ ├── mach-om5pac.c │ │ │ │ │ ├── mach-om5pacv2.c │ │ │ │ │ ├── mach-omy-g1.c │ │ │ │ │ ├── mach-omy-x1.c │ │ │ │ │ ├── mach-onion-omega.c │ │ │ │ │ ├── mach-pb42.c │ │ │ │ │ ├── mach-pqi-air-pen.c │ │ │ │ │ ├── mach-qihoo-c301.c │ │ │ │ │ ├── mach-r36a.c │ │ │ │ │ ├── mach-r602n.c │ │ │ │ │ ├── mach-r6100.c │ │ │ │ │ ├── mach-rambutan.c │ │ │ │ │ ├── mach-rb2011.c │ │ │ │ │ ├── mach-rb4xx.c │ │ │ │ │ ├── mach-rb750.c │ │ │ │ │ ├── mach-rb91x.c │ │ │ │ │ ├── mach-rb922.c │ │ │ │ │ ├── mach-rb95x.c │ │ │ │ │ ├── mach-rbspi.c │ │ │ │ │ ├── mach-rbsxtlite.c │ │ │ │ │ ├── mach-re450.c │ │ │ │ │ ├── mach-rme-eg200.c │ │ │ │ │ ├── mach-rut9xx.c │ │ │ │ │ ├── mach-rw2458n.c │ │ │ │ │ ├── mach-sc1750.c │ │ │ │ │ ├── mach-sc300m.c │ │ │ │ │ ├── mach-sc450.c │ │ │ │ │ ├── mach-smart-300.c │ │ │ │ │ ├── mach-som9331.c │ │ │ │ │ ├── mach-sr3200.c │ │ │ │ │ ├── mach-t830.c │ │ │ │ │ ├── mach-tellstick-znet-lite.c │ │ │ │ │ ├── mach-tew-632brp.c │ │ │ │ │ ├── mach-tew-673gru.c │ │ │ │ │ ├── mach-tew-712br.c │ │ │ │ │ ├── mach-tew-732br.c │ │ │ │ │ ├── mach-tew-823dru.c │ │ │ │ │ ├── mach-tl-mr11u.c │ │ │ │ │ ├── mach-tl-mr13u.c │ │ │ │ │ ├── mach-tl-mr3020.c │ │ │ │ │ ├── mach-tl-mr3x20.c │ │ │ │ │ ├── mach-tl-mr6400.c │ │ │ │ │ ├── mach-tl-wa701nd-v2.c │ │ │ │ │ ├── mach-tl-wa7210n-v2.c │ │ │ │ │ ├── mach-tl-wa801nd-v3.c │ │ │ │ │ ├── mach-tl-wa830re-v2.c │ │ │ │ │ ├── mach-tl-wa901nd-v2.c │ │ │ │ │ ├── mach-tl-wa901nd-v4.c │ │ │ │ │ ├── mach-tl-wa901nd.c │ │ │ │ │ ├── mach-tl-wax50re.c │ │ │ │ │ ├── mach-tl-wdr3320-v2.c │ │ │ │ │ ├── mach-tl-wdr3500.c │ │ │ │ │ ├── mach-tl-wdr4300.c │ │ │ │ │ ├── mach-tl-wdr6500-v2.c │ │ │ │ │ ├── mach-tl-wpa8630.c │ │ │ │ │ ├── mach-tl-wr1041n-v2.c │ │ │ │ │ ├── mach-tl-wr1043nd-v2.c │ │ │ │ │ ├── mach-tl-wr1043nd-v4.c │ │ │ │ │ ├── mach-tl-wr1043nd.c │ │ │ │ │ ├── mach-tl-wr2543n.c │ │ │ │ │ ├── mach-tl-wr703n.c │ │ │ │ │ ├── mach-tl-wr720n-v3.c │ │ │ │ │ ├── mach-tl-wr741nd-v4.c │ │ │ │ │ ├── mach-tl-wr741nd.c │ │ │ │ │ ├── mach-tl-wr802n.c │ │ │ │ │ ├── mach-tl-wr810n.c │ │ │ │ │ ├── mach-tl-wr841n-v8.c │ │ │ │ │ ├── mach-tl-wr841n-v9.c │ │ │ │ │ ├── mach-tl-wr841n.c │ │ │ │ │ ├── mach-tl-wr902ac-v1.c │ │ │ │ │ ├── mach-tl-wr940n-v4.c │ │ │ │ │ ├── mach-tl-wr941nd-v6.c │ │ │ │ │ ├── mach-tl-wr941nd.c │ │ │ │ │ ├── mach-tl-wr942n-v1.c │ │ │ │ │ ├── mach-ts-d084.c │ │ │ │ │ ├── mach-tube2h.c │ │ │ │ │ ├── mach-ubnt-unifiac.c │ │ │ │ │ ├── mach-ubnt-xm.c │ │ │ │ │ ├── mach-ubnt.c │ │ │ │ │ ├── mach-wam250.c │ │ │ │ │ ├── mach-weio.c │ │ │ │ │ ├── mach-whr-hp-g300n.c │ │ │ │ │ ├── mach-wi2a-ac200i.c │ │ │ │ │ ├── mach-wifi-pineapple-nano.c │ │ │ │ │ ├── mach-wlae-ag300n.c │ │ │ │ │ ├── mach-wlr8100.c │ │ │ │ │ ├── mach-wndap360.c │ │ │ │ │ ├── mach-wndr3700.c │ │ │ │ │ ├── mach-wndr4300.c │ │ │ │ │ ├── mach-wnr2000-v3.c │ │ │ │ │ ├── mach-wnr2000-v4.c │ │ │ │ │ ├── mach-wnr2000.c │ │ │ │ │ ├── mach-wnr2200.c │ │ │ │ │ ├── mach-wp543.c │ │ │ │ │ ├── mach-wpe72.c │ │ │ │ │ ├── mach-wpj342.c │ │ │ │ │ ├── mach-wpj344.c │ │ │ │ │ ├── mach-wpj531.c │ │ │ │ │ ├── mach-wpj558.c │ │ │ │ │ ├── mach-wpj563.c │ │ │ │ │ ├── mach-wrt160nl.c │ │ │ │ │ ├── mach-wrt400n.c │ │ │ │ │ ├── mach-wrtnode2q.c │ │ │ │ │ ├── mach-wzr-450hp2.c │ │ │ │ │ ├── mach-wzr-hp-ag300h.c │ │ │ │ │ ├── mach-wzr-hp-g300nh.c │ │ │ │ │ ├── mach-wzr-hp-g300nh2.c │ │ │ │ │ ├── mach-wzr-hp-g450h.c │ │ │ │ │ ├── mach-z1.c │ │ │ │ │ ├── mach-zbt-we1526.c │ │ │ │ │ ├── mach-zcn-1523h.c │ │ │ │ │ ├── machtypes.h │ │ │ │ │ ├── nvram.c │ │ │ │ │ ├── nvram.h │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ ├── pci-ath9k-fixup.h │ │ │ │ │ ├── routerboot.c │ │ │ │ │ └── routerboot.h │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ ├── fw │ │ │ │ │ └── myloader │ │ │ │ │ │ └── myloader.h │ │ │ │ │ └── mach-ath79 │ │ │ │ │ ├── ag71xx_platform.h │ │ │ │ │ ├── mach-rb750.h │ │ │ │ │ └── rb4xx_cpld.h │ │ │ ├── drivers │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio-latch.c │ │ │ │ │ └── gpio-nxp-74hc153.c │ │ │ │ ├── leds │ │ │ │ │ ├── leds-nu801.c │ │ │ │ │ ├── leds-rb750.c │ │ │ │ │ └── leds-wndr3700-usb.c │ │ │ │ ├── mtd │ │ │ │ │ ├── cybertan_part.c │ │ │ │ │ ├── nand │ │ │ │ │ │ ├── ar934x_nfc.c │ │ │ │ │ │ ├── rb4xx_nand.c │ │ │ │ │ │ ├── rb750_nand.c │ │ │ │ │ │ └── rb91x_nand.c │ │ │ │ │ └── tplinkpart.c │ │ │ │ ├── net │ │ │ │ │ ├── dsa │ │ │ │ │ │ └── mv88e6063.c │ │ │ │ │ └── ethernet │ │ │ │ │ │ └── atheros │ │ │ │ │ │ └── ag71xx │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ag71xx.h │ │ │ │ │ │ ├── ag71xx_ar7240.c │ │ │ │ │ │ ├── ag71xx_ar8216.c │ │ │ │ │ │ ├── ag71xx_debugfs.c │ │ │ │ │ │ ├── ag71xx_ethtool.c │ │ │ │ │ │ ├── ag71xx_main.c │ │ │ │ │ │ ├── ag71xx_mdio.c │ │ │ │ │ │ └── ag71xx_phy.c │ │ │ │ └── spi │ │ │ │ │ ├── spi-rb4xx-cpld.c │ │ │ │ │ ├── spi-rb4xx.c │ │ │ │ │ └── spi-vsc7385.c │ │ │ └── include │ │ │ │ └── linux │ │ │ │ ├── leds-nu801.h │ │ │ │ ├── nxp_74hc153.h │ │ │ │ ├── platform │ │ │ │ └── ar934x_nfc.h │ │ │ │ ├── platform_data │ │ │ │ ├── gpio-latch.h │ │ │ │ └── rb91x_nand.h │ │ │ │ └── spi │ │ │ │ └── vsc7385.h │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── common-tp-link.mk │ │ │ ├── generic-legacy-devices.mk │ │ │ ├── generic-tp-link.mk │ │ │ ├── generic-ubnt.mk │ │ │ ├── generic.mk │ │ │ ├── legacy.mk │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ar71xx_regs.h │ │ │ │ │ ├── board.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cp0regdef.h │ │ │ │ │ ├── head.S │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── loader2.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ └── printf.h │ │ │ ├── mikrotik.mk │ │ │ ├── nand.mk │ │ │ ├── tiny-legacy-devices.mk │ │ │ ├── tiny-senao.mk │ │ │ ├── tiny-tp-link.mk │ │ │ ├── tiny.mk │ │ │ ├── ubinize-nbg6716.ini │ │ │ └── ubinize-wndr4300.ini │ │ ├── mikrotik │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.14 │ │ │ ├── 001-spi-cs-gpio.patch │ │ │ ├── 002-add_back_gpio_function_select.patch │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ ├── 100-MIPS-ath79-Avoid-using-unitialized-reg-variable.patch │ │ │ ├── 106-02-MIPS-ath79-do-AR724x-PCIe-root-complex-init.patch │ │ │ ├── 200-MIPS-ath79-fix-ar933x-wmac-reset.patch │ │ │ ├── 201-ar913x_wmac_external_reset.patch │ │ │ ├── 202-MIPS-ath79-ar934x-wmac-revision.patch │ │ │ ├── 220-add_cpu_feature_overrides.patch │ │ │ ├── 300-MIPS-add-MIPS_MACHINE_NONAME-macro.patch │ │ │ ├── 310-lib-add-rle-decompression.patch │ │ │ ├── 343-MIPS-ath79-Fix-potentially-missed-IRQ-handling-durin.patch │ │ │ ├── 401-mtd-physmap-add-lock-unlock.patch │ │ │ ├── 402-mtd-SST39VF6401B-support.patch │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ ├── 405-mtd-tp-link-partition-parser.patch │ │ │ ├── 407-mtd-m25p80-allow-to-pass-probe-types-via-platform-data.patch │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ ├── 409-mtd-rb4xx_nand_driver.patch │ │ │ ├── 410-mtd-rb750-nand-driver.patch │ │ │ ├── 411-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 413-mtd-ar934x-nand-driver.patch │ │ │ ├── 414-mtd-rb91x-nand-driver.patch │ │ │ ├── 420-net-ar71xx_mac_driver.patch │ │ │ ├── 423-dsa-add-88e6063-driver.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ ├── 432-spi-rb4xx-spi-driver.patch │ │ │ ├── 433-spi-rb4xx-cpld-driver.patch │ │ │ ├── 435-spi-vsc7385_driver.patch │ │ │ ├── 440-leds-wndr3700-usb-led-driver.patch │ │ │ ├── 441-leds-rb750-led-driver.patch │ │ │ ├── 442-leds-gpio-allow-to-use-OPEN_-DRAIN-SOURCE-flags-with.patch │ │ │ ├── 450-gpio-nxp-74hc153-gpio-chip-driver.patch │ │ │ ├── 451-gpio-74x164-improve-platform-device-support.patch │ │ │ ├── 452-gpio-add-gpio-latch-driver.patch │ │ │ ├── 461-spi-ath79-add-fast-flash-read.patch │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 490-usb-ehci-add-quirks-for-qca-socs.patch │ │ │ ├── 500-MIPS-fw-myloader.patch │ │ │ ├── 501-MIPS-ath79-add-mac-argument-to-ath79_register_wmac.patch │ │ │ ├── 504-MIPS-ath79-add-ath79_device_reset_get.patch │ │ │ ├── 505-MIPS-ath79-add-ath79_gpio_function_select.patch │ │ │ ├── 506-MIPS-ath79-prom-parse-redboot-args.patch │ │ │ ├── 507-MIPS-ath79-prom-add-myloader-support.patch │ │ │ ├── 508-MIPS-ath79-prom-image-command-line-hack.patch │ │ │ ├── 509-MIPS-ath79-process-board-kernel-option.patch │ │ │ ├── 510-MIPS-ath79-init-gpio-pin-of-wmac-device.patch │ │ │ ├── 520-MIPS-ath79-enable-UART-function.patch │ │ │ ├── 521-MIPS-ath79-enable-UART-for-early_serial.patch │ │ │ ├── 522-MIPS-ath79-add-ath79_wmac_register_simple-helper.patch │ │ │ ├── 523-MIPS-ath79-OTP-support.patch │ │ │ ├── 524-MIPS-ath79-add-ath79_wmac_disable_25ghz-helpers.patch │ │ │ ├── 525-MIPS-ath79-enable-qca-usb-quirks.patch │ │ │ ├── 601-MIPS-ath79-add-more-register-defines.patch │ │ │ ├── 602-MIPS-ath79-add-openwrt-stuff.patch │ │ │ ├── 603-MIPS-ath79-ap121-fixes.patch │ │ │ ├── 604-MIPS-ath79-no-of.patch │ │ │ ├── 605-MIPS-ath79-db120-fixes.patch │ │ │ ├── 606-MIPS-ath79-pb44-fixes.patch │ │ │ ├── 607-MIPS-ath79-ubnt-xm-fixes.patch │ │ │ ├── 608-MIPS-ath79-ubnt-xm-add-more-boards.patch │ │ │ ├── 609-MIPS-ath79-ap136-fixes.patch │ │ │ ├── 611-MIPS-ath79-wdt-timeout.patch │ │ │ ├── 612-MIPS-ath79-set-buffalo-txgain.patch │ │ │ ├── 613-MIPS-ath79-add-ath79_wmac_setup_ext_lna_gpio-helper.patch │ │ │ ├── 620-MIPS-ath79-add-support-for-QCA953x-SoC.patch │ │ │ ├── 621-MIPS-ath79-add-support-for-QCA956x-SoC.patch │ │ │ ├── 622-MIPS-ath79-add-more-register-defines-for-QCA956x-SoC.patch │ │ │ ├── 630-MIPS-ath79-fix-chained-irq-disable.patch │ │ │ ├── 631-MIPS-ath79-wmac-enable-set-led-pin.patch │ │ │ ├── 632-MIPS-ath79-gpio-enable-set-direction.patch │ │ │ ├── 640-MIPS-ath79-add-QCA955x-wmac-reset.patch │ │ │ ├── 700-MIPS-ath79-add-openwrt-Kconfig.patch │ │ │ ├── 701-MIPS-ath79-add-routerboard-detection.patch │ │ │ ├── 702-MIPS-ath79-fixup-routerboot-board-parameter.patch │ │ │ ├── 739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch │ │ │ ├── 740-MIPS-ath79-add-PCI-for-QCA953x-SoC.patch │ │ │ ├── 741-MIPS-ath79-add-PCI-for-QCA9556-SoC.patch │ │ │ ├── 818-MIPS-ath79-add-nu801-led-driver.patch │ │ │ ├── 820-MIPS-ath79-add_gpio_function2_setup.patch │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ ├── 902-at803x-add-reset-gpio-pdata.patch │ │ │ ├── 903-at803x-add-sgmii-aneg-override-pdata.patch │ │ │ ├── 910-unaligned_access_hacks.patch │ │ │ ├── 920-usb-chipidea-AR933x-platform-support.patch │ │ │ ├── 921-MIPS-ath79-add-even-more-register-defines-for-QCA956x-SoC.patch │ │ │ ├── 930-chipidea-pullup.patch │ │ │ ├── 940-qca955x-add-more-registers.patch │ │ │ ├── 950-add-boardinfo-platform-data.patch │ │ │ ├── 952-qca955x-enable-ddr-wb-flush.patch │ │ │ ├── 953-qca955x-pci-reset-fixes.patch │ │ │ └── 955-qca953x-fix-potential-missing-irq-dispatch.patch │ │ └── tiny │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── arc770 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── 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-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── 64 │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 00_model │ │ │ │ └── inittab │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ └── 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.14 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── at91-q5xr5.dts │ │ │ │ ├── lmu5000.dts │ │ │ │ ├── wb45n.dts │ │ │ │ ├── wb50n.dts │ │ │ │ └── wb50n.dtsi │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── dfboot │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── _udivsi3.S │ │ │ │ │ ├── _umodsi3.S │ │ │ │ │ ├── asm_isr.S │ │ │ │ │ ├── asm_mci_isr.S │ │ │ │ │ ├── at45.c │ │ │ │ │ ├── com.c │ │ │ │ │ ├── com.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cstartup_ram.S │ │ │ │ │ ├── dataflash.c │ │ │ │ │ ├── dataflash.h │ │ │ │ │ ├── div0.c │ │ │ │ │ ├── elf32-littlearm.lds │ │ │ │ │ ├── embedded_services.h │ │ │ │ │ ├── include │ │ │ │ │ ├── AT91C_MCI_Device.h │ │ │ │ │ ├── AT91RM9200.h │ │ │ │ │ ├── AT91RM9200.inc │ │ │ │ │ ├── AT91RM9200_inc.h │ │ │ │ │ ├── led.h │ │ │ │ │ └── lib_AT91RM9200.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── jump.S │ │ │ │ │ ├── led.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── main.h │ │ │ │ │ ├── mci_device.c │ │ │ │ │ └── stdio.h │ │ │ ├── gen_at91_sdcard_img.sh │ │ │ ├── sam9x.mk │ │ │ ├── sama5.mk │ │ │ ├── sama5d3.mk │ │ │ ├── sama5d4.mk │ │ │ └── uboot-env.txt │ │ ├── modules.mk │ │ ├── patches-4.14 │ │ │ ├── 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 │ │ │ └── 105-ARM-at91-build-dtb-for-sama5d2-ptc-Ek.patch │ │ ├── sam9x │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── sama5 │ │ │ ├── config-default │ │ │ └── target.mk │ ├── ath25 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 15_preinit_iface_atheros │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-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 │ │ │ │ └── hotplug.d │ │ │ │ └── ieee80211 │ │ │ │ └── 00-wifi-migration │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── dts │ │ │ ├── ar1022_iodata_wn-ag300dgr.dts │ │ │ ├── ar1022_sitecom_wlr-7100.dts │ │ │ ├── ar7100.dtsi │ │ │ ├── ar7161_adtran_bsap1800-v2.dts │ │ │ ├── ar7161_adtran_bsap1840.dts │ │ │ ├── ar7161_adtran_bsap1880.dtsi │ │ │ ├── ar7161_aruba_ap-105.dts │ │ │ ├── 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_netgear_wndr3800ch.dts │ │ │ ├── ar7161_ubnt_routerstation-pro.dts │ │ │ ├── ar7161_ubnt_routerstation.dts │ │ │ ├── ar7161_ubnt_routerstation.dtsi │ │ │ ├── ar7240.dtsi │ │ │ ├── ar7240_buffalo_whr-g301n.dts │ │ │ ├── ar7240_dlink_dir-615-e4.dts │ │ │ ├── ar7240_netgear_wnr1000-v2.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_netgear_wnr2000-v3.dts │ │ │ ├── ar7241_netgear_wnr2200-16m.dts │ │ │ ├── ar7241_netgear_wnr2200-8m.dts │ │ │ ├── ar7241_netgear_wnr2200.dtsi │ │ │ ├── ar7241_tplink.dtsi │ │ │ ├── ar7241_tplink_tl-mr3220-v1.dts │ │ │ ├── ar7241_tplink_tl-mr3420-v1.dts │ │ │ ├── ar7241_tplink_tl-mr3x20.dtsi │ │ │ ├── ar7241_tplink_tl-wr841-v7.dts │ │ │ ├── ar7241_tplink_tl-wr842n-v1.dts │ │ │ ├── ar7241_ubnt_airrouter.dts │ │ │ ├── ar7241_ubnt_bullet-m.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 │ │ │ ├── ar7242_ubnt_edgeswitch-5xp.dts │ │ │ ├── ar7242_ubnt_edgeswitch-8xp.dts │ │ │ ├── ar7242_ubnt_sw.dtsi │ │ │ ├── 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_8dev_carambola2.dts │ │ │ ├── ar9331_alfa-network_ap121f.dts │ │ │ ├── ar9331_embeddedwireless_dorin.dts │ │ │ ├── ar9331_etactica_eg200.dts │ │ │ ├── ar9331_pisen_ts-d084.dts │ │ │ ├── ar9331_pisen_wmm003n.dts │ │ │ ├── ar9331_tplink_tl-mr10u.dts │ │ │ ├── ar9331_tplink_tl-mr3020-v1.dts │ │ │ ├── ar9331_tplink_tl-mr3040-v2.dts │ │ │ ├── ar9331_tplink_tl-wr703n.dts │ │ │ ├── ar9331_tplink_tl-wr703n_tl-mr10u.dtsi │ │ │ ├── ar9331_tplink_tl-wr710n-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_pisen_wmb001n.dts │ │ │ ├── ar9341_tplink.dtsi │ │ │ ├── ar9341_tplink_tl-mr3420-v2.dts │ │ │ ├── ar9341_tplink_tl-wr841-v8.dts │ │ │ ├── ar9341_tplink_tl-wr842n-v2.dts │ │ │ ├── ar9342_iodata_etg3-r.dts │ │ │ ├── ar9342_ubnt_bullet-m-xw.dts │ │ │ ├── ar9342_ubnt_lap-120.dts │ │ │ ├── ar9342_ubnt_litebeam-ac-gen2.dts │ │ │ ├── ar9342_ubnt_nanobeam-ac.dts │ │ │ ├── ar9342_ubnt_nanostation-ac-loco.dts │ │ │ ├── ar9342_ubnt_nanostation-ac.dts │ │ │ ├── ar9342_ubnt_nanostation-m-xw.dts │ │ │ ├── ar9342_ubnt_wa.dtsi │ │ │ ├── ar9342_ubnt_xw.dtsi │ │ │ ├── ar9344.dtsi │ │ │ ├── ar9344_aerohive_hiveap-121.dts │ │ │ ├── ar9344_comfast_cf-e120a-v3.dts │ │ │ ├── ar9344_dlink_dir-825-c1.dts │ │ │ ├── ar9344_dlink_dir-835-a1.dts │ │ │ ├── ar9344_dlink_dir-8x5.dtsi │ │ │ ├── ar9344_netgear_wndr.dtsi │ │ │ ├── ar9344_netgear_wndr3700-v4.dts │ │ │ ├── ar9344_netgear_wndr4300.dts │ │ │ ├── ar9344_ocedo_raccoon.dts │ │ │ ├── ar9344_pcs_cap324.dts │ │ │ ├── ar9344_pcs_cr5000.dts │ │ │ ├── ar9344_qihoo_c301.dts │ │ │ ├── ar9344_tplink_cpe.dtsi │ │ │ ├── ar9344_tplink_cpe210-v1.dts │ │ │ ├── ar9344_tplink_cpe220-v2.dts │ │ │ ├── ar9344_tplink_cpe510-v1.dts │ │ │ ├── ar9344_tplink_cpe510-v2.dts │ │ │ ├── ar9344_tplink_cpe510-v3.dts │ │ │ ├── ar9344_tplink_cpe610-v1.dts │ │ │ ├── ar9344_tplink_cpe_1port.dtsi │ │ │ ├── ar9344_tplink_cpe_2port.dtsi │ │ │ ├── ar9344_tplink_tl-wdr3500-v1.dts │ │ │ ├── ar9344_tplink_tl-wdr3600-v1.dts │ │ │ ├── ar9344_tplink_tl-wdr4300-v1-il.dts │ │ │ ├── ar9344_tplink_tl-wdr4300-v1.dts │ │ │ ├── ar9344_tplink_tl-wdr4300.dtsi │ │ │ ├── ar9344_tplink_tl-wdrxxxx.dtsi │ │ │ ├── ar9344_tplink_wbs210-v2.dts │ │ │ ├── ar9344_tplink_wbs510-v1.dts │ │ │ ├── ar9344_tplink_wbs510-v2.dts │ │ │ ├── ar9344_wd_mynet-n750.dts │ │ │ ├── ar9344_wd_mynet-wifi-rangeextender.dts │ │ │ ├── ar9344_winchannel_wb2000.dts │ │ │ ├── ar9344_zbtlink_zbt-wd323.dts │ │ │ ├── ar934x.dtsi │ │ │ ├── ath79.dtsi │ │ │ ├── qca9531_comfast_cf-e313ac.dts │ │ │ ├── qca9531_comfast_cf-e314n-v2.dts │ │ │ ├── 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-ar300m16.dts │ │ │ ├── qca9531_glinet_gl-ar750.dts │ │ │ ├── qca9531_glinet_gl-x750.dts │ │ │ ├── qca9531_tplink_archer-d50-v1.dts │ │ │ ├── qca9531_tplink_tl-wr810n-v1.dts │ │ │ ├── qca9531_tplink_tl-wr902ac-v1.dts │ │ │ ├── qca9531_yuncore_a770.dts │ │ │ ├── qca9533_comfast_cf-e110n-v2.dts │ │ │ ├── qca9533_tplink_cpe210-v2.dts │ │ │ ├── qca9533_tplink_cpe210-v3.dts │ │ │ ├── qca9533_tplink_cpe210.dtsi │ │ │ ├── qca9533_tplink_cpe220-v3.dts │ │ │ ├── qca9533_tplink_cpexxx.dtsi │ │ │ ├── qca9533_tplink_tl-wr810n-v2.dts │ │ │ ├── qca9533_tplink_tl-wr841-v10.dts │ │ │ ├── qca9533_tplink_tl-wr841-v11.dts │ │ │ ├── qca9533_tplink_tl-wr841-v11.dtsi │ │ │ ├── qca9533_tplink_tl-wr841-v12.dts │ │ │ ├── qca9533_tplink_tl-wr841-v9.dts │ │ │ ├── qca9533_tplink_tl-wr841.dtsi │ │ │ ├── qca9533_tplink_tl-wr842n-v3.dts │ │ │ ├── qca9533_ubnt_acb-isp.dts │ │ │ ├── qca953x.dtsi │ │ │ ├── qca953x_tplink_tl-wr810n.dtsi │ │ │ ├── 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_comfast_cf-wr650ac-v1.dts │ │ │ ├── qca9558_comfast_cf-wr650ac-v2.dts │ │ │ ├── qca9558_comfast_cf-wr650ac.dtsi │ │ │ ├── qca9558_devolo_dvl1200e.dts │ │ │ ├── qca9558_devolo_dvl1200i.dts │ │ │ ├── qca9558_devolo_dvl1750c.dts │ │ │ ├── qca9558_devolo_dvl1750e.dts │ │ │ ├── qca9558_devolo_dvl1750i.dts │ │ │ ├── qca9558_devolo_dvl1750x.dts │ │ │ ├── qca9558_devolo_dvl1xxx.dtsi │ │ │ ├── qca9558_engenius_ecb1750.dts │ │ │ ├── qca9558_engenius_epg5000.dts │ │ │ ├── qca9558_librerouter_librerouter-v1.dts │ │ │ ├── qca9558_netgear_ex6400.dts │ │ │ ├── qca9558_netgear_ex7300.dts │ │ │ ├── qca9558_netgear_ex7300.dtsi │ │ │ ├── qca9558_ocedo_koala.dts │ │ │ ├── qca9558_ocedo_ursus.dts │ │ │ ├── qca9558_openmesh_om5p-ac-v2.dts │ │ │ ├── qca9558_tplink_archer-c.dtsi │ │ │ ├── qca9558_tplink_archer-c5-v1.dts │ │ │ ├── qca9558_tplink_archer-c7-v1.dts │ │ │ ├── qca9558_tplink_archer-c7-v2.dts │ │ │ ├── qca9558_tplink_re350k-v1.dts │ │ │ ├── qca9558_tplink_re355-v1.dts │ │ │ ├── qca9558_tplink_re450-v1.dts │ │ │ ├── qca9558_tplink_rex5x.dtsi │ │ │ ├── qca9558_tplink_tl-wdr4900-v2.dts │ │ │ ├── qca9558_tplink_tl-wr1043nd-v2.dts │ │ │ ├── qca9558_tplink_tl-wr1043nd-v3.dts │ │ │ ├── qca9558_tplink_tl-wr1043nd.dtsi │ │ │ ├── qca9558_tplink_tl-wr1045nd-v2.dts │ │ │ ├── qca9558_tplink_tl-wr941n-v7-cn.dts │ │ │ ├── qca9558_trendnet_tew-823dru.dts │ │ │ ├── qca9558_zyxel_nbg6716.dts │ │ │ ├── qca9561_avm_fritz4020.dts │ │ │ ├── qca9561_tplink_archer-c25-v1.dts │ │ │ ├── qca9561_tplink_archer-c58-v1.dts │ │ │ ├── qca9561_tplink_archer-c59-v1.dts │ │ │ ├── qca9561_tplink_archer-c59-v2.dts │ │ │ ├── qca9561_tplink_archer-c5x.dtsi │ │ │ ├── qca9561_tplink_archer-c60-v1.dts │ │ │ ├── qca9561_tplink_archer-c60-v2.dts │ │ │ ├── qca9561_tplink_archer-c6x.dtsi │ │ │ ├── qca9561_xiaomi_mi-router-4q.dts │ │ │ ├── qca9563_dlink_dir-842-c.dtsi │ │ │ ├── qca9563_dlink_dir-842-c1.dts │ │ │ ├── qca9563_dlink_dir-842-c2.dts │ │ │ ├── qca9563_dlink_dir-842-c3.dts │ │ │ ├── qca9563_dlink_dir-859-a1.dts │ │ │ ├── qca9563_elecom_wrc-1750ghbk2-i.dts │ │ │ ├── qca9563_elecom_wrc-300ghbk2-i.dts │ │ │ ├── qca9563_elecom_wrc-ghbk2-i.dtsi │ │ │ ├── qca9563_glinet_gl-ar750s-nor-nand.dts │ │ │ ├── qca9563_glinet_gl-ar750s-nor.dts │ │ │ ├── qca9563_glinet_gl-ar750s.dtsi │ │ │ ├── qca9563_nec_wg1200cr.dts │ │ │ ├── qca9563_nec_wg800hp.dts │ │ │ ├── qca9563_phicomm_k2t.dts │ │ │ ├── qca9563_rosinson_wr818.dts │ │ │ ├── qca9563_tplink_archer-a7-v5.dts │ │ │ ├── qca9563_tplink_archer-c2-v3.dts │ │ │ ├── qca9563_tplink_archer-c6-v2-us.dts │ │ │ ├── qca9563_tplink_archer-c6-v2.dts │ │ │ ├── qca9563_tplink_archer-c7-v4.dts │ │ │ ├── qca9563_tplink_archer-c7-v5.dts │ │ │ ├── qca9563_tplink_archer-x6-v2.dtsi │ │ │ ├── qca9563_tplink_archer-x7-v5.dtsi │ │ │ ├── qca9563_tplink_re450-v2.dts │ │ │ ├── qca9563_tplink_tl-wr1043n-v5.dts │ │ │ ├── qca9563_tplink_tl-wr1043n.dtsi │ │ │ ├── qca9563_tplink_tl-wr1043nd-v4.dts │ │ │ ├── qca9563_ubnt_unifiac-lite.dts │ │ │ ├── qca9563_ubnt_unifiac-lite.dtsi │ │ │ ├── qca9563_ubnt_unifiac-lr.dts │ │ │ ├── qca9563_ubnt_unifiac-mesh-pro.dts │ │ │ ├── qca9563_ubnt_unifiac-mesh.dts │ │ │ ├── qca9563_ubnt_unifiac-pro.dts │ │ │ ├── qca9563_ubnt_unifiac-pro.dtsi │ │ │ ├── qca9563_ubnt_unifiac.dtsi │ │ │ ├── qca9563_yuncore_a782.dts │ │ │ ├── qca9563_yuncore_xd4200.dts │ │ │ ├── qca9563_yuncore_xd4200.dtsi │ │ │ ├── qca956x.dtsi │ │ │ ├── tp9343_tplink_tl-wr940n-v3.dts │ │ │ ├── tp9343_tplink_tl-wr940n-v3.dtsi │ │ │ ├── tp9343_tplink_tl-wr940n-v4.dts │ │ │ ├── tp9343_tplink_tl-wr941nd-v6.dts │ │ │ └── tp9343_tplink_tl-wr94x.dtsi │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── ath79 │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ └── pci-ath9k-fixup.h │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ └── myloader.h │ │ │ └── drivers │ │ │ │ ├── mtd │ │ │ │ ├── nand │ │ │ │ │ └── raw │ │ │ │ │ │ └── ar934x_nand.c │ │ │ │ ├── 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 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ ├── firmware │ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ │ └── 09_fix-checksum │ │ │ │ └── lib │ │ │ │ │ ├── functions │ │ │ │ │ └── k2t.sh │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ └── pisen_wmb001n_factory-header.bin │ │ │ ├── common-buffalo.mk │ │ │ ├── common-netgear.mk │ │ │ ├── common-tp-link.mk │ │ │ ├── common-yuncore.mk │ │ │ ├── generic-tp-link.mk │ │ │ ├── generic-ubnt.mk │ │ │ ├── generic.mk │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ar71xx_regs.h │ │ │ │ │ ├── board.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cp0regdef.h │ │ │ │ │ ├── head.S │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── loader2.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ └── printf.h │ │ │ ├── nand.mk │ │ │ ├── tiny-netgear.mk │ │ │ ├── tiny-tp-link.mk │ │ │ └── tiny.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── firmware │ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ ├── glinet.sh │ │ │ │ │ └── platform.sh │ │ │ ├── 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 │ │ │ ├── 0038-at803x-disable-delays.patch │ │ │ ├── 004-register_gpio_driver_earlier.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 │ │ │ ├── 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 │ │ │ ├── 0038-at803x-disable-delays.patch │ │ │ ├── 004-register_gpio_driver_earlier.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 │ │ │ ├── 440-mtd-ar934x-nand-driver.patch │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ └── 910-unaligned_access_hacks.patch │ │ └── tiny │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── 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 │ │ ├── generic │ │ │ └── target.mk │ │ ├── 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 │ │ │ ├── 130-ARM-dts-BCM5301X-Add-DT-for-Luxul-XWC-2000.patch │ │ │ ├── 180-usb-xhci-add-support-for-performing-fake-doorbell.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-during-decompres.patch │ │ │ ├── 302-ARM-dts-BCM5301X-Update-Northstar-pinctrl-binding.patch │ │ │ ├── 310-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ ├── 311-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 320-ARM-dts-BCM5301X-Add-serial-to-the-bootargs.patch │ │ │ ├── 321-ARM-dts-BCM5301X-Describe-partition-formats.patch │ │ │ ├── 400-mtd-spi-nor-detect-JEDEC-incompatible-w25q128-using-.patch │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ ├── 700-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ ├── patches-4.19 │ │ │ ├── 030-v4.20-0001-ARM-dts-BCM5301X-Specify-flash-partitions.patch │ │ │ ├── 031-v4.21-0001-ARM-dts-BCM5301X-Relicense-BCM47081-BCM4709-files-to.patch │ │ │ ├── 031-v4.21-0002-ARM-dts-BCM5301X-Relicense-BCM47094-file-to-the-GPL-.patch │ │ │ ├── 031-v4.21-0003-ARM-dts-BCM53573-Relicense-Tenda-AC9-file-to-the-GPL.patch │ │ │ ├── 031-v4.21-0004-ARM-dts-BCM53573-Relicense-SoC-file-to-the-GPL-2.0-M.patch │ │ │ ├── 031-v4.21-0005-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA6500-V2.patch │ │ │ ├── 031-v4.21-0006-ARM-dts-BCM5301X-Describe-Northstar-pins-mux-control.patch │ │ │ ├── 032-v5.1-0001-ARM-dts-BCM53573-Relicense-Luxul-files-to-the-GPL-2..patch │ │ │ ├── 032-v5.1-0002-ARM-dts-BCM5301X-Add-basic-DT-for-Phicomm-K3.patch │ │ │ ├── 080-v4.20-0001-pinctrl-bcm-add-Northstar-driver.patch │ │ │ ├── 080-v4.20-0002-pinctrl-bcm-ns-Use-uintptr_t-for-casting-data.patch │ │ │ ├── 081-v4.21-0001-pinctrl-bcm-ns-support-updated-DT-binding-as-syscon-.patch │ │ │ ├── 130-ARM-dts-BCM5301X-Add-DT-for-Luxul-XWC-2000.patch │ │ │ ├── 180-usb-xhci-add-support-for-performing-fake-doorbell.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-during-decompres.patch │ │ │ ├── 302-ARM-dts-BCM5301X-Update-Northstar-pinctrl-binding.patch │ │ │ ├── 310-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ ├── 311-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 320-ARM-dts-BCM5301X-Add-serial-to-the-bootargs.patch │ │ │ ├── 321-ARM-dts-BCM5301X-Describe-partition-formats.patch │ │ │ ├── 400-mtd-spi-nor-detect-JEDEC-incompatible-w25q128-using-.patch │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ ├── 700-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ └── 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.19 │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── bcm2710 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── bcm2711 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ ├── distroconfig.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── modules │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── other.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ └── video.mk │ │ └── patches-4.19 │ │ │ ├── 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-spi-bcm2835-Support-pin-groups-other-than-7-11.patch │ │ │ ├── 950-0011-spi-bcm2835-Disable-forced-software-CS.patch │ │ │ ├── 950-0012-spi-bcm2835-Remove-unused-code.patch │ │ │ ├── 950-0013-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0014-firmware-Updated-mailbox-header.patch │ │ │ ├── 950-0015-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0016-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0017-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0018-bcm-Make-RASPBERRYPI_POWER-depend-on-PM.patch │ │ │ ├── 950-0019-Register-the-clocks-early-during-the-boot-process-so.patch │ │ │ ├── 950-0020-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0021-kbuild-Ignore-dtco-targets-when-filtering-symbols.patch │ │ │ ├── 950-0022-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0023-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0024-clk-bcm2835-Read-max-core-clock-from-firmware.patch │ │ │ ├── 950-0025-clk-bcm2835-Mark-GPIO-clocks-enabled-at-boot-as-crit.patch │ │ │ ├── 950-0026-sound-Demote-deferral-errors-to-INFO-level.patch │ │ │ ├── 950-0027-Update-vfpmodule.c.patch │ │ │ ├── 950-0028-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0029-mm-Remove-the-PFN-busy-warning.patch │ │ │ ├── 950-0030-ASoC-Add-prompt-for-ICS43432-codec.patch │ │ │ ├── 950-0031-irqchip-irq-bcm2836-Remove-regmap-and-syscon-use.patch │ │ │ ├── 950-0032-lan78xx-Enable-LEDs-and-auto-negotiation.patch │ │ │ ├── 950-0033-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0034-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0035-amba_pl011-Insert-mb-for-correct-FIFO-handling.patch │ │ │ ├── 950-0036-amba_pl011-Add-cts-event-workaround-DT-property.patch │ │ │ ├── 950-0037-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 950-0038-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0039-Add-dwc_otg-driver.patch │ │ │ ├── 950-0040-bcm2708-framebuffer-driver.patch │ │ │ ├── 950-0041-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 950-0042-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0043-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0044-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0045-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0046-vcsm-VideoCore-shared-memory-service-for-BCM2835.patch │ │ │ ├── 950-0047-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 950-0048-Add-SMI-driver.patch │ │ │ ├── 950-0049-MISC-bcm2835-smi-use-clock-manager-and-fix-reload-is.patch │ │ │ ├── 950-0050-Add-SMI-NAND-driver.patch │ │ │ ├── 950-0051-Add-cpufreq-driver.patch │ │ │ ├── 950-0052-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 950-0053-char-broadcom-Add-vcio-module.patch │ │ │ ├── 950-0054-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 950-0055-scripts-Add-mkknlimg-and-knlinfo-scripts-from-tools-.patch │ │ │ ├── 950-0056-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0057-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 950-0058-fbdev-add-FBIOCOPYAREA-ioctl.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-pcm512x-implement-set_tdm_slot-interface.patch │ │ │ ├── 950-0065-ASoC-Add-support-for-Rpi-DAC.patch │ │ │ ├── 950-0066-Add-IQaudIO-Sound-Card-support-for-Raspberry-Pi.patch │ │ │ ├── 950-0067-Added-support-for-HiFiBerry-DAC.patch │ │ │ ├── 950-0068-Added-driver-for-HiFiBerry-Amp-amplifier-add-on-boar.patch │ │ │ ├── 950-0069-Add-driver-for-rpi-proto.patch │ │ │ ├── 950-0070-Add-Support-for-JustBoom-Audio-boards.patch │ │ │ ├── 950-0071-New-AudioInjector.net-Pi-soundcard-with-low-jitter-a.patch │ │ │ ├── 950-0072-New-driver-for-RRA-DigiDAC1-soundcard-using-WM8741-W.patch │ │ │ ├── 950-0073-Add-support-for-Dion-Audio-LOCO-DAC-AMP-HAT.patch │ │ │ ├── 950-0074-Allo-Piano-DAC-boards-Initial-2-channel-stereo-suppo.patch │ │ │ ├── 950-0075-Add-support-for-Allo-Piano-DAC-2.1-plus-add-on-board.patch │ │ │ ├── 950-0076-Add-support-for-Allo-Boss-DAC-add-on-board-for-Raspb.patch │ │ │ ├── 950-0077-Support-for-Blokas-Labs-pisound-board.patch │ │ │ ├── 950-0078-ASoC-Add-driver-for-Cirrus-Logic-Audio-Card.patch │ │ │ ├── 950-0079-sound-Support-for-Dion-Audio-LOCO-V2-DAC-AMP-HAT.patch │ │ │ ├── 950-0080-Add-support-for-Fe-Pi-audio-sound-card.-1867.patch │ │ │ ├── 950-0081-Add-support-for-the-AudioInjector.net-Octo-sound-car.patch │ │ │ ├── 950-0082-Driver-support-for-Google-voiceHAT-soundcard.patch │ │ │ ├── 950-0083-Driver-and-overlay-for-Allo-Katana-DAC.patch │ │ │ ├── 950-0084-ASoC-Add-generic-RPI-driver-for-simple-soundcards.patch │ │ │ ├── 950-0085-ASoC-Add-Kconfig-and-Makefile-for-sound-soc-bcm.patch │ │ │ ├── 950-0086-ASoC-Create-a-generic-Pi-Hat-WM8804-driver.patch │ │ │ ├── 950-0087-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0088-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0089-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0090-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0091-Add-arm64-configuration-and-device-tree-differences..patch │ │ │ ├── 950-0092-ARM64-DWC_OTG-Port-dwc_otg-driver-to-ARM64.patch │ │ │ ├── 950-0093-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0094-ARM64-Force-hardware-emulation-of-deprecated-instruc.patch │ │ │ ├── 950-0095-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch │ │ │ ├── 950-0096-cache-export-clean-and-invalidate.patch │ │ │ ├── 950-0097-AXI-performance-monitor-driver-2222.patch │ │ │ ├── 950-0098-mcp2515-Use-DT-supplied-interrupt-flags.patch │ │ │ ├── 950-0099-Tidy-up-of-the-ft5406-driver-to-use-DT-2189.patch │ │ │ ├── 950-0100-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0101-ARM-Activate-FIQs-to-avoid-__irq_startup-warnings.patch │ │ │ ├── 950-0102-serial-8250-bcm2835aux-suppress-EPROBE_DEFER.patch │ │ │ ├── 950-0103-raspberrypi-firmware-Export-the-general-transaction-.patch │ │ │ ├── 950-0104-drm-vc4-Add-a-mode-for-using-the-closed-firmware-for.patch │ │ │ ├── 950-0105-drm-vc4-Name-the-primary-and-cursor-planes-in-fkms.patch │ │ │ ├── 950-0106-drm-vc4-Add-DRM_DEBUG_ATOMIC-for-the-insides-of-fkms.patch │ │ │ ├── 950-0107-drm-vc4-Fix-sending-of-page-flip-completion-events-i.patch │ │ │ ├── 950-0108-drm-vc4-Add-support-for-setting-DPMS-in-firmwarekms.patch │ │ │ ├── 950-0109-drm-vc4-Add-FB-modifier-support-to-firmwarekms.patch │ │ │ ├── 950-0110-drm-vc4-Add-missing-enable-disable-vblank-handlers-i.patch │ │ │ ├── 950-0111-vc4_fkms-Apply-firmware-overscan-offset-to-hardware-.patch │ │ │ ├── 950-0112-drm-vc4-Fix-warning-about-vblank-interrupts-before-D.patch │ │ │ ├── 950-0113-drm-vc4-Skip-SET_CURSOR_INFO-when-the-cursor-content.patch │ │ │ ├── 950-0114-drm-vc4-Remove-duplicate-primary-cursor-fields-from-.patch │ │ │ ├── 950-0115-vc4_firmware_kms-fix-build.patch │ │ │ ├── 950-0116-hack-cache-Fix-linker-error.patch │ │ │ ├── 950-0117-i2c-gpio-Also-set-bus-numbers-from-reg-property.patch │ │ │ ├── 950-0118-sound-bcm-Fix-memset-dereference-warning.patch │ │ │ ├── 950-0119-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch │ │ │ ├── 950-0120-lan78xx-Read-initial-EEE-status-from-DT.patch │ │ │ ├── 950-0121-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0122-gpiolib-Don-t-prevent-IRQ-usage-of-output-GPIOs.patch │ │ │ ├── 950-0123-Add-ability-to-export-gpio-used-by-gpio-poweroff.patch │ │ │ ├── 950-0124-firmware-raspberrypi-Notify-firmware-of-a-reboot.patch │ │ │ ├── 950-0125-irqchip-irq-bcm2835-Calc.-FIQ_START-at-boot-time.patch │ │ │ ├── 950-0126-of-configfs-Use-of_overlay_fdt_apply-API-call.patch │ │ │ ├── 950-0127-net-lan78xx-Disable-TCP-Segmentation-Offload-TSO.patch │ │ │ ├── 950-0128-lan78xx-Move-enabling-of-EEE-into-PHY-init-code.patch │ │ │ ├── 950-0129-staging-vc04_services-Derive-g_cache_line_size.patch │ │ │ ├── 950-0130-Add-rpi-poe-fan-driver.patch │ │ │ ├── 950-0131-cxd2880-CXD2880_SPI_DRV-should-select-DVB_CXD2880-wi.patch │ │ │ ├── 950-0132-vchiq_2835_arm-Implement-a-DMA-pool-for-small-bulk-t.patch │ │ │ ├── 950-0133-BCM2708_DT-Use-upstreamed-GPIO-expander-driver.patch │ │ │ ├── 950-0134-overlays-Fix-a-few-dtc-warnings.patch │ │ │ ├── 950-0135-bcm2708-rpi-Disable-txp-interrupt-unless-using-vc4-k.patch │ │ │ ├── 950-0136-hwmon-raspberrypi-Prevent-voltage-low-warnings-from-.patch │ │ │ ├── 950-0137-firmware-raspberrypi-Add-backward-compatible-get_thr.patch │ │ │ ├── 950-0138-sc16is7xx-Don-t-spin-if-no-data-received.patch │ │ │ ├── 950-0139-Add-device-tree-overlay-for-HD44780.patch │ │ │ ├── 950-0140-overlays-Add-addr-parameter-to-i2c-rtc-gpio.patch │ │ │ ├── 950-0141-ARM-BCM270X-Add-the-18-bit-DPI-pinmux-to-the-RPI-DTs.patch │ │ │ ├── 950-0142-overlays-Add-an-overlay-for-the-Adafruit-Kippah-with.patch │ │ │ ├── 950-0143-overlays-Remove-stale-notes-about-vc4-s-CMA-alignmen.patch │ │ │ ├── 950-0144-spi-Make-GPIO-CSs-honour-the-SPI_NO_CS-flag.patch │ │ │ ├── 950-0145-devicetree-add-RPi-CM3-dts-to-arm64-mimic-the-RPi-3B.patch │ │ │ ├── 950-0146-Add-support-for-audioinjector.net-ultra-soundcard.-2.patch │ │ │ ├── 950-0147-ASoC-cs4265-Add-a-S-PDIF-enable-switch.patch │ │ │ ├── 950-0148-ASoC-cs4265-Add-native-32bit-I2S-transport.patch │ │ │ ├── 950-0149-BCM270X_DT-Add-gpio-fan-overlay.patch │ │ │ ├── 950-0150-HID-hid-bigbenff-driver-for-BigBen-Interactive-PS3OF.patch │ │ │ ├── 950-0151-ASoC-cs4265-Add-a-MIC-pre.-route-2696.patch │ │ │ ├── 950-0152-Update-gpio-fan-overlay.dts-2711.patch │ │ │ ├── 950-0153-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 950-0154-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch │ │ │ ├── 950-0155-hwmon-adjust-rpi-poe-fan-overlay-trip-points.patch │ │ │ ├── 950-0156-overlays-add-overrides-for-PoE-HAT-fan-control.patch │ │ │ ├── 950-0157-overlays-Add-gpio-no-bank0-irq-overlay.patch │ │ │ ├── 950-0158-Add-hy28b-2017-model-device-tree-overlay-2721.patch │ │ │ ├── 950-0159-mmc-bcm2835-sdhost-Recover-from-MMC_SEND_EXT_CSD.patch │ │ │ ├── 950-0160-overlays-pi3-disable-bt-Clear-out-bt_pins-node.patch │ │ │ ├── 950-0161-Revert-rtc-pcf8523-properly-handle-oscillator-stop-b.patch │ │ │ ├── 950-0162-overlays-uart0-return-GPIOs-14-and-15-to-inputs.patch │ │ │ ├── 950-0163-mmc-bcm2835-sdhost-Fix-warnings-on-arm64.patch │ │ │ ├── 950-0164-Fix-warning-in-bcm2835-smi-nand.patch │ │ │ ├── 950-0165-media-ov5647-Add-set_fmt-and-get_fmt-calls.patch │ │ │ ├── 950-0166-media-Documentation-DT-add-device-tree-for-PWDN-cont.patch │ │ │ ├── 950-0167-media-ov5647-Add-support-for-PWDN-GPIO.patch │ │ │ ├── 950-0168-media-ov5647-Add-support-for-non-continuous-clock-mo.patch │ │ │ ├── 950-0169-media-tc358743-Increase-FIFO-level-to-374.patch │ │ │ ├── 950-0170-media-tc358743-fix-connected-active-CSI-2-lane-repor.patch │ │ │ ├── 950-0171-media-tc358743-Add-support-for-972Mbit-s-link-freq.patch │ │ │ ├── 950-0172-media-tc358743-Check-I2C-succeeded-during-probe.patch │ │ │ ├── 950-0173-media-adv7180-Default-to-the-first-valid-input.patch │ │ │ ├── 950-0174-media-adv7180-Add-YPrPb-support-for-ADV7282M.patch │ │ │ ├── 950-0175-media-videodev2-Add-helper-defines-for-printing-FOUR.patch │ │ │ ├── 950-0176-dt-bindings-Document-BCM283x-CSI2-CCP2-receiver.patch │ │ │ ├── 950-0177-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0178-media-adv7180-Nasty-hack-to-allow-input-selection.patch │ │ │ ├── 950-0179-BCM283x-DT-Add-CSI-nodes-to-the-device-tree.patch │ │ │ ├── 950-0180-BCM270X_DT-Add-CSI-defines-for-all-the-downstream-Pi.patch │ │ │ ├── 950-0181-arm-dt-Add-DT-overlays-for-ADV7282M-OV5647-and-TC358.patch │ │ │ ├── 950-0182-dtoverlays-Add-support-for-ADV7280-M-ADV7281-M-and-A.patch │ │ │ ├── 950-0183-vcsm-Fix-an-NULL-dereference-in-the-import_dmabuf-er.patch │ │ │ ├── 950-0184-Update-README-2750.patch │ │ │ ├── 950-0185-overlays-Remove-superfluous-address-size-cells.patch │ │ │ ├── 950-0186-rpi-wm8804-soundcard-drop-PWRDN-register-writes.patch │ │ │ ├── 950-0187-rpi-wm8804-soundcard-configure-wm8804-clocks-only-on.patch │ │ │ ├── 950-0188-dtoverlays-Add-i2c-on-0-1-option-to-TC358743-ADV7282.patch │ │ │ ├── 950-0189-overlays-Update-upstream-overlay.patch │ │ │ ├── 950-0190-BCM2708_DT-update-firmware-node-binding.patch │ │ │ ├── 950-0191-BCM2710_DT-fix-gpio-expander-bindings.patch │ │ │ ├── 950-0192-ARM-dts-bcm283x-The-lan7515-PHY-node-has-moved.patch │ │ │ ├── 950-0193-net-lan78xx-Support-auto-downshift-to-100Mb-s.patch │ │ │ ├── 950-0194-dt-bindings-Document-microchip-downshift-after.patch │ │ │ ├── 950-0195-ARM-dts-bcm283x-Set-downshift-after-for-Pi-3B.patch │ │ │ ├── 950-0196-BCM270X_DT-Add-new-Ethernet-DT-parameters.patch │ │ │ ├── 950-0197-BCM270X_DT-Mark-eth_downshift_after-as-an-integer.patch │ │ │ ├── 950-0198-dwc-otg-FIQ-Fix-bad-mode-in-data-abort-handler.patch │ │ │ ├── 950-0199-lirc-rpi-Remove-in-favour-of-gpio-ir.patch │ │ │ ├── 950-0200-media-bcm2835-unicam-Pass-through-the-colorspace-on-.patch │ │ │ ├── 950-0201-media-tc358743-Return-an-appropriate-colorspace-from.patch │ │ │ ├── 950-0202-staging-bcm2835-camera-fix-module-autoloading.patch │ │ │ ├── 950-0203-staging-bcm2835-camera-Move-module-info-to-the-end.patch │ │ │ ├── 950-0204-staging-vchiq_arm-Fix-platform-device-unregistration.patch │ │ │ ├── 950-0205-staging-vchiq_arm-Fix-camera-device-registration.patch │ │ │ ├── 950-0206-staging-bcm2835-camera-Provide-more-specific-probe-e.patch │ │ │ ├── 950-0207-staging-bcm2835-camera-Add-hint-about-possible-fault.patch │ │ │ ├── 950-0208-staging-bcm2835-Don-t-probe-if-no-camera-is-detected.patch │ │ │ ├── 950-0209-staging-vchiq_arm-Improve-error-handling-on-loading-.patch │ │ │ ├── 950-0210-staging-bcm2835-camera-Do-not-bulk-receive-from-serv.patch │ │ │ ├── 950-0211-staging-bcm2835-camera-Ensure-H264-header-bytes-get-.patch │ │ │ ├── 950-0212-staging-bcm2835-camera-Correctly-denote-key-frames-i.patch │ │ │ ├── 950-0213-staging-bcm2835-camera-Return-early-on-errors.patch │ │ │ ├── 950-0214-staging-bcm2835-camera-Remove-dead-email-addresses.patch │ │ │ ├── 950-0215-staging-bcm2835-camera-Fix-comment-style-violations.patch │ │ │ ├── 950-0216-staging-bcm2835-camera-Fix-spacing-around-operators.patch │ │ │ ├── 950-0217-staging-bcm2835-camera-Reduce-length-of-enum-names.patch │ │ │ ├── 950-0218-staging-bcm2835-camera-Fix-multiple-line-dereference.patch │ │ │ ├── 950-0219-staging-bcm2835-camera-Fix-brace-style-issues.patch │ │ │ ├── 950-0220-staging-bcm2835-camera-Fix-missing-lines-between-ite.patch │ │ │ ├── 950-0221-staging-bcm2835-camera-Fix-logical-continuation-spli.patch │ │ │ ├── 950-0222-staging-bcm2835-camera-Fix-open-parenthesis-alignmen.patch │ │ │ ├── 950-0223-staging-bcm2835-camera-Set-sequence-number-correctly.patch │ │ │ ├── 950-0224-staging-bcm2835-camera-Ensure-timestamps-never-go-ba.patch │ │ │ ├── 950-0225-staging-bcm2835-camera-Avoid-unneeded-internal-decla.patch │ │ │ ├── 950-0226-staging-bcm2835-camera-Add-multiple-inclusion-protec.patch │ │ │ ├── 950-0227-staging-bcm2835-camera-Unify-header-inclusion-define.patch │ │ │ ├── 950-0228-staging-bcm2835-camera-Fix-alignment-should-match-op.patch │ │ │ ├── 950-0229-staging-bcm2835-camera-Fix-multiple-assignments-shou.patch │ │ │ ├── 950-0230-staging-bcm2835-camera-Fix-up-all-formatting-in-mmal.patch │ │ │ ├── 950-0231-staging-bcm2835-camera-Use-enums-for-max-value-in-co.patch │ │ │ ├── 950-0232-staging-bcm2835-camera-Correct-V4L2_CID_COLORFX_CBCR.patch │ │ │ ├── 950-0233-staging-bcm2835-camera-Remove-amend-some-obsolete-co.patch │ │ │ ├── 950-0234-staging-vc04_services-Split-vchiq-mmal-into-a-module.patch │ │ │ ├── 950-0235-staging-mmal-vchiq-Allocate-and-free-components-as-r.patch │ │ │ ├── 950-0236-staging-mmal-vchiq-Avoid-use-of-bool-in-structures.patch │ │ │ ├── 950-0237-staging-mmal-vchiq-Make-timeout-a-defined-parameter.patch │ │ │ ├── 950-0238-staging-mmal-vchiq-Make-a-mmal_buf-struct-for-passin.patch │ │ │ ├── 950-0239-staging-mmal-vchiq-Add-support-for-event-callbacks.patch │ │ │ ├── 950-0240-staging-vc04_services-Support-sending-data-to-MMAL-p.patch │ │ │ ├── 950-0241-staging-vc04_services-Fixup-vchiq-mmal-include-order.patch │ │ │ ├── 950-0242-staging-vc04_services-Add-new-vc-sm-cma-driver.patch │ │ │ ├── 950-0243-staging-vc-sm-cma-Fixup-driver-for-older-VCHI-APIs.patch │ │ │ ├── 950-0244-staging-vc04_services-Use-vc-sm-cma-to-support-zero-.patch │ │ │ ├── 950-0245-media-videobuf2-Allow-exporting-of-a-struct-dmabuf.patch │ │ │ ├── 950-0246-staging-vc04_services-Add-a-V4L2-M2M-codec-driver.patch │ │ │ ├── 950-0247-staging-vchiq_arm-Register-bcm2835-codec-as-a-platfo.patch │ │ │ ├── 950-0248-staging-vchiq_arm-Register-vcsm-cma-as-a-platform-dr.patch │ │ │ ├── 950-0249-staging-bcm2835-camera-Fix-stride-on-RGB3-BGR3-forma.patch │ │ │ ├── 950-0250-tpm-Make-SECURITYFS-a-weak-dependency.patch │ │ │ ├── 950-0251-Add-overlay-for-SLB9760-Iridium-LetsTrust-TPM.patch │ │ │ ├── 950-0252-ASoC-add-driver-for-3Dlab-Nano-soundcard-2758.patch │ │ │ ├── 950-0253-overlays-Update-README-with-removal-of-lirc-rpi.patch │ │ │ ├── 950-0254-staging-bcm2835-camera-Check-the-error-for-REPEAT_SE.patch │ │ │ ├── 950-0255-gpio-ir-change-default-pull-configuration-to-up.patch │ │ │ ├── 950-0256-firmware-raspberrypi-Report-the-fw-variant-during-pr.patch │ │ │ ├── 950-0257-firmware-raspberrypi-Report-the-fw-git-hash-during-p.patch │ │ │ ├── 950-0258-arm64-dts-broadcom-Enable-fixups-for-overlays.patch │ │ │ ├── 950-0259-dtoverlays-fe-pi-audio-fix-sgtl5000-compatible-strin.patch │ │ │ ├── 950-0260-bcm2835_smi-re-add-dereference-to-fix-DMA-transfers.patch │ │ │ ├── 950-0261-lan78xx-Debounce-link-events-to-minimize-poll-storm.patch │ │ │ ├── 950-0262-ASoC-Add-support-for-AudioSense-Pi-add-on-soundcard.patch │ │ │ ├── 950-0263-BCM270X-Adding-device-tree-support-for-AudioSense-Pi.patch │ │ │ ├── 950-0264-overlays-sdio-Add-enhanced-1-bit-support.patch │ │ │ ├── 950-0265-dwc_otg-fix-bug-with-port_addr-assignment-for-single.patch │ │ │ ├── 950-0266-Added-driver-for-the-HiFiBerry-DAC-ADC-2694.patch │ │ │ ├── 950-0267-pwm-Send-a-uevent-on-the-pwmchip-device-upon-channel.patch │ │ │ ├── 950-0268-overlays-Add-ssd1306-overlay-for-OLED-display.patch │ │ │ ├── 950-0269-overlays-mcp23017-Support-the-MCP23008.patch │ │ │ ├── 950-0270-overlays-Add-mcp342x-overlay.patch │ │ │ ├── 950-0271-char-vcio-Add-compat-ioctl-handling.patch │ │ │ ├── 950-0272-char-vcio-Fail-probe-if-rpi_firmware-is-not-found.patch │ │ │ ├── 950-0273-staging-mmal-vchiq-Fix-client_component-for-64-bit-k.patch │ │ │ ├── 950-0274-staging-bcm2835-camera-Add-sanity-checks-for-queue_s.patch │ │ │ ├── 950-0275-staging-bcm2835-camera-Set-the-field-value-within-ea.patch │ │ │ ├── 950-0276-char-vc_mem-Fix-up-compat-ioctls-for-64bit-kernel.patch │ │ │ ├── 950-0277-char-vc_mem-Fix-all-coding-style-issues.patch │ │ │ ├── 950-0278-clk-clk-bcm2835-Use-zd-when-printing-size_t.patch │ │ │ ├── 950-0279-mfd-Add-rpi_sense_core-of-compatible-string.patch │ │ │ ├── 950-0280-gpu-vc4_firmware_kms-Fix-up-64-bit-compile-warnings.patch │ │ │ ├── 950-0281-input-rpi-ft5406-Clear-build-warning-on-64-bit-build.patch │ │ │ ├── 950-0282-dtoverlays-Correct-DT-handling-camera-GPIOs.patch │ │ │ ├── 950-0283-media-ov5647-Use-gpiod_set_value_cansleep.patch │ │ │ ├── 950-0284-media-bcm2835-unicam-Power-on-subdev-on-open-release.patch │ │ │ ├── 950-0285-audioinjector-octo-revert-to-dummy-supplies.patch │ │ │ ├── 950-0286-staging-bcm2835-camera-Correct-ctrl-min-max-step-def.patch │ │ │ ├── 950-0287-staging-bcm2835-codec-variable-vb2-may-be-used-unini.patch │ │ │ ├── 950-0288-staging-bcm2835-codec-Fix-potentially-uninitialised-.patch │ │ │ ├── 950-0289-video-bcm2708_fb-Add-compat_ioctl-support.patch │ │ │ ├── 950-0290-video-bcm2708_fb-Fix-warnings-on-64-bit-builds.patch │ │ │ ├── 950-0291-video-bcm2708_fb-Clean-up-coding-style-issues.patch │ │ │ ├── 950-0292-bcm2835-dma-Add-support-for-per-channel-flags.patch │ │ │ ├── 950-0293-bcm283x-Set-the-DISDEBUG-flag-for-SD-transfers.patch │ │ │ ├── 950-0294-ASoC-pcm512x-Implement-the-digital_mute-interface.patch │ │ │ ├── 950-0295-ASoC-pcm512x-Fix-a-double-unlock-in-pcm512x_digital_.patch │ │ │ ├── 950-0296-usb-dwc_otg-Clean-up-build-warnings-on-64bit-kernels.patch │ │ │ ├── 950-0297-usb-dwc_otg-Use-dma-allocation-for-mphi-dummy_send-b.patch │ │ │ ├── 950-0298-staging-vchiq_arm-Set-up-dma-ranges-on-child-devices.patch │ │ │ ├── 950-0299-staging-vc-sm-cma-Correct-DMA-configuration.patch │ │ │ ├── 950-0300-staging-vc-sm-cma-Use-a-void-pointer-as-the-handle-w.patch │ │ │ ├── 950-0301-staging-vc-sm-cma-Fix-up-for-64bit-builds.patch │ │ │ ├── 950-0302-configs-Enable-the-AD193x-codecs.patch │ │ │ ├── 950-0303-overlays-balenaFin-v1.1.0-carrier-board-update.patch │ │ │ ├── 950-0304-gpu-vc4-fkms-Update-driver-to-not-use-plane-crtc.patch │ │ │ ├── 950-0305-drm-vc4-Programming-the-CTM-is-conditional-on-runnin.patch │ │ │ ├── 950-0306-staging-mmal_vchiq-Add-in-the-Bayer-encoding-formats.patch │ │ │ ├── 950-0307-staging-mmal-vchiq-Always-return-the-param-size-from.patch │ │ │ ├── 950-0308-staging-mmal-vchiq-If-the-VPU-returns-an-error-don-t.patch │ │ │ ├── 950-0309-staging-bcm2835_codec-Query-supported-formats-from-t.patch │ │ │ ├── 950-0310-staging-bcm2835_codec-Add-support-for-the-ISP-as-an-.patch │ │ │ ├── 950-0311-staging-bcm2835_codec-Add-an-option-for-ignoring-Bay.patch │ │ │ ├── 950-0312-staging-bcm2835_codec-Fix-handling-of-VB2_MEMORY_DMA.patch │ │ │ ├── 950-0313-staging-mmal-vchiq-Update-mmal_parameters.h-with-rec.patch │ │ │ ├── 950-0314-staging-bcm2835_codec-Include-timing-info-in-SPS-hea.patch │ │ │ ├── 950-0315-drm-vc4-Don-t-wait-for-vblank-on-fkms-cursor-updates.patch │ │ │ ├── 950-0316-Fix-for-Pisound-kernel-module-in-Real-Time-kernel-co.patch │ │ │ ├── 950-0317-Added-mute-stream-func.patch │ │ │ ├── 950-0318-lan78xx-EEE-support-is-now-a-PHY-property.patch │ │ │ ├── 950-0319-staging-vc_sm_cma-Remove-erroneous-misc_deregister.patch │ │ │ ├── 950-0320-vcsm-Fix-makefile-include-on-out-of-tree-builds.patch │ │ │ ├── 950-0321-vcsm-Remove-set-but-unused-variable.patch │ │ │ ├── 950-0322-vcsm-Reduce-scope-of-local-functions.patch │ │ │ ├── 950-0323-staging-bcm2835-codec-NULL-component-handle-on-queue.patch │ │ │ ├── 950-0324-staging-vc-sm-cma-Remove-the-debugfs-directory-on-re.patch │ │ │ ├── 950-0325-staging-vc-sm-cma-Use-devm_-allocs-for-sm_state.patch │ │ │ ├── 950-0326-staging-vc-sm-cma-Don-t-fail-if-debugfs-calls-fail.patch │ │ │ ├── 950-0327-staging-vc-sm-cma-Ensure-mutex-and-idr-are-destroyed.patch │ │ │ ├── 950-0328-staging-bcm2835_codec-Clean-up-logging-on-unloading-.patch │ │ │ ├── 950-0329-bcm2835-sdhost-Allow-for-sg-entries-that-cross-pages.patch │ │ │ ├── 950-0330-overlays-sdio-Added-4-bit-support-on-GPIOs-34-39.-29.patch │ │ │ ├── 950-0331-overlays-Fix-multiple-instantiation-of-sc16is7xx.patch │ │ │ ├── 950-0332-bcm2835-mmc-Fix-DMA-channel-leak.patch │ │ │ ├── 950-0333-bcm2835-mmc-Fix-struct-mmc_host-leak-on-probe.patch │ │ │ ├── 950-0334-bcm2835-mmc-Fix-duplicate-free_irq-on-remove.patch │ │ │ ├── 950-0335-bcm2835-mmc-Handle-mmc_add_host-errors.patch │ │ │ ├── 950-0336-bcm2835-mmc-Deduplicate-reset-of-driver-data-on-remo.patch │ │ │ ├── 950-0337-overlays-Add-max17040-support-to-i2c-sensor.patch │ │ │ ├── 950-0338-media-bcm2835-unicam-Add-support-for-enum-framesizes.patch │ │ │ ├── 950-0339-staging-bcm2835-codec-Refactor-default-resolution-co.patch │ │ │ ├── 950-0340-nvmem-add-type-attribute.patch │ │ │ ├── 950-0341-rtc-rv3028-add-new-driver.patch │ │ │ ├── 950-0342-overlays-Add-rv3028-to-i2c-rtc.patch │ │ │ ├── 950-0343-ASoC-tlv320aic32x4-SND_SOC_DAPM_MICBIAS-is-deprecate.patch │ │ │ ├── 950-0344-ASoC-tlv320aic32x4-Break-out-clock-setting-into-sepa.patch │ │ │ ├── 950-0345-ASoC-tlv320aic32x4-Properly-Set-Processing-Blocks.patch │ │ │ ├── 950-0346-ASoC-tlv320aic32x4-Model-PLL-in-CCF.patch │ │ │ ├── 950-0347-ASoC-tlv320aic32x4-Model-CODEC_CLKIN-in-CCF.patch │ │ │ ├── 950-0348-ASoC-tlv320aic32x4-Model-DAC-ADC-dividers-in-CCF.patch │ │ │ ├── 950-0349-ASoC-tlv320aic32x4-Model-BDIV-divider-in-CCF.patch │ │ │ ├── 950-0350-ASoC-tlv320aic32x4-Control-clock-gating-with-CCF.patch │ │ │ ├── 950-0351-ASoC-tlv320aic32x4-Move-aosr-and-dosr-setting-to-sep.patch │ │ │ ├── 950-0352-ASoC-tlv320aic32x4-Dynamically-Determine-Clocking.patch │ │ │ ├── 950-0353-ASoC-tlv320aic32x4-Restructure-set_dai_sysclk.patch │ │ │ ├── 950-0354-ASoC-tlv320aic32x4-Remove-mclk-references.patch │ │ │ ├── 950-0355-ASoC-tlv320aic32x4-Allow-192000-Sample-Rate.patch │ │ │ ├── 950-0356-ASoC-tlv320aic32x4-Only-enable-with-common-clock.patch │ │ │ ├── 950-0357-Audiophonics-I-Sabre-9038Q2M-DAC-driver.patch │ │ │ ├── 950-0358-ASoC-tlv320aic32x4-Change-author-s-name.patch │ │ │ ├── 950-0359-ASoC-tlv320aic32x4-Update-copyright-and-use-SPDX-ide.patch │ │ │ ├── 950-0360-ASoC-tlv320aic32x4-Add-Switch-for-Setting-Common-Mod.patch │ │ │ ├── 950-0361-ASoC-tlv320aic32x4-Add-Playback-PowerTune-Controls.patch │ │ │ ├── 950-0362-dtoverlays-Add-Support-for-the-UDRC-DRAWS.patch │ │ │ ├── 950-0363-dwc_otg-only-do_split-when-we-actually-need-to-do-a-.patch │ │ │ ├── 950-0364-Input-ili210x-fetch-touchscreen-geometry-from-DT.patch │ │ │ ├── 950-0365-Input-ili210x-add-DT-binding-document.patch │ │ │ ├── 950-0366-BCM2708-Add-core-Device-Tree-support-ilitek251x.patch │ │ │ ├── 950-0367-dwc_otg-fix-locking-around-dequeueing-and-killing-UR.patch │ │ │ ├── 950-0368-rtc-rv3028-Add-backup-switchover-mode-support.patch │ │ │ ├── 950-0369-dt-bindings-rv3028-backup-switchover-support.patch │ │ │ ├── 950-0370-overlays-Add-rv3028-backup-switchover-support-to-i2c.patch │ │ │ ├── 950-0371-Maxim-MAX98357A-I2S-DAC-overlay-2935.patch │ │ │ ├── 950-0372-sound-Fixes-for-audioinjector-octo-under-4.19.patch │ │ │ ├── 950-0373-overlays-Add-PiGlow-overlay.patch │ │ │ ├── 950-0374-staging-bcm2835-audio-Clean-up-mutex-locks.patch │ │ │ ├── 950-0375-staging-bcm2835-audio-Remove-redundant-spdif-stream-.patch │ │ │ ├── 950-0376-staging-bcm2835-audio-Clean-up-include-files-in-bcm2.patch │ │ │ ├── 950-0377-staging-bcm2835-audio-Remove-redundant-substream-mas.patch │ │ │ ├── 950-0378-staging-bcm2835-audio-Fix-mute-controls-volume-handl.patch │ │ │ ├── 950-0379-staging-bcm2835-audio-Remove-redundant-function-call.patch │ │ │ ├── 950-0380-staging-bcm2835-audio-Remove-superfluous-open-flag.patch │ │ │ ├── 950-0381-staging-bcm2835-audio-Drop-useless-running-flag-and-.patch │ │ │ ├── 950-0382-staging-bcm2835-audio-Fix-incorrect-draining-handlin.patch │ │ │ ├── 950-0383-staging-bcm2835-audio-Kill-unused-spinlock.patch │ │ │ ├── 950-0384-staging-bcm2835-audio-Use-PCM-runtime-values-instead.patch │ │ │ ├── 950-0385-staging-bcm2835-audio-Drop-unnecessary-pcm-indirect-.patch │ │ │ ├── 950-0386-staging-bcm2835-audio-Drop-useless-NULL-check.patch │ │ │ ├── 950-0387-staging-bcm2835-audio-Propagate-parameter-setup-erro.patch │ │ │ ├── 950-0388-staging-bcm2835-audio-Drop-debug-messages-in-bcm2835.patch │ │ │ ├── 950-0389-staging-bcm2835-audio-Drop-superfluous-mutex-lock-du.patch │ │ │ ├── 950-0390-staging-bcm2835-audio-Add-10ms-period-constraint.patch │ │ │ ├── 950-0391-staging-bcm2835-audio-Make-single-vchi-handle.patch │ │ │ ├── 950-0392-staging-bcm2835-audio-Code-refactoring-of-vchiq-acce.patch │ │ │ ├── 950-0393-staging-bcm2835-audio-Operate-non-atomic-PCM-ops.patch │ │ │ ├── 950-0394-staging-bcm2835-audio-Use-card-private_data.patch │ │ │ ├── 950-0395-staging-bcm2835-audio-Use-standard-error-print-helpe.patch │ │ │ ├── 950-0396-staging-bcm2835-audio-Remove-unnecessary-header-file.patch │ │ │ ├── 950-0397-staging-bcm2835-audio-Move-module-parameter-descript.patch │ │ │ ├── 950-0398-staging-bcm2835-audio-Use-coherent-device-buffers.patch │ │ │ ├── 950-0399-staging-bcm2835-audio-Set-SNDRV_PCM_INFO_SYNC_APPLPT.patch │ │ │ ├── 950-0400-staging-bcm2835-audio-Simplify-PCM-creation-helpers.patch │ │ │ ├── 950-0401-staging-bcm2835-audio-Simplify-kctl-creation-helpers.patch │ │ │ ├── 950-0402-staging-bcm2835-audio-Simplify-card-object-managemen.patch │ │ │ ├── 950-0403-staging-bcm2835-audio-unify-FOURCC-command-definitio.patch │ │ │ ├── 950-0404-staging-bcm2835-audio-don-t-initialize-memory-twice.patch │ │ │ ├── 950-0405-staging-bcm2835-audio-reorder-variable-declarations-.patch │ │ │ ├── 950-0406-staging-bcm2835-audio-use-anonymous-union-in-struct-.patch │ │ │ ├── 950-0407-staging-bcm2835-audio-more-generic-probe-function-na.patch │ │ │ ├── 950-0408-staging-bcm2835-audio-rename-platform_driver-structu.patch │ │ │ ├── 950-0409-staging-bcm2835-audio-update-TODO.patch │ │ │ ├── 950-0410-staging-bcm2835-audio-interpolate-audio-delay.patch │ │ │ ├── 950-0411-staging-bcm2835-audio-Enable-compile-test.patch │ │ │ ├── 950-0412-staging-bcm2835-audio-use-module_platform_driver-mac.patch │ │ │ ├── 950-0413-staging-bcm2835-audio-double-free-in-init-error-path.patch │ │ │ ├── 950-0414-dts-Increase-default-coherent-pool-size.patch │ │ │ ├── 950-0415-lan78xx-use-default-alignment-for-rx-buffers.patch │ │ │ ├── 950-0416-staging-bcm2835-codec-Correct-port-width-calc-for-tr.patch │ │ │ ├── 950-0417-staging-bcm2835-codec-Remove-height-padding-for-ISP-.patch │ │ │ ├── 950-0418-staging-mmal-vchiq-Free-the-event-context-for-contro.patch │ │ │ ├── 950-0419-BCM270X_DT-Also-set-coherent_pool-1M-for-BT-Pis.patch │ │ │ ├── 950-0420-arm-dts-overlays-rpi-sense-add-upstream-humidity-com.patch │ │ │ ├── 950-0421-staging-mmal-vchiq-Fix-memory-leak-in-error-path.patch │ │ │ ├── 950-0422-staging-vchiq-mmal-Fix-memory-leak-of-vchiq-instance.patch │ │ │ ├── 950-0423-Added-IQaudIO-Pi-Codec-board-support-2969.patch │ │ │ ├── 950-0424-w1-ds2408-reset-on-output_write-retry-with-readback.patch │ │ │ ├── 950-0425-w1-ds2482-cosmetic-fixes-after-54865314f5a1.patch │ │ │ ├── 950-0426-sound-pcm512x-codec-Adding-352.8kHz-samplerate-suppo.patch │ │ │ ├── 950-0427-ASoC-decommissioning-driver-for-3Dlab-Nano-soundcard.patch │ │ │ ├── 950-0428-.gitignore-Add-.dtbo-explicitly.patch │ │ │ ├── 950-0429-Bluetooth-Check-key-sizes-only-when-Secure-Simple-Pa.patch │ │ │ ├── 950-0430-usb-dwc_otg-Clean-up-interrupt-claiming-code.patch │ │ │ ├── 950-0431-overlays-Delete-the-deprecated-sdio-1bit-overlay.patch │ │ │ ├── 950-0432-overlays-Remove-upstream-aux-interrupt-overlay.patch │ │ │ ├── 950-0433-overlays-Standardise-on-compatible-brcm-bcm2835.patch │ │ │ ├── 950-0434-vc4-Remove-interrupt-and-DMA-trampling.patch │ │ │ ├── 950-0435-BCM270X_DT-Add-non-removable-clone-of-mmc-node.patch │ │ │ ├── 950-0436-BCM270X_DT-usb-Refactor-DTS-and-overlays.patch │ │ │ ├── 950-0437-overlays-Update-upstream-overlay.patch │ │ │ ├── 950-0438-w1-ds2408-Fix-typo-after-49695ac46861-reset-on-outpu.patch │ │ │ ├── 950-0439-BCM270X_DT-Rename-Pi-Zero-W-DT-files.patch │ │ │ ├── 950-0440-BCM270X_DT-Create-bcm2708-rpi-zero.dts.patch │ │ │ ├── 950-0441-overlays-Fix-mmc-related-overlays-after-refactor.patch │ │ │ ├── 950-0442-Fixed-48k-timing-issue.patch │ │ │ ├── 950-0443-staging-bcm2835-codec-Convert-V4L2-nsec-timestamps-t.patch │ │ │ ├── 950-0444-staging-bcm2835-codec-Add-support-for-setting-S_PARM.patch │ │ │ ├── 950-0445-w1-w1-gpio-Make-GPIO-an-output-for-strong-pullup.patch │ │ │ ├── 950-0446-overlays-Update-w1-gpio-and-w1-gpio-pullup.patch │ │ │ ├── 950-0447-bcm2835-sdhost-Fix-DMA-channel-leak-on-error-remove.patch │ │ │ ├── 950-0448-i2c-bcm2835-Model-Divider-in-CCF.patch │ │ │ ├── 950-0449-staging-vc04_services-Use-correct-cache-line-size.patch │ │ │ ├── 950-0450-tty-amba-pl011-allow-shared-interrupt.patch │ │ │ ├── 950-0451-ARM-bcm283x-Reduce-register-ranges-for-UART-SPI-and-.patch │ │ │ ├── 950-0452-ARM-bcm283x-Extend-the-WDT-DT-node-out-to-cover-the-.patch │ │ │ ├── 950-0453-ARM-dts-Add-label-to-bcm2835-RNG.patch │ │ │ ├── 950-0454-dts-Use-fb-rather-than-leds-for-dpi-overlay.patch │ │ │ ├── 950-0455-BCM270X_DT-Minor-tidy-up.patch │ │ │ ├── 950-0456-arm-bcm2835-Fix-FIQ-early-ioremap.patch │ │ │ ├── 950-0457-Fix-copy_from_user-if-BCM2835_FAST_MEMCPY-n.patch │ │ │ ├── 950-0458-PCI-brcmstb-Add-Broadcom-STB-PCIe-host-controller-dr.patch │ │ │ ├── 950-0459-PCI-brcmstb-Add-dma-range-mapping-for-inbound-traffi.patch │ │ │ ├── 950-0460-PCI-brcmstb-Add-MSI-capability.patch │ │ │ ├── 950-0461-dt-bindings-pci-Add-DT-docs-for-Brcmstb-PCIe-device.patch │ │ │ ├── 950-0462-pcie-brcmstb-Changes-for-BCM2711.patch │ │ │ ├── 950-0463-arm-bcm2835-DMA-can-only-address-1GB.patch │ │ │ ├── 950-0464-mmc-bcm2835-sdhost-Support-64-bit-physical-addresses.patch │ │ │ ├── 950-0465-mmc-sdhci-Mask-spurious-interrupts.patch │ │ │ ├── 950-0466-mmc-sdhci-iproc-Add-support-for-emmc2-of-the-BCM2838.patch │ │ │ ├── 950-0467-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0468-thermal-brcmstb_thermal-Add-BCM2838-support.patch │ │ │ ├── 950-0469-vchiq-Add-36-bit-address-support.patch │ │ │ ├── 950-0470-bcm2835-pcm.c-Support-multichannel-audio.patch │ │ │ ├── 950-0471-bcmgenet-constrain-max-DMA-burst-length.patch │ │ │ ├── 950-0472-bcmgenet-Better-coalescing-parameter-defaults.patch │ │ │ ├── 950-0473-net-genet-enable-link-energy-detect-powerdown-for-ex.patch │ │ │ ├── 950-0474-phy-broadcom-split-out-the-BCM54213PE-from-the-BCM54.patch │ │ │ ├── 950-0475-phy-bcm54213pe-configure-the-LED-outputs-to-be-more-.patch │ │ │ ├── 950-0476-dwc_otg-Choose-appropriate-IRQ-handover-strategy.patch │ │ │ ├── 950-0477-usb-xhci-Disable-the-XHCI-5-second-timeout.patch │ │ │ ├── 950-0478-usb-xhci-Show-that-the-VIA-VL805-supports-LPM.patch │ │ │ ├── 950-0479-spi-bcm2835-enable-shared-interrupt-support.patch │ │ │ ├── 950-0480-drivers-char-add-chardev-for-mmap-ing-Argon-control-.patch │ │ │ ├── 950-0481-clk-bcm2835-Don-t-wait-for-pllh-lock.patch │ │ │ ├── 950-0482-bcm2835-pm-Move-bcm2835-watchdog-s-DT-probe-to-an-MF.patch │ │ │ ├── 950-0483-soc-bcm-bcm2835-pm-Add-support-for-power-domains-und.patch │ │ │ ├── 950-0484-soc-bcm-bcm2835-pm-Fix-PM_IMAGE_PERI-power-domain-su.patch │ │ │ ├── 950-0485-soc-bcm-bcm2835-pm-Fix-error-paths-of-initialization.patch │ │ │ ├── 950-0486-soc-bcm-bcm2835-pm-Add-support-for-2711.patch │ │ │ ├── 950-0487-drm-expand-drm_syncobj_find_fence-to-support-timelin.patch │ │ │ ├── 950-0488-drm-v3d-Fix-a-use-after-free-race-accessing-the-sche.patch │ │ │ ├── 950-0489-drm-v3d-Add-a-little-debugfs-entry-for-measuring-the.patch │ │ │ ├── 950-0490-drm-v3d-Update-a-comment-about-what-uses-v3d_job_dep.patch │ │ │ ├── 950-0491-drm-v3d-Clean-up-the-reservation-object-setup.patch │ │ │ ├── 950-0492-drm-v3d-Add-support-for-submitting-jobs-to-the-TFU.patch │ │ │ ├── 950-0493-drm-v3d-Drop-the-dev-argument-to-lock-unlock-of-BO-r.patch │ │ │ ├── 950-0494-drm-v3d-Add-missing-fence-timeline-name-for-TFU.patch │ │ │ ├── 950-0495-drm-v3d-Add-more-tracepoints-for-V3D-GPU-rendering.patch │ │ │ ├── 950-0496-drm-v3d-Drop-unused-v3d_flush_caches.patch │ │ │ ├── 950-0497-drm-v3d-Don-t-bother-flushing-L1TD-at-job-start.patch │ │ │ ├── 950-0498-drm-v3d-Drop-the-wait-for-L2T-flush-to-complete.patch │ │ │ ├── 950-0499-drm-v3d-Stop-trying-to-flush-L2C-on-V3D-3.3.patch │ │ │ ├── 950-0500-drm-v3d-Invalidate-the-caches-from-the-outside-in.patch │ │ │ ├── 950-0501-drm-v3d-Fix-BO-stats-accounting-for-dma-buf-imported.patch │ │ │ ├── 950-0502-drm-v3d-Update-top-level-kerneldoc-for-the-addition-.patch │ │ │ ├── 950-0503-drm-vc4-Fix-oops-at-boot-with-firmwarekms-on-4.19.patch │ │ │ ├── 950-0504-drm-v3d-Add-support-for-V3D-v4.2.patch │ │ │ ├── 950-0505-drm-v3d-Don-t-try-to-set-OVRTMUOUT-on-V3D-4.x.patch │ │ │ ├── 950-0506-drm-v3d-Make-sure-the-GPU-is-on-when-measuring-clock.patch │ │ │ ├── 950-0507-drm-v3d-Add-support-for-2711.patch │ │ │ ├── 950-0508-drm-v3d-Skip-MMU-flush-if-the-device-is-currently-of.patch │ │ │ ├── 950-0509-drm-v3d-Hook-up-the-runtime-PM-ops.patch │ │ │ ├── 950-0510-drm-v3d-HACK-gut-runtime-pm-for-now.patch │ │ │ ├── 950-0511-drm-v3d-Update-to-upstream-IRQ-code.patch │ │ │ ├── 950-0512-drm-v3d-Rename-the-fence-signaled-from-IRQs-to-irq_f.patch │ │ │ ├── 950-0513-drm-v3d-Refactor-job-management.patch │ │ │ ├── 950-0514-drm-v3d-Add-missing-implicit-synchronization.patch │ │ │ ├── 950-0515-drm-vc4-Fix-synchronization-firmwarekms-against-GL-r.patch │ │ │ ├── 950-0516-drm-vc4-Make-sure-that-vblank-waits-work-without-v3d.patch │ │ │ ├── 950-0517-drm-vc4-Expose-the-format-modifiers-for-firmware-kms.patch │ │ │ ├── 950-0518-drm-vc4-Fix-vblank-timestamping-for-firmwarekms.patch │ │ │ ├── 950-0519-gpu-vc4-fkms-Switch-to-the-newer-mailbox-frame-buffe.patch │ │ │ ├── 950-0520-drm-vc4-Add-an-overlay-plane-to-vc4-firmware-kms.patch │ │ │ ├── 950-0521-drm-vc4-Increase-max-screen-size-to-4096x4096.patch │ │ │ ├── 950-0522-drm-vc4-Add-support-for-multiple-displays-to-fkms.patch │ │ │ ├── 950-0523-drm-vc4-Fix-build-warning.patch │ │ │ ├── 950-0524-drm-vc4-Select-display-to-blank-during-initialisatio.patch │ │ │ ├── 950-0525-drm-vc4-Remove-now-unused-structure.patch │ │ │ ├── 950-0526-drm-vc4-Query-the-display-ID-for-each-display-in-FKM.patch │ │ │ ├── 950-0527-drm-vc4-Set-the-display-number-when-querying-the-dis.patch │ │ │ ├── 950-0528-drm-vc4-Need-to-call-drm_crtc_vblank_-on-off-from-vc.patch │ │ │ ├── 950-0529-drm-vc4-Add-support-for-H-V-flips-on-each-plane-for-.patch │ │ │ ├── 950-0530-drm-vc4-Remove-unused-vc4_fkms_cancel_page_flip-func.patch │ │ │ ├── 950-0531-drm-vc4-Iterate-over-all-planes-in-vc4_crtc_-dis-en-.patch │ │ │ ├── 950-0532-drm-vc4-Bring-fkms-into-line-with-kms-in-blocking-do.patch │ │ │ ├── 950-0533-drm-vc4-Increase-max_width-height-to-7680.patch │ │ │ ├── 950-0534-drm-vc4-FKMS-reads-the-EDID-from-fw-and-supports-mod.patch │ │ │ ├── 950-0535-clk-bcm2835-Add-support-for-setting-leaf-clock-rates.patch │ │ │ ├── 950-0536-clk-bcm2835-Allow-reparenting-leaf-clocks-while-they.patch │ │ │ ├── 950-0537-drm-v3d-Add-support-for-compute-shader-dispatch.patch │ │ │ ├── 950-0538-drm-v3d-Clock-V3D-down-when-not-in-use.patch │ │ │ ├── 950-0539-drm-vc4-firmware-kms-Remove-incorrect-overscan-suppo.patch │ │ │ ├── 950-0540-drm-vc4-Log-flags-in-fkms-mode-set.patch │ │ │ ├── 950-0541-drm-vc4-firmware-kms-Fix-DSI-display-support.patch │ │ │ ├── 950-0542-drm-vc4-Probe-DPI-DSI-timings-from-the-firmware.patch │ │ │ ├── 950-0543-drm-vc4-handle-the-case-where-there-are-no-available.patch │ │ │ ├── 950-0544-drm-vc4-Support-the-VEC-in-FKMS.patch │ │ │ ├── 950-0545-drm-vc4-Fixup-typo-when-setting-HDMI-aspect-ratio.patch │ │ │ ├── 950-0546-drm-vc4-Correct-SAND-support-for-FKMS.patch │ │ │ ├── 950-0547-drm-vc4-fkms-to-query-the-VPU-for-HDMI-clock-limits.patch │ │ │ ├── 950-0548-drm-vc4-Max-resolution-of-7680-is-conditional-on-bei.patch │ │ │ ├── 950-0549-staging-vc-sm-cma-Remove-obsolete-comment-and-make-f.patch │ │ │ ├── 950-0550-staging-vc-sm-cma-Add-in-allocation-for-VPU-requests.patch │ │ │ ├── 950-0551-staging-vc-sm-cma-Update-TODO.patch │ │ │ ├── 950-0552-staging-vc-sm-cma-Add-in-userspace-allocation-API.patch │ │ │ ├── 950-0553-staging-vcsm-cma-Add-cache-control-ioctls.patch │ │ │ ├── 950-0554-staging-vcsm-cma-Alter-dev-node-permissions-to-0666.patch │ │ │ ├── 950-0555-staging-vcsm-cma-Drop-logging-level-on-messages-in-v.patch │ │ │ ├── 950-0556-staging-vcsm-cma-Fixup-the-alloc-code-handling-of-ke.patch │ │ │ ├── 950-0557-Pulled-in-the-multi-frame-buffer-support-from-the-Pi.patch │ │ │ ├── 950-0558-ARM-dts-bcm283x-Move-BCM2835-6-7-specific-to-bcm2835.patch │ │ │ ├── 950-0559-ARM-dts-Add-bcm2711-rpi-4-b.dts-and-components.patch │ │ │ ├── 950-0560-overlays-Add-i2c3-6-and-uart2-5-overlays.patch │ │ │ ├── 950-0561-spi-devicetree-add-overlays-for-spi-3-to-6.patch │ │ │ ├── 950-0562-overlays-Add-the-spi-gpio40-45-overlay.patch │ │ │ ├── 950-0563-config-Permit-LPAE-and-PCIE_BRCMSTB-on-BCM2835.patch │ │ │ ├── 950-0564-2711-Add-basic-64-bit-support.patch │ │ │ ├── 950-0565-ARM-dts-bcm283x-Correct-vchiq-compatible-string-2840.patch │ │ │ ├── 950-0566-arm-dts-Change-downstream-vchiq-compatible-string.patch │ │ │ ├── 950-0567-bcm2835-dma-Add-proper-40-bit-DMA-support.patch │ │ │ ├── 950-0568-BCM270X_DT-Leave-bulk-channel-in-dma-channel-mask.patch │ │ │ ├── 950-0569-SQUASH-bcm2835-dma-Remove-debugging.patch │ │ │ ├── 950-0570-dts-Include-CSI-lane-config-for-csi1.patch │ │ │ ├── 950-0571-drm-vc4-Fix-T-format-modifiers-in-FKMS.patch │ │ │ ├── 950-0572-bcm2711-dts-Disable-the-v3d-node-by-default.patch │ │ │ ├── 950-0573-drm-vc4-Remove-340MHz-clock-limit-from-FKMS-now-scra.patch │ │ │ ├── 950-0574-usb-add-plumbing-for-updating-interrupt-endpoint-int.patch │ │ │ ├── 950-0575-xhci-implement-xhci_fixup_endpoint-for-interval-adju.patch │ │ │ ├── 950-0576-usbhid-call-usb_fixup_endpoint-after-mangling-interv.patch │ │ │ ├── 950-0577-drm-vc4-Add-status-of-which-display-is-updated-throu.patch │ │ │ ├── 950-0578-drm-vc4-In-FKMS-look-at-the-modifiers-correctly-for-.patch │ │ │ ├── 950-0579-arm-dts-Fix-Pi4-PWR-LED-configuration.patch │ │ │ ├── 950-0580-bcm2838.dtsi-Correct-gic400-memory-address-ranges.patch │ │ │ ├── 950-0581-staging-vchiq-Use-the-old-dma-controller-for-OF-conf.patch │ │ │ ├── 950-0582-drm-vc4-Limit-fkms-to-modes-85Hz.patch │ │ │ ├── 950-0583-arm-bcm2835-Add-bcm2838-compatible-string.patch │ │ │ ├── 950-0584-arm-dts-Improve-the-bcm27xx-inclusion-hierarchy.patch │ │ │ ├── 950-0585-arm-dts-First-draft-of-upstream-Pi4-DTS.patch │ │ │ ├── 950-0586-overlays-Fix-compatible-string-for-ds1307-RTC.patch │ │ │ ├── 950-0587-overlays-Fix-further-maxim-ds1307-references.patch │ │ │ ├── 950-0588-overlays-Cosmetic-change-to-upstream-overlay.patch │ │ │ ├── 950-0589-w1-ds2805-rename-w1_family-struct-fixing-c-p-typo.patch │ │ │ ├── 950-0590-w1-ds2413-output_write-cosmetic-fixes-simplify.patch │ │ │ ├── 950-0591-w1-ds2413-add-retry-support-to-state_read.patch │ │ │ ├── 950-0592-w1-ds2413-when-the-slave-is-not-responding-during-re.patch │ │ │ ├── 950-0593-w1-ds2413-fix-state-byte-comparision.patch │ │ │ ├── 950-0594-drm-vc4_dsi-Fix-DMA-channel-and-memory-leak-in-vc4-3.patch │ │ │ ├── 950-0595-video-bcm2708_fb-Revert-cma-allocation-attempt.patch │ │ │ ├── 950-0596-drm-vc4-Add-support-for-color-encoding-on-YUV-planes.patch │ │ │ ├── 950-0597-arm-dts-Add-coherent_pool-1M-to-Pi-4-bootargs.patch │ │ │ ├── 950-0598-overlays-Correct-gpio-fan-gpio-flags-for-4.19.patch │ │ │ ├── 950-0599-staging-vcsm-cma-Remove-cache-manipulation-ioctl-fro.patch │ │ │ ├── 950-0600-staging-vcsm-cma-Rework-to-use-dma-APIs-not-CMA.patch │ │ │ ├── 950-0601-staging-vc-sm-cma-Fix-the-few-remaining-coding-style.patch │ │ │ ├── 950-0602-media-videodev2.h-add-new-capabilities-for-buffer-ty.patch │ │ │ ├── 950-0603-media-vb2-set-reqbufs-create_bufs-capabilities.patch │ │ │ ├── 950-0604-media-vb2-Allow-reqbufs-0-with-in-use-MMAP-buffers.patch │ │ │ ├── 950-0605-overlays-Add-real-parameters-to-the-rpi-poe-overlay.patch │ │ │ ├── 950-0606-overlays-Rename-pi3-overlays-to-be-less-model-specif.patch │ │ │ ├── 950-0607-i2c-bcm2835-Move-IRQ-request-after-clock-code-in-pro.patch │ │ │ ├── 950-0608-i2c-bcm2835-Ensure-clock-exists-when-probing.patch │ │ │ ├── 950-0609-overlays-i2c-gpio-Fix-the-bus-parameter.patch │ │ │ ├── 950-0610-tty-amba-pl011-Make-TX-optimisation-conditional.patch │ │ │ ├── 950-0611-xhci-add-quirk-for-host-controllers-that-don-t-updat.patch │ │ │ ├── 950-0612-i2c-bcm2835-Set-clock-stretch-timeout-to-35ms.patch │ │ │ ├── 950-0613-arm64-bcm2835-Add-missing-dependency-on-MFD_CORE.patch │ │ │ ├── 950-0614-overlays-Add-PCF2129-RTC.patch │ │ │ ├── 950-0615-overlays-dpi18-and-dpi24-vc4-compatibility.patch │ │ │ ├── 950-0616-overlays-Add-i2c0-and-i2c1-for-regularity.patch │ │ │ ├── 950-0617-Pisound-Remove-spinlock-usage-around-spi_sync.patch │ │ │ ├── 950-0618-arm64-mm-Limit-the-DMA-zone-for-arm64.patch │ │ │ ├── 950-0619-drm-vc4-Query-firmware-for-custom-HDMI-mode.patch │ │ │ ├── 950-0620-drm-vc4-Pass-the-drm-vrefresh-to-the-firmware-on-mod.patch │ │ │ ├── 950-0621-overlays-audremap-Support-GPIOs-18-19.patch │ │ │ ├── 950-0622-drm-connector-Fix-drm_mode_create_tv_properties-doc.patch │ │ │ ├── 950-0623-drm-connector-Clarify-the-unit-of-TV-margins.patch │ │ │ ├── 950-0624-drm-connector-Allow-creation-of-margin-props-alone.patch │ │ │ ├── 950-0625-drm-vc4-Take-margin-setup-into-account-when-updating.patch │ │ │ ├── 950-0626-drm-vc4-Attach-margin-props-to-the-HDMI-connector.patch │ │ │ ├── 950-0627-drm-vc4-Add-support-for-margins-to-fkms.patch │ │ │ ├── 950-0628-drm-vc4-Ensure-zpos-is-always-initialised.patch │ │ │ ├── 950-0629-dts-bcm2838-add-missing-properties-for-pmu-and-gic-n.patch │ │ │ ├── 950-0630-adds-the-Hifiberry-DAC-ADC-PRO-version.patch │ │ │ ├── 950-0631-codecs-Correct-Katana-minimum-volume.patch │ │ │ ├── 950-0632-drm-vc4-A-present-but-empty-dmas-disables-audio.patch │ │ │ ├── 950-0633-overlays-Add-audio-parameter-to-vc4-kms-v3d.patch │ │ │ ├── 950-0634-overlays-Update-the-upstream-overlay.patch │ │ │ ├── 950-0635-Fixup-FKMS-interrupt-handing-for-non-existent-displa.patch │ │ │ ├── 950-0636-drivers-char-Use-correct-name-for-the-Raspberry-Pi-v.patch │ │ │ ├── 950-0637-driver-char-rpivid-also-support-legacy-name.patch │ │ │ ├── 950-0638-hid-usb-Add-device-quirks-for-Freeway-Airmouse-T3-an.patch │ │ │ ├── 950-0639-drm-vc4-Add-Broadcast-RGB-connector-property.patch │ │ │ ├── 950-0640-drm-connector-Add-documentation-for-drm_cmdline_mode.patch │ │ │ ├── 950-0641-drm-modes-Rewrite-the-command-line-parser.patch │ │ │ ├── 950-0642-drm-modes-Support-modes-names-on-the-command-line.patch │ │ │ ├── 950-0643-drm-modes-Allow-to-specify-rotation-and-reflection-o.patch │ │ │ ├── 950-0644-drm-connector-Introduce-a-TV-margins-structure.patch │ │ │ ├── 950-0645-drm-modes-Parse-overscan-properties.patch │ │ │ ├── 950-0646-drm-atomic-Add-a-function-to-reset-connector-TV-prop.patch │ │ │ ├── 950-0647-drm-vc4-hdmi-Set-default-state-margin-at-reset.patch │ │ │ ├── 950-0648-drm-vc4-fkms-Set-default-state-margin-at-reset.patch │ │ │ ├── 950-0649-drm-modes-Don-t-apply-cmdline-s-rotation-if-it-wasn-.patch │ │ │ ├── 950-0650-staging-bcm2835-codec-switch-to-multi-planar-API.patch │ │ │ ├── 950-0651-staging-bcm2835-codec-implement-V4L2_CID_MIN_BUFFERS.patch │ │ │ ├── 950-0652-staging-bcm2835-codec-set-device_caps-in-struct-vide.patch │ │ │ ├── 950-0653-Add-HDMI1-facility-to-the-driver.patch │ │ │ ├── 950-0654-overlays-Add-baudrate-parameter-to-i2c3-i2c6.patch │ │ │ ├── 950-0655-drm-vc4-Resolve-the-vblank-warnings-on-mode-switchin.patch │ │ │ ├── 950-0656-drm-vc4-Remove-unused-mode-variable.patch │ │ │ ├── 950-0657-staging-bcm2835-codec-Expand-logging-on-format-setti.patch │ │ │ ├── 950-0658-staging-bcm2835-codec-Correct-bytesperline-on-format.patch │ │ │ ├── 950-0659-drm-vc4-Add-missing-NULL-check-to-vc4_crtc_consume_e.patch │ │ │ ├── 950-0660-net-bcmgenet-Workaround-2-for-Pi4-Ethernet-fail.patch │ │ │ ├── 950-0661-drm-vc4-Fix-TILE_Y_OFFSET-definitions.patch │ │ │ ├── 950-0662-drm-vc4-Define-missing-PITCH0_SINK_PIX-field.patch │ │ │ ├── 950-0663-drm-vc4-Use-drm_atomic_helper_check_plane_state-to-s.patch │ │ │ ├── 950-0664-drm-vc4-Move-offsets-adjustment-out-of-setup_clippin.patch │ │ │ ├── 950-0665-drm-vc4-Fix-X-Y-positioning-of-planes-using-T_TILES-.patch │ │ │ ├── 950-0666-drm-vc4-Fix-NULL-pointer-dereference-in-the-async-up.patch │ │ │ ├── 950-0667-ARM-dts-bcm2711-rpi-4-b-I2C-aliases-and-pulls.patch │ │ │ ├── 950-0668-xhci-Use-more-event-ring-segment-table-entries.patch │ │ │ ├── 950-0669-dwc_otg-use-align_buf-for-small-IN-control-transfers.patch │ │ │ ├── 950-0670-Ported-pcie-brcmstb-bounce-buffer-implementation-to-.patch │ │ │ ├── 950-0671-configs-arm64-vcm2711-Enable-V3D.patch │ │ │ ├── 950-0672-overlays-sc16ic752-i2c-Fix-xtal-parameter.patch │ │ │ ├── 950-0673-vc-sm-cma-Fix-compatibility-ioctl.patch │ │ │ ├── 950-0674-staging-bcm2835-codec-add-support-for-V4L2_CID_MPEG_.patch │ │ │ ├── 950-0675-staging-bcm2835-codec-remove-unnecessary-padding-on-.patch │ │ │ ├── 950-0676-arm-dts-add-missing-Raspberry-Pi-model-names.patch │ │ │ ├── 950-0677-arch-arm-Add-model-string-to-cpuinfo.patch │ │ │ ├── 950-0678-arch-arm64-Add-Revision-Serial-Model-to-cpuinfo.patch │ │ │ ├── 950-0679-media-dt-bindings-Add-binding-for-the-Sony-IMX219-se.patch │ │ │ ├── 950-0680-media-i2c-Add-driver-for-Sony-IMX219-sensor.patch │ │ │ ├── 950-0681-dtoverlays-Add-overlay-for-the-Sony-IMX219-image-sen.patch │ │ │ ├── 950-0682-staging-bcm2835-codec-Fix-non-documentation-comment-.patch │ │ │ ├── 950-0683-staging-bcm2835-codec-Fix-declaration-of-roles.patch │ │ │ ├── 950-0684-staging-bcm2835-codec-Add-role-to-device-name.patch │ │ │ ├── 950-0685-staging-bcm2835-codec-Pass-driver-context-to-create-.patch │ │ │ ├── 950-0686-staging-bcm2835-codec-add-media-controller-support.patch │ │ │ ├── 950-0687-media-bcm2835-unicam-Reduce-scope-of-local-function.patch │ │ │ ├── 950-0688-media-bcm2835-unicam-add-media-controller-support.patch │ │ │ ├── 950-0689-Limit-max_req_size-under-arm64-or-any-other-platform.patch │ │ │ ├── 950-0690-Add-missing-dma_unmap_sg-calls-to-free-relevant-swio.patch │ │ │ ├── 950-0691-overlays-mcp23017-rename-the-GPIO-pins-node-with-the.patch │ │ │ ├── 950-0692-overlays-mcp23017-Add-option-for-not-connecting-the-.patch │ │ │ ├── 950-0693-v4l2-Add-a-Greyworld-AWB-mode.patch │ │ │ ├── 950-0694-staging-bcm2835-camera-Add-greyworld-AWB-mode.patch │ │ │ ├── 950-0695-PCI-brcmstb-Fix-compilation-warning.patch │ │ │ ├── 950-0696-drm-vc4-Fix-for-margins-in-composite-SDTV-mode-3223.patch │ │ │ ├── 950-0697-Add-Hifiberry-DAC-DSP-soundcard-driver-3224.patch │ │ │ ├── 950-0698-staging-bcm2835-codec-Allow-height-of-1920.patch │ │ │ ├── 950-0699-staging-bcm2835-codec-Correct-g-s_selection-API-MPLA.patch │ │ │ ├── 950-0700-regulator-gpio-Allow-nonexclusive-GPIO-access.patch │ │ │ ├── 950-0701-gpio-Enable-nonexclusive-gpiods-from-DT-nodes.patch │ │ │ ├── 950-0702-Fix-poll-rate-on-touchscreen-3238.patch │ │ │ ├── 950-0703-dts-Add-DTS-for-Pi-2B-rev-1.2-with-BCM2837-3235.patch │ │ │ ├── 950-0704-drm-v3d-clean-caches-at-the-end-of-render-jobs-on-re.patch │ │ │ ├── 950-0705-staging-bcm2835-audio-Fix-draining-behavior-regressi.patch │ │ │ ├── 950-0706-bcm2708_fb-Fix-layout-of-struct-vc4_display_settings.patch │ │ │ ├── 950-0707-ARM-dts-bcm283x-Fix-DTC-warning-for-memory-node.patch │ │ │ ├── 950-0708-ARM-dts-bcm27xx-Fix-DTC-warning-for-memory-node.patch │ │ │ ├── 950-0709-ARM-bcm283x-Enable-DMA-support-for-SPI-controller.patch │ │ │ ├── 950-0710-ARM-dts-bcm2835-rpi-Drop-unnecessary-address-cells-s.patch │ │ │ ├── 950-0711-ARM-dts-bcm2708-rpi-Define-the-downstream-MMC-interf.patch │ │ │ ├── 950-0712-ARM-dts-bcm283x-Define-MMC-interfaces-at-board-level.patch │ │ │ ├── 950-0713-ARM-dts-bcm2835-rpi-zero-w-Fix-bus-width-of-sdhci.patch │ │ │ ├── 950-0714-ARM-dts-bcm2708-rpi-Define-the-downstream-HDMI-power.patch │ │ │ ├── 950-0715-ARM-dts-bcm283x-Enable-HDMI-at-board-level.patch │ │ │ ├── 950-0716-clk-bcm2835-Introduce-SoC-specific-clock-registratio.patch │ │ │ ├── 950-0717-clk-bcm2835-Add-BCM2711_CLOCK_EMMC2-support.patch │ │ │ ├── 950-0718-ARM-bcm-Switch-board-clk-and-pinctrl-to-bcm2711-comp.patch │ │ │ ├── 950-0719-pinctrl-bcm2835-Switch-to-SPDX-identifier.patch │ │ │ ├── 950-0720-pinctrl-bcm2835-declare-pin-config-as-generic.patch │ │ │ ├── 950-0721-pinctrl-bcm2835-Direct-GPIO-config-changes-to-generi.patch │ │ │ ├── 950-0722-pinctrl-bcm2835-Add-support-for-BCM2711-pull-up-func.patch │ │ │ ├── 950-0723-Rename-HDMI-ALSA-device-names-check-for-enable-state.patch │ │ │ ├── 950-0724-pcie-brcmstb-bounce64.c-dev_err-dev_info-for-info-me.patch │ │ │ ├── 950-0725-overlays-gpio-shutdown-Add-debounce-parameter.patch │ │ │ ├── 950-0726-overlays-fix-compatible-for-RPi4.patch │ │ │ ├── 950-0727-bcm2711-Retain-support-for-old-dtbs.patch │ │ │ ├── 950-0728-media-bcm2835-unicam-Add-support-for-raw14-formats.patch │ │ │ ├── 950-0729-media-bcm2835-unicam-Rework-to-not-cache-the-list-of.patch │ │ │ ├── 950-0730-media-bcm2835-unicam-Support-unpacking-CSI-format-to.patch │ │ │ ├── 950-0731-media-bcm2835-unicam-Add-support-for-luma-greyscale-.patch │ │ │ ├── 950-0732-drm-vc4-Add-support-for-YUV-color-encodings-and-rang.patch │ │ │ ├── 950-0733-drm-vc4-Fix-negative-X-Y-positioning-on-SAND-planes.patch │ │ │ ├── 950-0734-drm-vc4-Add-support-for-H-V-flips.patch │ │ │ ├── 950-0735-drm-vc4-Correct-handling-of-rotation-parameter-in-fk.patch │ │ │ ├── 950-0736-overlays-Add-w5500-overlay.patch │ │ │ ├── 950-0737-media-bcm2835-unicam-Replace-hard-coded-loop-limit-w.patch │ │ │ ├── 950-0738-media-bcm2835-unicam-Fix-one-to-many-mapping-for-YUY.patch │ │ │ ├── 950-0739-dt-bindings-Add-binding-for-the-Infineon-IRS1125-sen.patch │ │ │ ├── 950-0740-media-i2c-Add-a-driver-for-the-Infineon-IRS1125-dept.patch │ │ │ ├── 950-0741-dtoverlays-Add-an-overlay-for-the-Infineon-IRS1125.patch │ │ │ ├── 950-0742-rpi-wm8804-soundcard-Fixed-MCLKDIV-for-Allo-Digione.patch │ │ │ ├── 950-0743-dts-bcm2838-Disable-DWC-OTG-block-by-default.patch │ │ │ ├── 950-0744-staging-bcm2835-codec-Add-support-for-ENUM_FRAMESIZE.patch │ │ │ ├── 950-0745-staging-bcm2835-codec-Correct-buffer-type-check-on-G.patch │ │ │ ├── 950-0746-staging-bcm2835-codec-Set-default-and-error-check-ti.patch │ │ │ ├── 950-0747-staging-bcm2835-codec-Fix-imbalance-in-dma_buf_get-d.patch │ │ │ ├── 950-0748-drm-vc4-Added-calls-for-firmware-display-blank-unbla.patch │ │ │ ├── 950-0749-rpi-poe-fan-fix-def_pwm1-writes.patch │ │ │ ├── 950-0750-net-phy-bcm54xx-Encode-link-speed-and-activity-into-.patch │ │ │ ├── 950-0751-net-phy-2711-Allow-ethernet-LED-mode-to-be-set-via-d.patch │ │ │ ├── 950-0752-overlays-smi-fix-typo-in-comment-3320.patch │ │ │ ├── 950-0753-net-phy-2711-Change-the-default-ethernet-LED-actions.patch │ │ │ ├── 950-0754-overlays-README-Remove-trailing-whitespace.patch │ │ │ ├── 950-0755-overlays-Add-apds9960-overlay.patch │ │ │ ├── 950-0756-arm-dts-overlays-pitft35-resistive-add-upstream-comp.patch │ │ │ ├── 950-0757-clk-bcm2835-Avoid-null-pointer-exception.patch │ │ │ ├── 950-0758-v3d_drv-Handle-missing-clock-more-gracefully.patch │ │ │ ├── 950-0759-cpufreq-scpi-scmi-Fix-freeing-of-dynamic-OPPs.patch │ │ │ ├── 950-0760-clk-bcm283x-add-driver-interfacing-with-Raspberry-Pi.patch │ │ │ ├── 950-0761-cpufreq-add-driver-for-Raspberry-Pi.patch │ │ │ ├── 950-0762-firmware-raspberrypi-register-clk-device.patch │ │ │ ├── 950-0763-clk-raspberrypi-register-platform-device-for-raspber.patch │ │ │ ├── 950-0764-clk-bcm2835-remove-pllb.patch │ │ │ ├── 950-0765-v3d_drv-Allow-clock-retrieval-by-name.patch │ │ │ ├── 950-0766-v3d_gem-Kick-the-clock-so-firmware-knows-we-are-usin.patch │ │ │ ├── 950-0767-clk-raspberrypi-Allow-cpufreq-driver-to-also-adjust-.patch │ │ │ ├── 950-0768-clk-raspberrypi-Also-support-v3d-clock.patch │ │ │ ├── 950-0769-clk-bcm2835-Disable-v3d-clock.patch │ │ │ ├── 950-0770-fixup-clk-raspberrypi-Also-support-v3d-clock.patch │ │ │ ├── 950-0771-fixup-clk-raspberrypi-Also-support-v3d-clock.patch │ │ │ ├── 950-0772-raspberrypi-cpufreq-Only-report-integer-pll-divisor-.patch │ │ │ ├── 950-0773-fixup-clk-raspberrypi-Also-support-v3d-clock.patch │ │ │ ├── 950-0774-arm-dts-Correct-Pi-4B-LED-values.patch │ │ │ ├── 950-0775-drm-v3d-Set-dma_mask-as-well-as-coherent_dma_mask.patch │ │ │ ├── 950-0776-arm-dts-2711-Add-pcie0-alias.patch │ │ │ ├── 950-0777-spidev-Completely-disable-the-DT-warning.patch │ │ │ ├── 950-0778-drm-vc4-Disable-V3D-interactions-if-the-v3d-componen.patch │ │ │ ├── 950-0779-sound-soc-only-first-codec-is-master-in-multicodec-s.patch │ │ │ ├── 950-0780-Allow-simultaneous-use-of-JustBoom-DAC-and-Digi.patch │ │ │ ├── 950-0781-dwc_otg-checking-the-urb-transfer_buffer-too-early-3.patch │ │ │ ├── 950-0782-overlays-Make-mcp342x-run-time-compatible.patch │ │ │ ├── 950-0783-overlays-dht11-Allow-multiple-instantiation.patch │ │ │ └── 950-0784-overlays-i2c-rtc-Add-pcf85363-support.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 │ │ │ ├── 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 │ │ │ ├── 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.19 │ │ ├── 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.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.19 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── etc │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix-checksum │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_set_ether_mac_gemini │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── image │ │ │ ├── ImageInfo-itian_sq201 │ │ │ ├── ImageInfo-raidsonic_ib-4220-b │ │ │ ├── ImageInfo-storlink_sl93512r │ │ │ ├── Makefile │ │ │ ├── copy-kernel │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── copy-kernel.S │ │ │ └── dns313_gen_hdd_img.sh │ │ ├── patches-4.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 │ │ │ ├── 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 │ │ │ ├── 0003-pinctrl-gemini-Drop-noisy-debug-prints.patch │ │ │ ├── 0005-mtd-physmap_of-Move-custom-initialization.patch │ │ │ ├── 0006-mtd-physmap_of_gemini-Handle-pin-control.patch │ │ │ ├── 0008-ARM-dts-Enable-Gemini-flash-access.patch │ │ │ ├── 0009-mtd-partitions-Add-RedBoot-FIS-DT-bindings.patch │ │ │ ├── 0010-mtd-partitions-Add-second-compatible-for-redboot.patch │ │ │ ├── 0011-ARM-dts-Fix-up-SQ201-flash-access.patch │ │ │ ├── 0012-ARM-dts-Blank-D-Link-DIR-685-console.patch │ │ │ ├── 0013-usb-host-fotg2-add-silicon-clock-handling.patch │ │ │ ├── 0014-usb-host-add-DT-bindings-for-faraday-fotg2.patch │ │ │ ├── 0015-usb-host-fotg2-add-device-tree-probing.patch │ │ │ ├── 0016-usb-host-fotg2-add-Gemini-specific-handling.patch │ │ │ ├── 0018-ARM-dts-Add-the-FOTG210-USB-host-to-Gemini-boards.patch │ │ │ ├── 0019-ARM-dts-gemini-Indent-DIR-685-partition-table.patch │ │ │ ├── 0020-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch │ │ │ ├── 0022-RM-dts-gemini-Switch-to-redboot-partition-parsing.patch │ │ │ ├── 0023-ARM-dts-gemini-Mount-root-from-mtdblock3.patch │ │ │ └── 0024-ARM-dts-gemini-Fix-up-confused-pin-settings.patch │ ├── 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 │ │ │ ├── 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-nft_flow_offload-Fix-reverse-route-lookup.patch │ │ │ ├── 367-v4.18-netfilter-nf_flow_table-add-missing-condition-for-TC.patch │ │ │ ├── 368-v4.18-netfilter-nf_flow_table-fix-offloading-connections-w.patch │ │ │ ├── 369-v4.18-netfilter-nf_flow_table-attach-dst-to-skbs.patch │ │ │ ├── 370-netfilter-nf_flow_table-fix-offloaded-connection-tim.patch │ │ │ ├── 371-netfilter-nf_flow_table-fix-up-ct-state-of-flows-aft.patch │ │ │ ├── 372-netfilter-nft_flow_offload-fix-interaction-with-vrf-.patch │ │ │ ├── 380-v5.3-net-sched-Introduce-act_ctinfo-action.patch │ │ │ ├── 400-v4.16-leds-trigger-Introduce-a-NETDEV-trigger.patch │ │ │ ├── 401-v5.2-leds-trigger-netdev-fix-refcnt-leak-on-interface-ren.patch │ │ │ ├── 402-leds-trigger-netdev-fix-handling-on-interface-rename.patch │ │ │ ├── 420-enable-CONFIG_MMC_SDHCI_IO_ACCESSORS.patch │ │ │ ├── 500-v4.20-ubifs-Fix-default-compression-selection-in-ubifs.patch │ │ │ ├── 900-v4.18-firmware-dmi-Add-access-to-the-SKU-ID-string.patch │ │ │ └── 950-tty-serial-exar-generalize-rs485-setup.patch │ │ ├── backport-4.19 │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ ├── 020-backport_netfilter_rtcache.patch │ │ │ ├── 047-v4.21-mtd-keep-original-flags-for-every-struct-mtd_info.patch │ │ │ ├── 048-v4.21-mtd-improve-calculating-partition-boundaries-when-ch.patch │ │ │ ├── 080-v5.1-0001-bcma-keep-a-direct-pointer-to-the-struct-device.patch │ │ │ ├── 080-v5.1-0002-bcma-use-dev_-printing-functions.patch │ │ │ ├── 095-Allow-class-e-address-assignment-via-ifconfig-ioctl.patch │ │ │ ├── 101-arm-cns3xxx-use-actual-size-reads-for-PCIe.patch │ │ │ ├── 200-v5.2-usb-dwc2-Set-lpm-mode-parameters-depend-on-HW-configuration.patch │ │ │ ├── 210-arm64-sve-Disentangle-uapi-asm-ptrace.h-from-uapi-as.patch │ │ │ ├── 343-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 370-netfilter-nf_flow_table-fix-offloaded-connection-tim.patch │ │ │ ├── 371-netfilter-nf_flow_table-fix-up-ct-state-of-flows-aft.patch │ │ │ ├── 380-v5.3-net-sched-Introduce-act_ctinfo-action.patch │ │ │ ├── 450-v5.0-mtd-spinand-winbond-Add-support-for-W25N01GV.patch │ │ │ ├── 451-v5.0-mtd-spinand-Add-initial-support-for-Toshiba-TC58CVG2.patch │ │ │ ├── 452-v5.0-mtd-spinand-add-support-for-GigaDevice-GD5FxGQ4xA.patch │ │ │ ├── 455-v5.1-mtd-spinand-Add-support-for-all-Toshiba-Memory-produ.patch │ │ │ ├── 456-v5.1-mtd-spinand-Add-support-for-GigaDevice-GD5F1GQ4UExxG.patch │ │ │ ├── 460-v5.0-mtd-spi-nor-Add-support-for-mx25u12835f.patch │ │ │ ├── 460-v5.3-mtd-spinand-Define-macros-for-page-read-ops-with-thr.patch │ │ │ ├── 461-v5.3-mtd-spinand-Add-support-for-two-byte-device-IDs.patch │ │ │ ├── 462-v5.3-mtd-spinand-Add-support-for-GigaDevice-GD5F1GQ4UFxxG.patch │ │ │ └── 463-v5.3-mtd-spinand-Add-initial-support-for-Paragon-PN26G0xA.patch │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── files │ │ │ ├── Documentation │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── drivers │ │ │ │ ├── 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 │ │ │ ├── 204-module_strip.patch │ │ │ ├── 207-disable-modorder.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-host_tools_portability.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 280-rfkill-stubs.patch │ │ │ ├── 300-MIPS-r4k_cache-use-more-efficient-cache-blast.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 400-mt29f_spinand-fix-memleak.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.patch │ │ │ ├── 645-netfilter-connmark-introduce-savedscp.patch │ │ │ ├── 647-netfilter-flow-acct.patch │ │ │ ├── 650-netfilter-add-xt_OFFLOAD-target.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-use_fq_codel_by_default.patch │ │ │ ├── 662-remove_pfifo_fast.patch │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ ├── 910-kobject_uevent.patch │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ ├── 921-always-create-console-node-in-initramfs.patch │ │ │ └── 930-crashlog.patch │ │ ├── hack-4.19 │ │ │ ├── 204-module_strip.patch │ │ │ ├── 207-disable-modorder.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 280-rfkill-stubs.patch │ │ │ ├── 290-nvmem-make-CONFIG_NVMEM-tristate-again.patch │ │ │ ├── 300-MIPS-r4k_cache-use-more-efficient-cache-blast.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 550-loop-Report-EOPNOTSUPP-properly.patch │ │ │ ├── 551-loop-Better-discard-support-for-block-devices.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.patch │ │ │ ├── 645-netfilter-connmark-introduce-savedscp.patch │ │ │ ├── 647-netfilter-flow-acct.patch │ │ │ ├── 650-netfilter-add-xt_OFFLOAD-target.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-use_fq_codel_by_default.patch │ │ │ ├── 662-remove_pfifo_fast.patch │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ ├── 910-kobject_uevent.patch │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ ├── 921-always-create-console-node-in-initramfs.patch │ │ │ └── 930-crashlog.patch │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── initramfs-base-files.txt │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── lzma-copy.lds.in │ │ │ │ │ ├── lzma.lds.in │ │ │ │ │ ├── print.c │ │ │ │ │ ├── print.h │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── start.S │ │ │ │ │ ├── uart16550.c │ │ │ │ │ └── uart16550.h │ │ │ └── relocate │ │ │ │ ├── Makefile │ │ │ │ ├── cacheops.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ └── loader.lds │ │ ├── other-files │ │ │ └── init │ │ ├── pending-4.14 │ │ │ ├── 0931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-MIPS-perf-ath79-Fix-perfcount-IRQ-assignment.patch │ │ │ ├── 110-ehci_hcd_ignore_oc.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ ├── 131-spi-use-gpio_set_value_cansleep-for-setting-chipsele.patch │ │ │ ├── 140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 141-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 161-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 171-usb-dwc2-Fix-inefficient-copy-of-unaligned-buffers.patch │ │ │ ├── 180-net-phy-at803x-add-support-for-AT8032.patch │ │ │ ├── 190-2-5-e1000e-Fix-wrong-comment-related-to-link-detection.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 220-optimize_inlining.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 261-enable_wilink_platform_without_drivers.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.patch │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ ├── 308-mips32r2_tune.patch │ │ │ ├── 309-MIPS-Add-CPU-option-reporting-to-proc-cpuinfo.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 332-arc-add-OWRTDTB-section.patch │ │ │ ├── 333-arc-enable-unaligned-access-in-kernel-mode.patch │ │ │ ├── 340-MIPS-mm-remove-mips_dma_mapping_error.patch │ │ │ ├── 341-MIPS-mm-remove-no-op-dma_map_ops-where-possible.patch │ │ │ ├── 342-powerpc-Enable-kernel-XZ-compression-option-on-PPC_8.patch │ │ │ ├── 400-mtd-add-rootfs-split-support.patch │ │ │ ├── 401-mtd-add-support-for-different-partition-parser-types.patch │ │ │ ├── 402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch │ │ │ ├── 403-mtd-hook-mtdsplit-to-Kbuild.patch │ │ │ ├── 404-mtd-add-more-helper-functions.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.patch │ │ │ ├── 419-mtd-redboot-add-of_match_table-with-DT-binding.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── pending-4.19 │ │ │ ├── 0931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-MIPS-perf-ath79-Fix-perfcount-IRQ-assignment.patch │ │ │ ├── 110-ehci_hcd_ignore_oc.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ ├── 131-spi-use-gpio_set_value_cansleep-for-setting-chipsele.patch │ │ │ ├── 132-spi-spi-gpio-fix-crash-when-num-chipselects-is-0.patch │ │ │ ├── 140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 141-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 180-net-phy-at803x-add-support-for-AT8032.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 220-optimize_inlining.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 261-enable_wilink_platform_without_drivers.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.patch │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ ├── 308-mips32r2_tune.patch │ │ │ ├── 309-MIPS-Add-CPU-option-reporting-to-proc-cpuinfo.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 332-arc-add-OWRTDTB-section.patch │ │ │ ├── 333-arc-enable-unaligned-access-in-kernel-mode.patch │ │ │ ├── 341-MIPS-mm-remove-no-op-dma_map_ops-where-possible.patch │ │ │ ├── 342-powerpc-Enable-kernel-XZ-compression-option-on-PPC_8.patch │ │ │ ├── 400-mtd-add-rootfs-split-support.patch │ │ │ ├── 401-mtd-add-support-for-different-partition-parser-types.patch │ │ │ ├── 402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch │ │ │ ├── 403-mtd-hook-mtdsplit-to-Kbuild.patch │ │ │ ├── 404-mtd-add-more-helper-functions.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.patch │ │ │ ├── 419-mtd-redboot-add-of_match_table-with-DT-binding.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── 920-mangle_bootargs.patch │ ├── imx6 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── imx6.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── files │ │ │ └── firmware │ │ │ │ └── imx │ │ │ │ └── sdma │ │ │ │ └── sdma-imx6q.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bootscript-apalis │ │ │ ├── bootscript-cubox │ │ │ ├── bootscript-ventana │ │ │ └── recovery-apalis │ │ ├── patches-4.14 │ │ │ ├── 100-bootargs.patch │ │ │ ├── 200-disable-msi.patch │ │ │ ├── 301-apalis-ixora-dts-leds.patch │ │ │ └── 302-apalis-ixora-dts-reset-button.patch │ │ ├── patches-4.19 │ │ │ ├── 100-bootargs.patch │ │ │ ├── 301-apalis-ixora-dts-leds.patch │ │ │ └── 302-apalis-ixora-dts-reset-button.patch │ │ └── profiles │ │ │ └── 100-default.mk │ ├── ipq40xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ ├── init.d │ │ │ │ │ └── bootcount │ │ │ │ └── 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-fritzbox-4040.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-e2600ac-c1.dts │ │ │ │ ├── qcom-ipq4019-e2600ac-c2.dts │ │ │ │ ├── qcom-ipq4019-e2600ac.dtsi │ │ │ │ ├── qcom-ipq4019-ea8300.dts │ │ │ │ ├── qcom-ipq4019-fritzbox-7530.dts │ │ │ │ ├── qcom-ipq4019-fritzrepeater-1200.dts │ │ │ │ ├── qcom-ipq4019-fritzrepeater-3000.dts │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ ├── 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-cs-w3-wd1200g-eup.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-fritzbox-4040.dts │ │ │ │ ├── qcom-ipq4018-jalapeno.dts │ │ │ │ ├── qcom-ipq4018-jalapeno.dtsi │ │ │ │ ├── qcom-ipq4018-meshpoint-one.dts │ │ │ │ ├── qcom-ipq4018-nbg6617.dts │ │ │ │ ├── qcom-ipq4018-rt-ac58u.dts │ │ │ │ ├── qcom-ipq4018-wre6606.dts │ │ │ │ ├── qcom-ipq4019-a62.dts │ │ │ │ ├── qcom-ipq4019-ap.dk04.1-c1.dts │ │ │ │ ├── qcom-ipq4019-ap.dk04.1.dtsi │ │ │ │ ├── qcom-ipq4019-e2600ac-c1.dts │ │ │ │ ├── qcom-ipq4019-e2600ac-c2.dts │ │ │ │ ├── qcom-ipq4019-e2600ac.dtsi │ │ │ │ ├── qcom-ipq4019-ea8300.dts │ │ │ │ ├── qcom-ipq4019-fritzbox-7530.dts │ │ │ │ ├── qcom-ipq4019-fritzrepeater-1200.dts │ │ │ │ ├── qcom-ipq4019-fritzrepeater-3000.dts │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ ├── qcom-ipq4019-u4019-32m.dts │ │ │ │ ├── qcom-ipq4019-u4019.dtsi │ │ │ │ ├── qcom-ipq4019-wpj419.dts │ │ │ │ ├── qcom-ipq4028-wpj428.dts │ │ │ │ ├── qcom-ipq4029-ap-303.dts │ │ │ │ ├── qcom-ipq4029-ap-303h.dts │ │ │ │ ├── qcom-ipq4029-gl-b1300.dts │ │ │ │ └── qcom-ipq4029-mr33.dts │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── 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 │ │ │ ├── 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-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 │ │ │ ├── 090-ipq40xx-fix-high-resolution-timer.patch │ │ │ ├── 181-crypto-qce-add-CRYPTO_ALG_KERN_DRIVER_ONLY-flag.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 │ │ │ ├── 706-ar40xx-abort-probe-on-missig-phy.patch │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ ├── 712-mr33-essedma.patch │ │ │ ├── 713-essedma-alloc-skb-ip-align.patch │ │ │ ├── 714-essedma-add-fix-for-memory-allocation.patch │ │ │ ├── 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 │ │ │ ├── 074-ARM-qcom-Add-IPQ4019-SoC-support.patch │ │ │ ├── 075-dt-bindings-phy-qcom-ipq4019-usb-add-binding-documen.patch │ │ │ ├── 076-phy-qcom-ipq4019-usb-add-driver-for-QCOM-IPQ4019.patch │ │ │ ├── 077-qcom-ipq4019-add-USB-devicetree-nodes.patch │ │ │ ├── 080-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ ├── 081-clk-fix-apss-cpu-overclocking.patch │ │ │ ├── 086-ipq40xx-fix-high-resolution-timer.patch │ │ │ ├── 181-crypto-qce-add-CRYPTO_ALG_KERN_DRIVER_ONLY-flag.patch │ │ │ ├── 303-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ ├── 304-mtd-spi-nor-Add-support-for-mx25r3235f.patch │ │ │ ├── 700-net-add-qualcomm-mdio.patch │ │ │ ├── 701-dts-ipq4019-add-mdio-node.patch │ │ │ ├── 702-dts-ipq4019-add-PHY-switch-nodes.patch │ │ │ ├── 703-net-IPQ4019-needs-rfs-vlan_tag-callbacks-in.patch │ │ │ ├── 705-net-add-qualcomm-ar40xx-phy.patch │ │ │ ├── 706-ar40xx-abort-probe-on-missig-phy.patch │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ ├── 712-mr33-essedma.patch │ │ │ ├── 713-essedma-alloc-skb-ip-align.patch │ │ │ ├── 714-essedma-add-fix-for-memory-allocation.patch │ │ │ ├── 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 │ │ │ │ │ └── bootcount │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ ├── buffalo.sh │ │ │ │ ├── linksys.sh │ │ │ │ ├── platform.sh │ │ │ │ └── zyxel.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── 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 │ │ ├── files-4.19 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq8064-ap148.dts │ │ │ │ ├── qcom-ipq8064-ap161.dts │ │ │ │ ├── qcom-ipq8064-c2600.dts │ │ │ │ ├── qcom-ipq8064-d7800.dts │ │ │ │ ├── qcom-ipq8064-db149.dts │ │ │ │ ├── qcom-ipq8064-ea8500.dts │ │ │ │ ├── qcom-ipq8064-r7500.dts │ │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ │ ├── qcom-ipq8064-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 │ │ ├── generic │ │ │ └── target.mk │ │ ├── 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 │ │ ├── patches-4.19 │ │ │ ├── 0001-dtbindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 0002-dmaengine-Add-ADM-driver.patch │ │ │ ├── 0030-clk-Disable-i2c-device-on-gsbi4.patch │ │ │ ├── 0031-mtd-add-SMEM-parser-for-QCOM-platforms.patch │ │ │ ├── 0032-phy-add-qcom-dwc3-phy.patch │ │ │ ├── 0033-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ ├── 0034-0001-ARM-Add-Krait-L2-register-accessor-functions.patch │ │ │ ├── 0034-0002-clk-qcom-Add-support-for-High-Frequency-PLLs-HFPLLs.patch │ │ │ ├── 0034-0003-clk-qcom-Add-HFPLL-driver.patch │ │ │ ├── 0034-0004-dt-bindings-clock-Document-qcom-hfpll.patch │ │ │ ├── 0034-0005-clk-qcom-Add-MSM8960-APQ8064-s-HFPLLs.patch │ │ │ ├── 0034-0006-clk-qcom-Add-IPQ806X-s-HFPLLs.patch │ │ │ ├── 0034-0007-clk-qcom-Add-support-for-Krait-clocks.patch │ │ │ ├── 0034-0008-clk-qcom-Add-KPSS-ACC-GCC-driver.patch │ │ │ ├── 0034-0009-dt-bindings-arm-Document-qcom-kpss-gcc.patch │ │ │ ├── 0034-0010-clk-qcom-Add-Krait-clock-controller-driver.patch │ │ │ ├── 0034-0011-dt-bindings-clock-Document-qcom-krait-cc.patch │ │ │ ├── 0034-0012-clk-qcom-Add-safe-switch-hook-for-krait-mux-clocks.patch │ │ │ ├── 0035-qcom-cpufreq-nvmem-qcm-kyrp_make_Some_variables_static.patch │ │ │ ├── 0036-qcom-cpufreq-nvmem-Re-organise-kryo-cpufreq-driver.patch │ │ │ ├── 0037-qcom-cpufreq-nvmem-Refactor-the-driver.patch │ │ │ ├── 0038-qcom-cpufreq-nvmem-Add-support-for-krait-based-socs.patch │ │ │ ├── 0049-PM-OPP-Support-adjusting-OPP-voltages-at-runtime.patch │ │ │ ├── 0051-PM-OPP-Add-a-helper-to-get-an-opp-regulator-for-devi.patch │ │ │ ├── 0052-PM-OPP-Update-the-voltage-tolerance-when-adjusting-t.patch │ │ │ ├── 0053-regulator-add-smb208-support.patch │ │ │ ├── 0054-cpufreq-dt-Handle-OPP-voltage-adjust-events.patch │ │ │ ├── 0055-cpufreq-dt-Add-L2-frequency-scaling-support.patch │ │ │ ├── 0056-cpufreq-dt-Add-missing-rcu-locks.patch │ │ │ ├── 0057-add-fab-scaling-support-with-cpufreq.patch │ │ │ ├── 0059-ARM-cpuidle-Add-cpuidle-support-for-QCOM-cpus.patch │ │ │ ├── 0060-HACK-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ ├── 0061-mtd-rootfs-conflicts-with-OpenWrt-auto-mounting.patch │ │ │ ├── 0062-ipq806x-gcc-Added-the-enable-regs-and-mask-for-PRNG.patch │ │ │ ├── 0063-1-ipq806x-tsens-driver.patch │ │ │ ├── 0063-2-tsens-support-configurable-interrupts.patch │ │ │ ├── 0063-3-tsens-fix-kernel-4_19.patch │ │ │ ├── 0063-4-ip806x-tsense-rework-driver.patch │ │ │ ├── 0064-clk-clk-rpm-fixes.patch │ │ │ ├── 0065-arm-override-compiler-flags.patch │ │ │ ├── 0067-generic-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 0069-arm-boot-add-dts-files.patch │ │ │ ├── 0070-qcom-spm-fix-probe-order.patch │ │ │ ├── 0071-1-PCI-qcom-Fixed-IPQ806x-specific-clocks.patch │ │ │ ├── 0071-2-PCI-qcom-Fixed-IPQ806x-PCIE-reset-changes.patch │ │ │ ├── 0071-3-PCI-qcom-Fixed-IPQ806x-PCIE-init-changes.patch │ │ │ ├── 0071-5-PCI-qcom-Programming-the-PCIE-iATU-for-IPQ806x.patch │ │ │ ├── 0071-6-PCI-qcom-Force-GEN1-support.patch │ │ │ ├── 0071-7-pcie-Set-PCIE-MRRS-and-MPS-to-256B.patch │ │ │ ├── 0071-8-pcie-qcom-Fixed-pcie_phy_clk-branch-issue.patch │ │ │ ├── 0071-9-pcie-qcom-change-duplicate-pci-reset-to-phy-reset.patch │ │ │ ├── 0072-add-ipq806x-with-no-clocks.patch │ │ │ ├── 0073-pinctrl-qom-use-scm_call-to-route-GPIO-irq-to-Apps.patch │ │ │ ├── 0075-ipq8064-pinctrl-Fixed-missing-RGMII-pincontrol-defin.patch │ │ │ ├── 080-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ └── 850-soc-add-qualcomm-syscon.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── kirkwood │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── init.d │ │ │ │ │ ├── bootcount │ │ │ │ │ └── hwmon_fancontrol │ │ │ └── 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 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── dsl │ │ │ │ │ │ ├── led_dsl.sh │ │ │ │ │ │ └── pppoa.sh │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_led_migration │ │ │ │ │ └── 02_migrate_xdsl_iface │ │ │ ├── lib │ │ │ │ ├── functions │ │ │ │ │ ├── lantiq.sh │ │ │ │ │ └── lantiq_dsl.sh │ │ │ │ └── preinit │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ └── sbin │ │ │ │ └── dsl_notify.sh │ │ ├── config-4.19 │ │ ├── falcon │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── lantiq │ │ │ │ │ ├── amazonse.dtsi │ │ │ │ │ ├── amazonse_allnet_all0333cj.dts │ │ │ │ │ ├── amazonse_netgear_dgn1000b.dts │ │ │ │ │ ├── ar9.dtsi │ │ │ │ │ ├── ar9_avm_fritz7312.dts │ │ │ │ │ ├── ar9_avm_fritz7320.dts │ │ │ │ │ ├── ar9_bt_homehub-v3a.dts │ │ │ │ │ ├── ar9_buffalo_wbmr-hp-g300h.dts │ │ │ │ │ ├── ar9_netgear_dgn3500.dts │ │ │ │ │ ├── ar9_netgear_dgn3500.dtsi │ │ │ │ │ ├── ar9_netgear_dgn3500b.dts │ │ │ │ │ ├── ar9_zte_h201l.dts │ │ │ │ │ ├── ar9_zyxel_p-2601hn.dts │ │ │ │ │ ├── danube.dtsi │ │ │ │ │ ├── danube_arcadyan_arv4510pw.dts │ │ │ │ │ ├── danube_arcadyan_arv4518pwr01.dts │ │ │ │ │ ├── danube_arcadyan_arv4518pwr01.dtsi │ │ │ │ │ ├── danube_arcadyan_arv4518pwr01a.dts │ │ │ │ │ ├── danube_arcadyan_arv4519pw.dts │ │ │ │ │ ├── danube_arcadyan_arv4520pw.dts │ │ │ │ │ ├── danube_arcadyan_arv4525pw.dts │ │ │ │ │ ├── danube_arcadyan_arv452cqw.dts │ │ │ │ │ ├── danube_arcadyan_arv7506pw11.dts │ │ │ │ │ ├── danube_arcadyan_arv7510pw22.dts │ │ │ │ │ ├── danube_arcadyan_arv7518pw.dts │ │ │ │ │ ├── danube_arcadyan_arv7519pw.dts │ │ │ │ │ ├── danube_arcadyan_arv7525pw.dts │ │ │ │ │ ├── danube_arcadyan_arv752dpw.dts │ │ │ │ │ ├── danube_arcadyan_arv752dpw22.dts │ │ │ │ │ ├── danube_arcadyan_arv8539pw22.dts │ │ │ │ │ ├── danube_audiocodes_mp-252.dts │ │ │ │ │ ├── danube_bt_homehub-v2b.dts │ │ │ │ │ ├── danube_lantiq_easy50712.dts │ │ │ │ │ ├── danube_siemens_gigaset-sx76x.dts │ │ │ │ │ ├── falcon.dtsi │ │ │ │ │ ├── falcon_lantiq_easy88388.dts │ │ │ │ │ ├── falcon_lantiq_easy88444.dts │ │ │ │ │ ├── falcon_lantiq_easy98000-nand.dts │ │ │ │ │ ├── falcon_lantiq_easy98000-nor.dts │ │ │ │ │ ├── falcon_lantiq_easy98000-sflash.dts │ │ │ │ │ ├── falcon_lantiq_easy98000.dtsi │ │ │ │ │ ├── falcon_lantiq_easy98020-v18.dts │ │ │ │ │ ├── falcon_lantiq_easy98020.dts │ │ │ │ │ ├── falcon_lantiq_easy98021.dts │ │ │ │ │ ├── falcon_lantiq_easy98035synce.dts │ │ │ │ │ ├── falcon_lantiq_easy98035synce1588.dts │ │ │ │ │ ├── falcon_lantiq_falcon-mdu.dts │ │ │ │ │ ├── falcon_lantiq_falcon-sfp.dts │ │ │ │ │ ├── falcon_sflash-16m.dtsi │ │ │ │ │ ├── vr9.dtsi │ │ │ │ │ ├── vr9_alphanetworks_asl56026.dts │ │ │ │ │ ├── vr9_arcadyan_arv7519rw22.dts │ │ │ │ │ ├── vr9_arcadyan_vg3503j.dts │ │ │ │ │ ├── vr9_arcadyan_vgv7510kw22-brn.dts │ │ │ │ │ ├── vr9_arcadyan_vgv7510kw22-nor.dts │ │ │ │ │ ├── vr9_arcadyan_vgv7510kw22.dtsi │ │ │ │ │ ├── vr9_arcadyan_vgv7519-brn.dts │ │ │ │ │ ├── vr9_arcadyan_vgv7519-nor.dts │ │ │ │ │ ├── vr9_arcadyan_vgv7519.dtsi │ │ │ │ │ ├── vr9_avm_fritz3370-rev2-hynix.dts │ │ │ │ │ ├── vr9_avm_fritz3370-rev2-micron.dts │ │ │ │ │ ├── vr9_avm_fritz3370-rev2.dtsi │ │ │ │ │ ├── vr9_avm_fritz7360sl.dts │ │ │ │ │ ├── vr9_avm_fritz7362sl.dts │ │ │ │ │ ├── vr9_avm_fritz736x.dtsi │ │ │ │ │ ├── vr9_avm_fritz7412.dts │ │ │ │ │ ├── vr9_bt_homehub-v5a.dts │ │ │ │ │ ├── vr9_buffalo_wbmr-300hpd.dts │ │ │ │ │ ├── vr9_lantiq_easy80920-nand.dts │ │ │ │ │ ├── vr9_lantiq_easy80920-nor.dts │ │ │ │ │ ├── vr9_lantiq_easy80920.dtsi │ │ │ │ │ ├── vr9_netgear_dm200.dts │ │ │ │ │ ├── vr9_tplink_tdw8970.dts │ │ │ │ │ ├── vr9_tplink_tdw8980.dts │ │ │ │ │ ├── vr9_tplink_tdw89x0.dtsi │ │ │ │ │ ├── vr9_tplink_vr200.dts │ │ │ │ │ ├── vr9_tplink_vr200.dtsi │ │ │ │ │ ├── vr9_tplink_vr200v.dts │ │ │ │ │ ├── vr9_zyxel_p-2812hnu-f1.dts │ │ │ │ │ ├── vr9_zyxel_p-2812hnu-f3.dts │ │ │ │ │ └── vr9_zyxel_p-2812hnu-fx.dtsi │ │ │ └── firmware │ │ │ │ └── lantiq │ │ │ │ ├── xrx200_phy11g_a14.bin │ │ │ │ ├── xrx200_phy11g_a22.bin │ │ │ │ ├── xrx200_phy22f_a14.bin │ │ │ │ └── xrx200_phy22f_a22.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── amazonse.mk │ │ │ ├── ar9.mk │ │ │ ├── danube.mk │ │ │ ├── eva.dummy.squashfs │ │ │ ├── falcon.mk │ │ │ ├── tp-link.mk │ │ │ ├── ubinize-overlay.cfg │ │ │ ├── ubinize.cfg │ │ │ ├── vr9.mk │ │ │ └── xway_legacy.mk │ │ ├── modules.mk │ │ ├── patches-4.19 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0004-MIPS-lantiq-add-atm-hack.patch │ │ │ ├── 0005-lantiq_etop-pass-struct-device-to-DMA-API-functions.patch │ │ │ ├── 0006-MIPS-lantiq-pass-struct-device-to-DMA-API-functions.patch │ │ │ ├── 0008-MIPS-lantiq-backport-old-timer-code.patch │ │ │ ├── 0018-MTD-nand-lots-of-xrx200-fixes.patch │ │ │ ├── 0020-MTD-lantiq-handle-NO_XIP-on-cfi0001-flash.patch │ │ │ ├── 0022-MTD-m25p80-allow-loading-mtd-name-from-OF.patch │ │ │ ├── 0023-NET-PHY-add-led-support-for-intel-xway.patch │ │ │ ├── 0024-MIPS-lantiq-autoselect-soc-rev-matching-fw.patch │ │ │ ├── 0025-NET-MIPS-lantiq-adds-xrx200-net.patch │ │ │ ├── 0028-NET-lantiq-various-etop-fixes.patch │ │ │ ├── 0030-GPIO-add-named-gpio-exports.patch │ │ │ ├── 0031-I2C-MIPS-lantiq-add-FALC-ON-i2c-bus-master.patch │ │ │ ├── 0035-owrt-lantiq-wifi-and-ethernet-eeprom-handling.patch │ │ │ ├── 0042-arch-mips-increase-io_space_limit.patch │ │ │ ├── 0050-USB-DWC2-make-the-lantiq-settings-match-vendor-drive.patch │ │ │ ├── 0051-MIPS-lantiq-improve-USB-initialization.patch │ │ │ ├── 0101-find_active_root.patch │ │ │ ├── 0151-lantiq-ifxmips_pcie-use-of.patch │ │ │ ├── 0152-lantiq-VPE.patch │ │ │ ├── 0154-lantiq-pci-bar11mask-fix.patch │ │ │ ├── 0155-lantiq-VPE-nosmp.patch │ │ │ ├── 0160-owrt-lantiq-multiple-flash.patch │ │ │ ├── 0300-MTD-cfi-cmdset-0001-disable-buffered-writes.patch │ │ │ ├── 0301-xrx200-add-gphy-clk-src-device-tree-binding.patch │ │ │ └── 0701-NET-lantiq-etop-of-mido.patch │ │ ├── xrx200 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── hotplug.d │ │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 11-ath10k-caldata │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── xway │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── hotplug.d │ │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── xway_legacy │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── layerscape │ │ ├── Makefile │ │ ├── README │ │ ├── armv7 │ │ │ ├── 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_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 │ │ │ ├── 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-etsec-support-layerscape.patch │ │ │ ├── 713-sdk_qbman-Fix-error-in-IP-revision-comparison.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-ptp-support-layerscape.patch │ │ │ └── 825-tmu-support-layerscape.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 │ ├── mediatek │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── iface │ │ │ │ │ │ └── 99-mtk-lro │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 99-net-ps │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ ├── 05_set_preinit_iface │ │ │ │ └── 06_set_rps_sock_flow │ │ ├── files-4.14 │ │ │ └── arch │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── mediatek │ │ │ │ ├── mt7622-bananapi-bpi-r64.dts │ │ │ │ └── mt7622-lynx-rfb1.dts │ │ ├── files-4.19 │ │ │ ├── arch │ │ │ │ ├── arm │ │ │ │ │ └── boot │ │ │ │ │ │ └── dts │ │ │ │ │ │ ├── mt7629-lynx-rfb.dts │ │ │ │ │ │ ├── mt7629-rfb.dts │ │ │ │ │ │ └── mt7629.dtsi │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7622-bananapi-bpi-r64.dts │ │ │ │ │ ├── mt7622-lynx-rfb1.dts │ │ │ │ │ ├── mt7622-rfb1.dts │ │ │ │ │ └── mt7622.dtsi │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ └── mtk │ │ │ │ └── mt753x │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── mt7530.c │ │ │ │ ├── mt7530.h │ │ │ │ ├── mt7531.c │ │ │ │ ├── mt7531.h │ │ │ │ ├── mt753x.h │ │ │ │ ├── mt753x_common.c │ │ │ │ ├── mt753x_mdio.c │ │ │ │ ├── mt753x_nl.c │ │ │ │ ├── mt753x_nl.h │ │ │ │ ├── mt753x_regs.h │ │ │ │ ├── mt753x_swconfig.c │ │ │ │ ├── mt753x_swconfig.h │ │ │ │ ├── mt753x_vlan.c │ │ │ │ └── mt753x_vlan.h │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── gen_mt7623_emmc_img.sh │ │ │ ├── mt7622.mk │ │ │ ├── mt7623.mk │ │ │ └── mt7629.mk │ │ ├── modules.mk │ │ ├── mt7622 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── mt7623 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ ├── 07_set_iface_mac │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── mt7629 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── 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 │ │ └── patches-4.19 │ │ │ ├── 0001-arm-dts-mediatek-add-basic-support-for-MT7629-SoC.patch │ │ │ ├── 0001-eth-sync-from-mtk-lede.patch │ │ │ ├── 0002-Revert-ARM-mediatek-add-MT7623a-smp-bringup-code.patch │ │ │ ├── 0003-arm-mediatek-add-MT7629-smp-bring-up-code.patch │ │ │ ├── 0003-mt7531-gsw-internal_phy_calibration.patch │ │ │ ├── 0003-switch-add-mt7531.patch │ │ │ ├── 0004-clk-mediatek-add-clock-support-for-MT7629-SoC.patch │ │ │ ├── 0005-pinctrl-mediatek-sync-with-5.3.patch │ │ │ ├── 0006-mtd-spi-nor-mtk-quadspi-add-SNOR_HWCAPS_READ-to-spi_.patch │ │ │ ├── 0101-pci-mediatek-backport-fix-pcie.patch │ │ │ ├── 0227-arm-dts-Add-Unielec-U7623-DTS.patch │ │ │ ├── 0301-mtd-mtk-ecc-move-mtk-ecc-header-file-to-include-mtd.patch │ │ │ ├── 0303-mtd-spinand-disable-on-die-ECC.patch │ │ │ ├── 0304-dt-bindings-ARM-MediaTek-Document-devicetree-binding.patch │ │ │ ├── 0306-spi-spi-mem-MediaTek-Add-SPI-NAND-Flash-interface-dr.patch │ │ │ ├── 0307-spi-mem-Mediatek-Add-SPI-Nand-support-for-MT7629.patch │ │ │ └── 0900-bt-mtk-serial-fix.patch │ ├── 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 │ │ │ │ └── dts │ │ │ │ │ ├── hiveap-330.dts │ │ │ │ │ ├── panda.dts │ │ │ │ │ ├── red-15w-rev1.dts │ │ │ │ │ ├── tl-wdr4900-v1.dts │ │ │ │ │ └── ws-ap3710i.dts │ │ │ │ └── platforms │ │ │ │ └── 85xx │ │ │ │ ├── hiveap-330.c │ │ │ │ ├── panda.c │ │ │ │ ├── red15w_rev1.c │ │ │ │ ├── tl_wdr4900_v1.c │ │ │ │ └── ws-ap3710i.c │ │ ├── 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 │ │ │ └── 106-powerpc-85xx-ws-ap3710i-support.patch │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 00-wifi-config-migrate │ │ │ │ ├── init.d │ │ │ │ │ └── bootcount │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_wireless │ │ │ │ │ └── 04_mambafan │ │ │ ├── lib │ │ │ │ ├── preinit │ │ │ │ │ ├── 06_set_iface_mac │ │ │ │ │ ├── 79_move_config │ │ │ │ │ ├── 81_linksys_syscfg │ │ │ │ │ └── 82_uDPU │ │ │ │ └── upgrade │ │ │ │ │ ├── linksys.sh │ │ │ │ │ ├── platform.sh │ │ │ │ │ ├── sdcard.sh │ │ │ │ │ └── uDPU.sh │ │ │ └── sbin │ │ │ │ └── fan_ctrl.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── cortexa53 │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── cortexa72 │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── cortexa9 │ │ │ └── target.mk │ │ ├── files-4.14 │ │ │ └── arch │ │ │ │ ├── arm │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── armada-385-linksys-venom.dts │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── marvell │ │ │ │ ├── armada-3720-espressobin-emmc.dts │ │ │ │ ├── armada-3720-espressobin-v7-emmc.dts │ │ │ │ └── armada-3720-espressobin-v7.dts │ │ ├── files-4.19 │ │ │ └── arch │ │ │ │ ├── arm │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── armada-385-linksys-venom.dts │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── marvell │ │ │ │ ├── armada-3720-espressobin-emmc.dts │ │ │ │ ├── armada-3720-espressobin-v7-emmc.dts │ │ │ │ ├── armada-3720-espressobin-v7.dts │ │ │ │ └── armada-3720-uDPU.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── clearfog.bootscript │ │ │ ├── cortex-a53.mk │ │ │ ├── cortex-a72.mk │ │ │ ├── cortex-a9.mk │ │ │ ├── gen_mvebu_sdcard_img.sh │ │ │ ├── generic-arm64.bootscript │ │ │ └── udpu.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 513-arm64-dts-marvell-armada37xx-Add-emmc-sdio-pinctrl-d.patch │ │ │ ├── 514-arm64-dts-marvell-armada-37xx-Enable-emmc-on-espress.patch │ │ │ ├── 520-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch │ │ │ ├── 521-arm64-dts-armada-3720-espressobin-correct-spi-node.patch │ │ │ ├── 522-arm64-dts-marvell-armada-3720-espressobin-add-ports-.patch │ │ │ ├── 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 │ │ └── patches-4.19 │ │ │ ├── 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 │ │ │ ├── 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-net-phylink-only-call-mac_config-during-resolve-when.patch │ │ │ ├── 403-net-phylink-ensure-inband-AN-works-correctly.patch │ │ │ ├── 404-sfp-provide-netdev-sfp_bus-and-use-for-start-stop.patch │ │ │ ├── 405-net-phy-marvell10g-add-SFP-support.patch │ │ │ ├── 406-sfp-add-sfp-compatible.patch │ │ │ ├── 407-sfp-display-SFP-module-information.patch │ │ │ ├── 408-sfp-more-cotsworks-fixes.patch │ │ │ ├── 412-ARM-dts-armada388-clearfog-emmc-on-clearfog-base.patch │ │ │ ├── 415-ARM-dts-armada388-clearfog-document-MPP-usage.patch │ │ │ ├── 450-reprobe_sfp_phy.patch │ │ │ ├── 513-arm64-dts-marvell-armada37xx-Add-emmc-sdio-pinctrl-d.patch │ │ │ ├── 514-arm64-dts-marvell-armada-37xx-Enable-emmc-on-espress.patch │ │ │ ├── 520-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch │ │ │ ├── 521-arm64-dts-armada-3720-espressobin-correct-spi-node.patch │ │ │ ├── 522-arm64-dts-marvell-armada-3720-espressobin-add-ports-.patch │ │ │ ├── 523-Revert-PCI-aardvark-Convert-to-use-pci_host_probe.patch │ │ │ ├── 524-PCI-aardvark-set-host-and-device-to-the-same-MAX-payload-size.patch │ │ │ ├── 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 │ │ │ ├── 530-add_armada-3820-uDPU-dts.patch │ │ │ ├── 531-net-mvneta-Add-support-for-2500Mbps-SGMII.patch │ │ │ ├── 532-net-mvneta-correct-typo.patch │ │ │ ├── 533-net-mvneta-Dont-advertise-2.5G-modes.patch │ │ │ ├── 534-net-mvneta-remove-redundant-check-for.patch │ │ │ ├── 535-net-marvell-neta-add-comphy-support.patch │ │ │ ├── 536-net-marvell-neta-disable-comphy-when-setting-mode.patch │ │ │ ├── 537-net-mvneta-add-2500baset-support.patch │ │ │ ├── 538-phy-add-QSGMII-and-PCIE-modes.patch │ │ │ ├── 539-phy-core-add-PHY_MODE_ETHERNET.patch │ │ │ ├── 540-phy-fix-build-breakage-add-PHY_MODE_SATA.patch │ │ │ ├── 541-phy-core-rework-phy_set_mode-to-accept-phy-mode-and-.patch │ │ │ ├── 542-phy-add-A3700-COMPHY-support.patch │ │ │ └── 543-arm64-dts-marvell-armada-37xx-declare-the-COMPHY.patch │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ ├── config-4.19 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_sdcard_ext4_ext4.sh │ │ │ └── gen_sdcard_vfat_ext4.sh │ │ └── profiles │ │ │ ├── 01-duckbill.mk │ │ │ ├── 02-olinuxino-maxi.mk │ │ │ └── 03-olinuxino-micro.mk │ ├── octeon │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 01_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ ├── 160-cmdline-hack.patch │ │ │ └── 170-cisco-hack.patch │ │ ├── patches-4.19 │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ └── 120-cmdline-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 │ │ ├── config-4.19 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_omap_sdcard_img.sh │ │ │ └── ubinize.cfg │ │ └── profiles │ │ │ └── 00-default.mk │ ├── oxnas │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ ├── init.d │ │ │ │ └── set-irq-affinity │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-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 │ │ │ ├── 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 │ ├── ramips │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── usb │ │ │ │ │ │ └── 10-motion │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix-checksum │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 07_set_preinit_iface_ramips │ │ ├── dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620a_aigale_ai-br100.dts │ │ │ ├── mt7620a_alfa-network_ac1200rm.dts │ │ │ ├── mt7620a_alfa-network_r36m-e4g.dts │ │ │ ├── mt7620a_alfa-network_tube-e4g.dts │ │ │ ├── mt7620a_asus_rp-n53.dts │ │ │ ├── mt7620a_asus_rt-ac51u.dts │ │ │ ├── mt7620a_bdcom_wap2100-sk.dts │ │ │ ├── mt7620a_buffalo_whr-1166d.dts │ │ │ ├── mt7620a_buffalo_whr-300hp2.dts │ │ │ ├── mt7620a_buffalo_whr-600d.dts │ │ │ ├── mt7620a_dlink_dch-m225.dts │ │ │ ├── mt7620a_dlink_dir-510l.dts │ │ │ ├── mt7620a_dlink_dir-810l.dts │ │ │ ├── mt7620a_dlink_dwr-118-a1.dts │ │ │ ├── mt7620a_dlink_dwr-118-a2.dts │ │ │ ├── mt7620a_dovado_tiny-ac.dts │ │ │ ├── mt7620a_edimax_br-6478ac-v2.dts │ │ │ ├── mt7620a_edimax_ew-7476rpc.dts │ │ │ ├── mt7620a_edimax_ew-7478ac.dts │ │ │ ├── mt7620a_edimax_ew-7478apc.dts │ │ │ ├── mt7620a_edimax_ew-747x.dtsi │ │ │ ├── mt7620a_engenius_esr600.dts │ │ │ ├── mt7620a_fon_fon2601.dts │ │ │ ├── mt7620a_glinet_gl-mt300a.dts │ │ │ ├── mt7620a_glinet_gl-mt300n.dts │ │ │ ├── mt7620a_glinet_gl-mt750.dts │ │ │ ├── mt7620a_head-weblink_hdrm200.dts │ │ │ ├── mt7620a_hiwifi_hc5661.dts │ │ │ ├── mt7620a_hiwifi_hc5761.dts │ │ │ ├── mt7620a_hiwifi_hc5861.dts │ │ │ ├── mt7620a_hiwifi_hc5x61.dtsi │ │ │ ├── mt7620a_hnet_c108.dts │ │ │ ├── mt7620a_iodata_wn-ac1167gr.dts │ │ │ ├── mt7620a_iodata_wn-ac733gr3.dts │ │ │ ├── mt7620a_iptime.dtsi │ │ │ ├── mt7620a_iptime_a104ns.dts │ │ │ ├── mt7620a_kimax_u25awf-h1.dts │ │ │ ├── mt7620a_lava_lr-25g001.dts │ │ │ ├── mt7620a_lenovo_newifi-y1.dts │ │ │ ├── mt7620a_lenovo_newifi-y1.dtsi │ │ │ ├── mt7620a_lenovo_newifi-y1s.dts │ │ │ ├── mt7620a_linksys_e1700.dts │ │ │ ├── mt7620a_microduino_microwrt.dts │ │ │ ├── mt7620a_netgear_ex2700.dts │ │ │ ├── mt7620a_netgear_ex2700_wn3000rp-v3.dtsi │ │ │ ├── mt7620a_netgear_ex3700.dts │ │ │ ├── mt7620a_netgear_ex3700_ex6130.dtsi │ │ │ ├── mt7620a_netgear_ex6130.dts │ │ │ ├── mt7620a_netgear_wn3000rp-v3.dts │ │ │ ├── mt7620a_ohyeah_oy-0001.dts │ │ │ ├── mt7620a_phicomm_k2g.dts │ │ │ ├── mt7620a_phicomm_psg1208.dts │ │ │ ├── mt7620a_phicomm_psg1218.dtsi │ │ │ ├── mt7620a_phicomm_psg1218a.dts │ │ │ ├── mt7620a_phicomm_psg1218b.dts │ │ │ ├── mt7620a_planex_cs-qr10.dts │ │ │ ├── mt7620a_planex_db-wrt01.dts │ │ │ ├── mt7620a_planex_mzk-750dhp.dts │ │ │ ├── mt7620a_planex_mzk-ex300np.dts │ │ │ ├── mt7620a_planex_mzk-ex750np.dts │ │ │ ├── mt7620a_ralink_mt7620a-evb.dts │ │ │ ├── mt7620a_ralink_mt7620a-mt7530-evb.dts │ │ │ ├── mt7620a_ralink_mt7620a-mt7610e-evb.dts │ │ │ ├── mt7620a_ralink_mt7620a-v22sg-evb.dts │ │ │ ├── mt7620a_sanlinking_d240.dts │ │ │ ├── mt7620a_sercomm_na930.dts │ │ │ ├── mt7620a_tplink_archer-c2-v1.dts │ │ │ ├── mt7620a_tplink_archer-c20-v1.dts │ │ │ ├── mt7620a_tplink_archer-c20i.dts │ │ │ ├── mt7620a_tplink_archer-c50-v1.dts │ │ │ ├── mt7620a_tplink_archer-mr200.dts │ │ │ ├── mt7620a_tplink_archer.dtsi │ │ │ ├── mt7620a_tplink_re200-v1.dts │ │ │ ├── mt7620a_xiaomi_miwifi-mini.dts │ │ │ ├── mt7620a_youku_yk1.dts │ │ │ ├── mt7620a_yukai_bocco.dts │ │ │ ├── mt7620a_zbtlink_zbt-ape522ii.dts │ │ │ ├── mt7620a_zbtlink_zbt-we1026-5g-16m.dts │ │ │ ├── mt7620a_zbtlink_zbt-we1026-5g.dtsi │ │ │ ├── mt7620a_zbtlink_zbt-we1026-h-32m.dts │ │ │ ├── mt7620a_zbtlink_zbt-we1026-h.dtsi │ │ │ ├── mt7620a_zbtlink_zbt-we1026.dtsi │ │ │ ├── mt7620a_zbtlink_zbt-we826-16m.dts │ │ │ ├── mt7620a_zbtlink_zbt-we826-32m.dts │ │ │ ├── mt7620a_zbtlink_zbt-we826-e.dts │ │ │ ├── mt7620a_zbtlink_zbt-we826.dtsi │ │ │ ├── mt7620a_zte_q7.dts │ │ │ ├── mt7620a_zyxel_keenetic-viva.dts │ │ │ ├── mt7620n.dtsi │ │ │ ├── mt7620n_asus_rt-n12p.dts │ │ │ ├── mt7620n_asus_rt-n14u.dts │ │ │ ├── mt7620n_buffalo_wmr-300.dts │ │ │ ├── mt7620n_comfast_cf-wr800n.dts │ │ │ ├── mt7620n_dlink_dwr-116-a1.dts │ │ │ ├── mt7620n_dlink_dwr-921-c1.dts │ │ │ ├── mt7620n_dlink_dwr-922-e2.dts │ │ │ ├── mt7620n_elecom_wrh-300cr.dts │ │ │ ├── mt7620n_kimax_u35wf.dts │ │ │ ├── mt7620n_kingston_mlw221.dts │ │ │ ├── mt7620n_kingston_mlwg2.dts │ │ │ ├── mt7620n_nexx_wt3020-4m.dts │ │ │ ├── mt7620n_nexx_wt3020-8m.dts │ │ │ ├── mt7620n_nexx_wt3020.dtsi │ │ │ ├── mt7620n_ravpower_wd03.dts │ │ │ ├── mt7620n_vonets_var11n-300.dts │ │ │ ├── mt7620n_wrtnode_wrtnode.dts │ │ │ ├── mt7620n_zbtlink_zbt-cpe102.dts │ │ │ ├── mt7620n_zbtlink_zbt-wa05.dts │ │ │ ├── mt7620n_zbtlink_zbt-we2026.dts │ │ │ ├── mt7620n_zbtlink_zbt-wr8305rt.dts │ │ │ ├── mt7620n_zyxel_keenetic-omni-ii.dts │ │ │ ├── mt7620n_zyxel_keenetic-omni.dts │ │ │ ├── mt7621.dtsi │ │ │ ├── mt7621_adslr_g7.dts │ │ │ ├── mt7621_afoundry_ew1200.dts │ │ │ ├── mt7621_alfa-network_quad-e4g.dts │ │ │ ├── mt7621_asiarf_ap7621-001.dts │ │ │ ├── mt7621_asiarf_ap7621-nv1.dts │ │ │ ├── mt7621_asiarf_ap7621.dtsi │ │ │ ├── mt7621_asus_rt-ac57u.dts │ │ │ ├── mt7621_asus_rt-ac65p.dts │ │ │ ├── mt7621_asus_rt-ac85p.dts │ │ │ ├── mt7621_asus_rt-acx5p.dtsi │ │ │ ├── mt7621_buffalo_wsr-1166dhp.dts │ │ │ ├── mt7621_buffalo_wsr-600dhp.dts │ │ │ ├── mt7621_d-team_newifi-d2.dts │ │ │ ├── mt7621_d-team_pbr-m1.dts │ │ │ ├── mt7621_dlink_dir-860l-b1.dts │ │ │ ├── mt7621_edimax_ra21s.dts │ │ │ ├── mt7621_edimax_rg21s.dts │ │ │ ├── mt7621_edimax_rx21s.dtsi │ │ │ ├── mt7621_elecom_wrc-1167ghbk2-s.dts │ │ │ ├── mt7621_elecom_wrc-1900gst.dts │ │ │ ├── mt7621_elecom_wrc-2533gst.dts │ │ │ ├── mt7621_elecom_wrc-gst.dtsi │ │ │ ├── mt7621_firefly_firewrt.dts │ │ │ ├── mt7621_gehua_ghl-r-001.dts │ │ │ ├── mt7621_gnubee_gb-pc1.dts │ │ │ ├── mt7621_gnubee_gb-pc2.dts │ │ │ ├── mt7621_hiwifi_hc5962.dts │ │ │ ├── mt7621_iodata_wn-ax1167gr.dts │ │ │ ├── mt7621_iodata_wn-gx300gr.dts │ │ │ ├── mt7621_iodata_wnpr2600g.dts │ │ │ ├── mt7621_iptime_a6ns-m.dts │ │ │ ├── mt7621_iptime_a8004t.dts │ │ │ ├── mt7621_jcg_jhr-ac876m.dts │ │ │ ├── mt7621_lenovo_newifi-d1.dts │ │ │ ├── mt7621_linksys_re6500.dts │ │ │ ├── mt7621_mediatek_ap-mt7621a-v60.dts │ │ │ ├── mt7621_mediatek_mt7621-eval-board.dts │ │ │ ├── mt7621_mikrotik_rb750gr3.dts │ │ │ ├── mt7621_mikrotik_rbm11g.dts │ │ │ ├── mt7621_mikrotik_rbm33g.dts │ │ │ ├── mt7621_mqmaker_witi.dts │ │ │ ├── mt7621_mtc_wr1201.dts │ │ │ ├── mt7621_netgear_ex6150.dts │ │ │ ├── mt7621_netgear_r6220.dts │ │ │ ├── mt7621_netgear_r6260.dts │ │ │ ├── mt7621_netgear_r6350.dts │ │ │ ├── mt7621_netgear_r6850.dts │ │ │ ├── mt7621_netgear_sercomm_ayx.dtsi │ │ │ ├── mt7621_netgear_sercomm_chj.dtsi │ │ │ ├── mt7621_netgear_wndr3700-v5.dts │ │ │ ├── mt7621_netis_wf-2881.dts │ │ │ ├── mt7621_phicomm_k2p.dts │ │ │ ├── mt7621_planex_vr500.dts │ │ │ ├── mt7621_samknows_whitebox-v8.dts │ │ │ ├── mt7621_storylink_sap-g3200u3.dts │ │ │ ├── mt7621_telco-electronics_x1.dts │ │ │ ├── mt7621_thunder_timecloud.dts │ │ │ ├── mt7621_totolink_a7000r.dts │ │ │ ├── mt7621_tplink_re350-v1.dts │ │ │ ├── mt7621_tplink_re650-v1.dts │ │ │ ├── mt7621_ubiquiti_edgerouterx-sfp.dts │ │ │ ├── mt7621_ubiquiti_edgerouterx.dts │ │ │ ├── mt7621_ubiquiti_edgerouterx.dtsi │ │ │ ├── mt7621_unielec_u7621-06-16m.dts │ │ │ ├── mt7621_unielec_u7621-06-64m.dts │ │ │ ├── mt7621_unielec_u7621-06.dtsi │ │ │ ├── mt7621_wevo_11acnas.dts │ │ │ ├── mt7621_wevo_w2914ns-v2.dts │ │ │ ├── mt7621_wevo_w2914ns-v2.dtsi │ │ │ ├── mt7621_xiaomi_mir3g-v2.dts │ │ │ ├── mt7621_xiaomi_mir3g.dts │ │ │ ├── mt7621_xiaomi_mir3p.dts │ │ │ ├── mt7621_xiaoyu_xy-c5.dts │ │ │ ├── mt7621_xzwifi_creativebox-v1.dts │ │ │ ├── mt7621_youhua_wr1200js.dts │ │ │ ├── mt7621_youku_yk-l2.dts │ │ │ ├── mt7621_zbtlink_zbt-we1326.dts │ │ │ ├── mt7621_zbtlink_zbt-we3526.dts │ │ │ ├── mt7621_zbtlink_zbt-wg2626.dts │ │ │ ├── mt7621_zbtlink_zbt-wg3526-16m.dts │ │ │ ├── mt7621_zbtlink_zbt-wg3526-32m.dts │ │ │ ├── mt7621_zbtlink_zbt-wg3526.dtsi │ │ │ ├── mt7621_zio_freezio.dts │ │ │ ├── mt7628an.dtsi │ │ │ ├── mt7628an_alfa-network_awusfree1.dts │ │ │ ├── mt7628an_buffalo_wcr-1166ds.dts │ │ │ ├── mt7628an_cudy_wr1000.dts │ │ │ ├── mt7628an_d-team_pbr-d1.dts │ │ │ ├── mt7628an_duzun_dm06.dts │ │ │ ├── mt7628an_glinet_gl-mt300n-v2.dts │ │ │ ├── mt7628an_glinet_vixmini.dts │ │ │ ├── mt7628an_hilink_hlk-7628n.dts │ │ │ ├── mt7628an_hiwifi_hc5661a.dts │ │ │ ├── mt7628an_hiwifi_hc5761a.dts │ │ │ ├── mt7628an_hiwifi_hc5861b.dts │ │ │ ├── mt7628an_hiwifi_hc5x61a.dtsi │ │ │ ├── mt7628an_iptime.dtsi │ │ │ ├── mt7628an_iptime_a3.dts │ │ │ ├── mt7628an_iptime_a604m.dts │ │ │ ├── mt7628an_mediatek_linkit-smart-7688.dts │ │ │ ├── mt7628an_mediatek_mt7628an-eval-board.dts │ │ │ ├── mt7628an_mercury_mac1200r-v2.dts │ │ │ ├── mt7628an_netgear_r6120.dts │ │ │ ├── mt7628an_onion_omega2.dts │ │ │ ├── mt7628an_onion_omega2.dtsi │ │ │ ├── mt7628an_onion_omega2p.dts │ │ │ ├── mt7628an_rakwireless_rak633.dts │ │ │ ├── mt7628an_skylab_skw92a.dts │ │ │ ├── mt7628an_tama_w06.dts │ │ │ ├── mt7628an_totolink_lr1200.dts │ │ │ ├── mt7628an_tplink_8m-split-uboot.dtsi │ │ │ ├── mt7628an_tplink_8m.dtsi │ │ │ ├── mt7628an_tplink_archer-c20-v4.dts │ │ │ ├── mt7628an_tplink_archer-c20-v5.dts │ │ │ ├── mt7628an_tplink_archer-c50-v3.dts │ │ │ ├── mt7628an_tplink_archer-c50-v4.dts │ │ │ ├── mt7628an_tplink_tl-mr3020-v3.dts │ │ │ ├── mt7628an_tplink_tl-mr3420-v5.dts │ │ │ ├── mt7628an_tplink_tl-wa801nd-v5.dts │ │ │ ├── mt7628an_tplink_tl-wr802n-v4.dts │ │ │ ├── mt7628an_tplink_tl-wr840n-v4.dts │ │ │ ├── mt7628an_tplink_tl-wr840n-v5.dts │ │ │ ├── mt7628an_tplink_tl-wr841n-v13.dts │ │ │ ├── mt7628an_tplink_tl-wr841n-v14.dts │ │ │ ├── mt7628an_tplink_tl-wr842n-v5.dts │ │ │ ├── mt7628an_tplink_tl-wr902ac-v3.dts │ │ │ ├── mt7628an_unielec_u7628-01-16m.dts │ │ │ ├── mt7628an_unielec_u7628-01.dtsi │ │ │ ├── mt7628an_vocore_vocore2-lite.dts │ │ │ ├── mt7628an_vocore_vocore2.dts │ │ │ ├── mt7628an_vocore_vocore2.dtsi │ │ │ ├── mt7628an_wavlink_wl-wn570ha1.dts │ │ │ ├── mt7628an_wavlink_wl-wn575a3.dts │ │ │ ├── mt7628an_widora_neo-16m.dts │ │ │ ├── mt7628an_widora_neo-32m.dts │ │ │ ├── mt7628an_widora_neo.dtsi │ │ │ ├── mt7628an_wiznet_wizfi630s.dts │ │ │ ├── mt7628an_wrtnode_wrtnode2.dtsi │ │ │ ├── mt7628an_wrtnode_wrtnode2p.dts │ │ │ ├── mt7628an_wrtnode_wrtnode2r.dts │ │ │ ├── mt7628an_xiaomi_mir4a-100m.dts │ │ │ ├── mt7628an_xiaomi_miwifi-nano.dts │ │ │ ├── mt7628an_zbtlink_zbt-we1226.dts │ │ │ ├── mt7628an_zyxel_keenetic-extra-ii.dts │ │ │ ├── rt2880.dtsi │ │ │ ├── rt2880_airlink101_ar670w.dts │ │ │ ├── rt2880_airlink101_ar725w.dts │ │ │ ├── rt2880_asus_rt-n15.dts │ │ │ ├── rt2880_belkin_f5d8235-v1.dts │ │ │ ├── rt2880_buffalo_wli-tx4-ag300n.dts │ │ │ ├── rt2880_buffalo_wzr-agl300nh.dts │ │ │ ├── rt2880_dlink_dap-1522-a1.dts │ │ │ ├── rt2880_ralink_v11st-fe.dts │ │ │ ├── rt3050.dtsi │ │ │ ├── rt3050_8devices_carambola.dts │ │ │ ├── rt3050_allnet_all0256n-4m.dts │ │ │ ├── rt3050_allnet_all0256n-8m.dts │ │ │ ├── rt3050_allnet_all0256n.dtsi │ │ │ ├── rt3050_alphanetworks_asl26555-16m.dts │ │ │ ├── rt3050_alphanetworks_asl26555-8m.dts │ │ │ ├── rt3050_alphanetworks_asl26555.dtsi │ │ │ ├── rt3050_arcwireless_freestation5.dts │ │ │ ├── rt3050_asus_rt-g32-b1.dts │ │ │ ├── rt3050_asus_rt-n10-plus.dts │ │ │ ├── rt3050_asus_wl-330n.dts │ │ │ ├── rt3050_asus_wl-330n3g.dts │ │ │ ├── rt3050_dlink_dcs-930.dts │ │ │ ├── rt3050_dlink_dir-300-b1.dts │ │ │ ├── rt3050_dlink_dir-600-b1.dts │ │ │ ├── rt3050_dlink_dir-615-d.dts │ │ │ ├── rt3050_dlink_dir-620-a1.dts │ │ │ ├── rt3050_edimax_3g-6200n.dts │ │ │ ├── rt3050_edimax_3g-6200nl.dts │ │ │ ├── rt3050_huawei_d105.dts │ │ │ ├── rt3050_jcg_jhr-n805r.dts │ │ │ ├── rt3050_netcore_nw718.dts │ │ │ ├── rt3050_sparklan_wcr-150gn.dts │ │ │ ├── rt3050_teltonika_rut5xx.dts │ │ │ ├── rt3050_tenda_w150m.dts │ │ │ ├── rt3050_trendnet_tew-638apb-v2.dts │ │ │ ├── rt3052_accton_wr6202.dts │ │ │ ├── rt3052_alfa-network_w502u.dts │ │ │ ├── rt3052_argus_atp-52b.dts │ │ │ ├── rt3052_asiarf_awapn2403.dts │ │ │ ├── rt3052_asus_rt-n13u.dts │ │ │ ├── rt3052_aximcom_mr-102n.dts │ │ │ ├── rt3052_aztech_hw550-3g.dts │ │ │ ├── rt3052_belkin_f5d8235-v2.dts │ │ │ ├── rt3052_buffalo_whr-g300n.dts │ │ │ ├── rt3052_dlink_dap-1350.dts │ │ │ ├── rt3052_engenius_esr-9753.dts │ │ │ ├── rt3052_fon_fonera-20n.dts │ │ │ ├── rt3052_hauppauge_broadway.dts │ │ │ ├── rt3052_huawei_hg255d.dts │ │ │ ├── rt3052_jcg_jhr-n825r.dts │ │ │ ├── rt3052_jcg_jhr-n926r.dts │ │ │ ├── rt3052_mofinetwork_mofi3500-3gn.dts │ │ │ ├── rt3052_netgear_wnce2001.dts │ │ │ ├── rt3052_nexaira_bc2.dts │ │ │ ├── rt3052_omnima_miniembwifi.dts │ │ │ ├── rt3052_petatel_psr-680w.dts │ │ │ ├── rt3052_planex_mzk-w300nh2.dts │ │ │ ├── rt3052_planex_mzk-wdpr.dts │ │ │ ├── rt3052_poray_ip2202.dts │ │ │ ├── rt3052_prolink_pwh2004.dts │ │ │ ├── rt3052_ralink_v22rw-2x2.dts │ │ │ ├── rt3052_sitecom_wl-351.dts │ │ │ ├── rt3052_skyline_sl-r7205.dts │ │ │ ├── rt3052_tenda_3g300m.dts │ │ │ ├── rt3052_tenda_w306r-v2.dts │ │ │ ├── rt3052_unbranded_wr512-3gn-4m.dts │ │ │ ├── rt3052_unbranded_wr512-3gn-8m.dts │ │ │ ├── rt3052_unbranded_wr512-3gn.dtsi │ │ │ ├── rt3052_unbranded_xdx-rn502j.dts │ │ │ ├── rt3052_upvel_ur-326n4g.dts │ │ │ ├── rt3052_upvel_ur-336un.dts │ │ │ ├── rt3052_zyxel_keenetic.dts │ │ │ ├── rt3052_zyxel_nbg-419n.dts │ │ │ ├── rt3352.dtsi │ │ │ ├── rt3352_allnet_all5002.dts │ │ │ ├── rt3352_dlink_dir-615-h1.dts │ │ │ ├── rt3352_dlink_dir-620-d1.dts │ │ │ ├── rt3352_zyxel_nbg-419n-v2.dts │ │ │ ├── rt3662_asus_rt-n56u.dts │ │ │ ├── rt3662_dlink_dir-645.dts │ │ │ ├── rt3662_edimax_br-6475nd.dts │ │ │ ├── rt3662_loewe_wmdr-143n.dts │ │ │ ├── rt3662_omnima_hpm.dts │ │ │ ├── rt3662_samsung_cy-swr1100.dts │ │ │ ├── rt3883.dtsi │ │ │ ├── rt3883_belkin_f9k1109v1.dts │ │ │ ├── rt3883_belkin_f9k110x.dtsi │ │ │ ├── rt3883_sitecom_wlr-6000.dts │ │ │ ├── rt3883_trendnet_tew-691gr.dts │ │ │ ├── rt3883_trendnet_tew-692gr.dts │ │ │ ├── rt5350.dtsi │ │ │ ├── rt5350_7links_px-4885-4m.dts │ │ │ ├── rt5350_7links_px-4885-8m.dts │ │ │ ├── rt5350_7links_px-4885.dtsi │ │ │ ├── rt5350_airlive_air3gii.dts │ │ │ ├── rt5350_allnet_all5003.dts │ │ │ ├── rt5350_asiarf_awm002-evb-4m.dts │ │ │ ├── rt5350_asiarf_awm002-evb-8m.dts │ │ │ ├── rt5350_asiarf_awm002-evb.dtsi │ │ │ ├── rt5350_belkin_f7c027.dts │ │ │ ├── rt5350_dlink_dcs-930l-b1.dts │ │ │ ├── rt5350_dlink_dir-300-b7.dts │ │ │ ├── rt5350_dlink_dir-320-b1.dts │ │ │ ├── rt5350_dlink_dir-610-a1.dts │ │ │ ├── rt5350_dlink_dwr-512-b.dts │ │ │ ├── rt5350_easyacc_wizard-8800.dts │ │ │ ├── rt5350_hame_mpr-a1.dts │ │ │ ├── rt5350_hame_mpr-a2.dts │ │ │ ├── rt5350_hilink_hlk-rm04.dts │ │ │ ├── rt5350_hootoo_ht-tm02.dts │ │ │ ├── rt5350_intenso_memory2move.dts │ │ │ ├── rt5350_nexx_wt1520-4m.dts │ │ │ ├── rt5350_nexx_wt1520-8m.dts │ │ │ ├── rt5350_nexx_wt1520.dtsi │ │ │ ├── rt5350_nixcore_x1-16m.dts │ │ │ ├── rt5350_nixcore_x1-8m.dts │ │ │ ├── rt5350_nixcore_x1.dtsi │ │ │ ├── rt5350_olimex_rt5350f-olinuxino-evb.dts │ │ │ ├── rt5350_olimex_rt5350f-olinuxino.dts │ │ │ ├── rt5350_olimex_rt5350f-olinuxino.dtsi │ │ │ ├── rt5350_omnima_miniembplug.dts │ │ │ ├── rt5350_planex_mzk-dp150n.dts │ │ │ ├── rt5350_poray_m3.dts │ │ │ ├── rt5350_poray_m4-4m.dts │ │ │ ├── rt5350_poray_m4-8m.dts │ │ │ ├── rt5350_poray_m4.dtsi │ │ │ ├── rt5350_poray_x5.dts │ │ │ ├── rt5350_poray_x8.dts │ │ │ ├── rt5350_tenda_3g150b.dts │ │ │ ├── rt5350_trendnet_tew-714tru.dts │ │ │ ├── rt5350_unbranded_a5-v11.dts │ │ │ ├── rt5350_vocore_vocore-16m.dts │ │ │ ├── rt5350_vocore_vocore-8m.dts │ │ │ ├── rt5350_vocore_vocore.dtsi │ │ │ ├── rt5350_wansview_ncs601w.dts │ │ │ ├── rt5350_wiznet_wizfi630a.dts │ │ │ ├── rt5350_zorlik_zl5900v2.dts │ │ │ └── rt5350_zyxel_keenetic-start.dts │ │ ├── files-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 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── firmware │ │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ ├── init.d │ │ │ │ │ │ ├── bootcount │ │ │ │ │ │ └── set-irq-affinity │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ ├── lib │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── platform.sh │ │ │ │ │ │ └── ubnt.sh │ │ │ │ └── sbin │ │ │ │ │ └── fixup-mac-address │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt76x8 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-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 │ │ │ ├── 0200-linkit_bootstrap.patch │ │ │ ├── 100-mt7621-core-detect-hack.patch │ │ │ ├── 101-mt7621-timer.patch │ │ │ ├── 102-mt7621-fix-cpu-clk-add-clkdev.patch │ │ │ ├── 105-mt7621-memory-detect.patch │ │ │ ├── 110-mt7621-perfctr-fix.patch │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ ├── 302-spi-nor-add-gd25q512.patch │ │ │ ├── 304-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ └── 999-fix-pci-init-mt7620.patch │ │ ├── rt288x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 04_handle_checksumming │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 04_handle_checksumming │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── 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 │ │ │ └── s5pv210_embedsky_tq210.dts │ │ ├── files-4.14 │ │ │ └── drivers │ │ │ │ └── mtd │ │ │ │ └── nand │ │ │ │ └── s5pxx_nand.c │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 001-s5pv210-nand.patch │ │ │ └── 002-dm9000-clk.patch │ │ └── s5pv210 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── sunxi │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 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 │ │ │ ├── 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 │ ├── tegra │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── generic-bootscript │ │ ├── patches-4.14 │ │ │ ├── 100-serial8250-on-tegra-hsuart-recover-from-spurious-interrupts-due-to-tegra2-silicon-bug.patch │ │ │ └── 101-ARM-dtc-tegra-enable-front-panel-leds-in-TrimSlice.patch │ │ └── patches-4.19 │ │ │ ├── 100-serial8250-on-tegra-hsuart-recover-from-spurious-interrupts-due-to-tegra2-silicon-bug.patch │ │ │ └── 101-ARM-dtc-tegra-enable-front-panel-leds-in-TrimSlice.patch │ ├── 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 │ └── zynq │ │ ├── Makefile │ │ ├── base-files │ │ └── etc │ │ │ ├── board.d │ │ │ └── 02_network │ │ │ └── inittab │ │ ├── config-4.19 │ │ └── image │ │ ├── Makefile │ │ └── gen_zynq_sdcard_img.sh ├── sdk │ ├── Config.in │ ├── Makefile │ ├── convert-config.pl │ └── files │ │ ├── Config.in │ │ ├── Makefile │ │ ├── README.SDK │ │ └── include │ │ └── prepare.mk └── toolchain │ ├── Config.in │ ├── Makefile │ └── files │ ├── README.TOOLCHAIN │ └── wrapper.sh ├── toolchain ├── Config.in ├── Makefile ├── binutils │ ├── Config.in │ ├── Config.version │ ├── Makefile │ └── patches │ │ ├── 2.29.1 │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ ├── 2.31.1 │ │ ├── 100-delay_evaluation_of_alignment_expressions_in_output_sections.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ └── 2.32 │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch ├── fortify-headers │ └── Makefile ├── gcc │ ├── Config.in │ ├── Config.version │ ├── common.mk │ ├── exclude-testsuite │ ├── files │ │ └── alternate-arch-cc.in │ ├── final │ │ └── Makefile │ ├── initial │ │ └── Makefile │ ├── minimal │ │ └── Makefile │ └── patches │ │ ├── 5.5.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-no-plt-backport.patch │ │ ├── 040-fix-mips-ICE-PR-68400.patch │ │ ├── 050-libitm-Don-t-redefine-__always_inline-in-local_atomi.patch │ │ ├── 200-musl_config.patch │ │ ├── 201-musl_arm.patch │ │ ├── 202-musl_mips.patch │ │ ├── 203-musl_powerpc.patch │ │ ├── 204-musl_sh.patch │ │ ├── 205-musl_x86.patch │ │ ├── 206-musl_aarch64.patch │ │ ├── 207-musl_fixincludes.patch │ │ ├── 209-musl_libstdc++.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 240-musl-libitm-fixes.patch │ │ ├── 250-add-musl.patch │ │ ├── 260-musl-add-unwind-fix.patch │ │ ├── 270-musl-add-powerpc-softfloat-fix.patch │ │ ├── 280-musl-disable-ifunc-by-default.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-fix-MIPS-softfloat-build-issue.patch │ │ ├── 940-no-clobber-stamp-bits.patch │ │ ├── 950-cpp_file_path_translation.patch │ │ ├── 960-go_libm.patch │ │ └── 970-warn_bug.patch │ │ ├── 7.5.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ ├── 940-no-clobber-stamp-bits.patch │ │ ├── 950-cpp_file_path_translation.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ ├── 8.3.0 │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 090-rs6000-PR-89587.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 9.2.0 │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 100-Fix_uninitialised_use_in_mips_split_move.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch ├── gdb │ ├── Makefile │ ├── patches-arc │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch │ └── patches │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch ├── glibc │ ├── Makefile │ ├── common.mk │ ├── headers │ │ └── Makefile │ ├── include │ │ └── libintl.h │ └── patches │ │ ├── 001-regex-read-overrun.patch │ │ ├── 100-fix_cross_rpcgen.patch │ │ └── 200-add-dl-search-paths.patch ├── info.mk ├── kernel-headers │ └── Makefile ├── musl │ ├── Config.in │ ├── Makefile │ ├── common.mk │ ├── include │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── features.h │ │ ├── sgidefs.h │ │ └── sys │ │ │ ├── cdefs.h │ │ │ ├── glibc-types.h │ │ │ └── queue.h │ └── patches │ │ ├── 100-add_glob_onlydir.patch │ │ ├── 110-read_timezone_from_fs.patch │ │ ├── 200-add_libssp_nonshared.patch │ │ ├── 300-relative.patch │ │ ├── 400-Add-format-attribute-to-some-function-declarations.patch │ │ ├── 900-iconv_size_hack.patch │ │ └── 901-crypt_size_hack.patch ├── nasm │ └── Makefile ├── uClibc │ ├── Config.in │ ├── Makefile │ ├── common.mk │ ├── config │ │ ├── arc │ │ ├── archs │ │ ├── arm │ │ ├── armeb │ │ ├── common │ │ ├── debug │ │ ├── i386 │ │ ├── i686 │ │ ├── m68k │ │ ├── mips │ │ ├── mips64 │ │ ├── mips64.32 │ │ ├── mips64.64 │ │ ├── mips64.n32 │ │ ├── mips64el │ │ ├── mips64el.32 │ │ ├── mips64el.64 │ │ ├── mips64el.n32 │ │ ├── mipsel │ │ ├── mipsel.cobalt │ │ ├── powerpc │ │ ├── powerpc.e500 │ │ ├── sparc │ │ ├── sparc.leon │ │ └── x86_64 │ ├── headers │ │ └── Makefile │ └── utils │ │ └── Makefile └── wrapper │ └── Makefile └── tools ├── Makefile ├── autoconf ├── Makefile └── patches │ ├── 000-relocatable.patch │ ├── 001-no_emacs_lib.patch │ └── 002-musl_host_fixup.patch ├── automake ├── Makefile ├── files │ └── aclocal └── patches │ ├── 000-relocatable.patch │ └── 100-aclocal-skip-not-existing-directories.patch ├── b43-tools ├── Makefile ├── files │ └── b43-fwsquash.py └── patches │ ├── 001-fw-dirname.patch │ └── 002-no_libfl.patch ├── bc ├── Makefile └── patches │ └── 001-no_doc.patch ├── bison ├── Makefile ├── patches │ └── 100-fix-gets-removal.patch └── scripts │ └── yacc ├── cbootimage-configs └── Makefile ├── cbootimage └── Makefile ├── ccache ├── Makefile ├── files │ ├── ccache_cc │ └── ccache_cxx └── patches │ └── 100-honour-copts.patch ├── cmake ├── Makefile └── patches │ ├── 100-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 ├── coreutils ├── Makefile └── patches │ └── 001-fix-macos-vasnprintf.patch ├── dosfstools ├── Makefile └── patches │ └── 0002-Switch-to-AC_CHECK_LIB-for-iconv-library-linking.patch ├── e2fsprogs ├── Makefile └── patches │ ├── 001-exit_0_on_corrected_errors.patch │ ├── 002-dont-build-e4defrag.patch │ └── 003-no-crond.patch ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── expat └── Makefile ├── findutils ├── Makefile └── 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 │ ├── nec-enc.c │ ├── osbridge-crc.c │ ├── oseama.c │ ├── otrx.c │ ├── pc1crypt.c │ ├── ptgen.c │ ├── seama.c │ ├── seama.h │ ├── sha1.c │ ├── sha1.h │ ├── spw303v.c │ ├── srec2bin.c │ ├── tplink-safeloader.c │ ├── trx.c │ ├── trx2edips.c │ ├── trx2usr.c │ ├── uimage_padhdr.c │ ├── wrt400n.c │ ├── xorimage.c │ ├── zyimage.c │ ├── zynos.h │ └── zyxbcm.c ├── flex ├── Makefile └── patches │ ├── 100-disable-tests-docs.patch │ └── 200-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch ├── flock ├── Makefile └── src │ └── flock.c ├── genext2fs ├── Makefile └── patches │ ├── 100-c99_scanf.patch │ ├── 200-autoconf.patch │ ├── 300-blocksize-creator.patch │ └── 400-byteswap_fix.patch ├── gengetopt ├── Makefile └── patches │ └── 100-no-tests-docs.patch ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h └── sys │ └── sysmacros.h ├── isl └── Makefile ├── kernel2minor └── Makefile ├── libelf ├── Makefile └── patches │ └── 900-fix-undefined-macro-access.patch ├── libressl ├── Makefile └── patches │ ├── 001-dont-build-tests-man.patch │ └── 010-avoid-glibc.patch ├── libtool ├── Makefile ├── files │ ├── libtool-v1.5.patch │ ├── libtool-v2.2.patch │ └── libtool-v2.4.patch └── patches │ ├── 000-relocatable.patch │ ├── 001-fix-func_append.patch │ ├── 100-libdir-fixes.patch │ ├── 110-dont-use-target-dir-for-relinking.patch │ ├── 120-strip-unsafe-dirs-for-relinking.patch │ ├── 150-trailingslash.patch │ ├── 160-passthrough-ssp.patch │ └── 200-openwrt-branding.patch ├── lzma-old ├── Makefile └── patches │ ├── 100-lzma_zlib.patch │ ├── 110-ranlib.patch │ └── 120-add-cflags.patch ├── lzma ├── Makefile └── patches │ ├── 001-large_files.patch │ ├── 002-lzmp.patch │ ├── 003-compile_fixes.patch │ ├── 100-static_library.patch │ └── 101-move-copyright-to-usage-info.patch ├── m4 ├── Makefile └── patches │ ├── 001-fix-macos-vasnprintf.patch │ └── 010-glibc-change-work-around.patch ├── make-ext4fs └── Makefile ├── missing-macros ├── Makefile └── src │ ├── README │ ├── bin │ ├── help2man │ └── makeinfo │ └── m4 │ ├── as-ac-expand.m4 │ ├── as-compiler-flag.m4 │ ├── as-unaligned-access.m4 │ ├── as-version.m4 │ ├── dnet.m4 │ ├── fake-gtk-doc-check.m4 │ ├── fake-intltool.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── intdiv0.m4 │ ├── intmax.m4 │ ├── inttypes-pri.m4 │ ├── inttypes_h.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── mfx_acc.m4 │ ├── mfx_cppflags.m4 │ ├── mfx_limits.m4 │ ├── progtest.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── va_copy.m4 │ └── wint_t.m4 ├── mkimage ├── Makefile └── patches │ ├── 030-allow-to-use-different-magic.patch │ ├── 050-image_h_portability.patch │ ├── 060-remove_kernel_includes.patch │ └── 210-link-libcrypto-static.patch ├── mklibs ├── Makefile ├── include │ └── elf.h └── patches │ ├── 001-compile.patch │ ├── 002-disable_symbol_checks.patch │ ├── 003-no_copy.patch │ ├── 004-libpthread_link.patch │ ├── 005-duplicate_syms.patch │ ├── 006-uclibc_init.patch │ ├── 007-gc_sections.patch │ ├── 008-uclibc_libgcc_link.patch │ ├── 009-uclibc_libpthread_symbols.patch │ ├── 010-remove_STT_GNU_IFUNC.patch │ ├── 011-remove_multiarch.patch │ └── 100-apply-2to3.patch ├── mm-macros └── Makefile ├── mpc └── Makefile ├── mpfr ├── Makefile └── patches │ ├── 001-only_src.patch │ └── 100-freebsd-compat.patch ├── mtd-utils ├── Makefile ├── include │ ├── fls.h │ └── linux │ │ └── types.h └── patches │ ├── 100-sscanf_fix.patch │ ├── 110-portability.patch │ ├── 130-lzma_jffs2.patch │ ├── 134-freebsd_loff_t.patch │ ├── 200-libubigen-add-ubigen_write_terminator-function.patch │ ├── 201-ubinize-add-terminator-support.patch │ └── 320-mkfs.jffs2-SOURCE_DATE_EPOCH.patch ├── mtools └── Makefile ├── padjffs2 ├── Makefile └── src │ ├── Makefile │ └── padjffs2.c ├── patch-image ├── Makefile └── src │ ├── patch-cmdline.c │ └── patch-dtb.c ├── patch ├── Makefile └── patches │ ├── 010-CVE-2018-6951.patch │ ├── 020-CVE-2018-1000156.patch │ ├── 030-CVE-2018-6952.patch │ ├── 040-Fix-error-handling-with-git-style-patches.patch │ ├── 050-CVE-2019-13636.patch │ └── 060-CVE-2019-13638.patch ├── patchelf └── Makefile ├── pkg-config ├── Makefile └── files │ └── pkg-config ├── qemu ├── Makefile └── patches │ ├── 0001-vmdk-fix-endianness-bugs.patch │ ├── 0002-VMDK-introduce-VmdkExtent.patch │ ├── 0003-VMDK-bugfix-align-offset-to-cluster-in-get_whole_clu.patch │ ├── 0004-VMDK-probe-for-monolithicFlat-images.patch │ ├── 0005-VMDK-separate-vmdk_open-by-format-version.patch │ ├── 0006-VMDK-add-field-BDRVVmdkState.desc_offset.patch │ ├── 0007-VMDK-flush-multiple-extents.patch │ ├── 0008-VMDK-move-static-cid_update-flag-to-bs-field.patch │ ├── 0009-VMDK-change-get_cluster_offset-return-type.patch │ ├── 0010-VMDK-open-read-write-for-monolithicFlat-image.patch │ ├── 0011-VMDK-create-different-subformats.patch │ └── 0012-vmdk-Allow-selecting-SCSI-adapter-in-image-creation.patch ├── quilt ├── Makefile └── patches │ ├── 000-relocatable.patch │ └── 001-fix_compile.patch ├── sdimage ├── Makefile └── patches │ └── 100-deactivate-ufb.patch ├── sed └── Makefile ├── sparse └── Makefile ├── squashfs ├── Makefile └── patches │ ├── 100-lzma.patch │ ├── 110-no_nonstatic_inline.patch │ ├── 120-add-fixed-timestamp-support.patch │ └── 130-include_sysmacros.patch ├── 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 ├── 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/rosywrt/rosywrt/HEAD/.github/issue_template -------------------------------------------------------------------------------- /.github/pull_request_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/.github/pull_request_template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/README.md -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/include/hardening.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/image-commands.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/image-commands.mk -------------------------------------------------------------------------------- /include/image-legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/image-legacy.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/rootfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/rootfs.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/arc -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/darwin -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/powerpc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/powerpc64 -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/u-boot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/u-boot.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /package/base-files/files/etc/diag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/diag.sh -------------------------------------------------------------------------------- /package/base-files/files/etc/ethers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/ethers -------------------------------------------------------------------------------- /package/base-files/files/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/fstab -------------------------------------------------------------------------------- /package/base-files/files/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/hosts -------------------------------------------------------------------------------- /package/base-files/files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/inittab -------------------------------------------------------------------------------- /package/base-files/files/etc/openwrt_version: -------------------------------------------------------------------------------- 1 | %C 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /package/base-files/files/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/preinit -------------------------------------------------------------------------------- /package/base-files/files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/etc/profile -------------------------------------------------------------------------------- /package/base-files/files/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/sbin/led.sh -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/at91bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/at91bootstrap/Makefile -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/rbcfg/src/cyg_crc32.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /package/boot/tfa-layerscape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/tfa-layerscape/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-ar71xx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-at91/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-envtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-envtools/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-kirkwood/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-tegra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-tegra/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/boot/uboot-zynq/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /package/firmware/ipq-wifi/board-qxwlan_e2600ac.bin: -------------------------------------------------------------------------------- 1 | board-qxwlan-e2600ac.bin -------------------------------------------------------------------------------- /package/kernel/acx-mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/acx-mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/ath10k-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/ath10k-ct/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/broadcom-wl/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/src/wlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/broadcom-wl/src/wlc.c -------------------------------------------------------------------------------- /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/rosywrt/rosywrt/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/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/package/kernel/leds-apu2/Makefile -------------------------------------------------------------------------------- /package/kernel/leds-apu2/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/leds-apu2/src/Kconfig -------------------------------------------------------------------------------- /package/kernel/leds-apu2/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_LEDS_APU2} += leds-apu2.o 2 | -------------------------------------------------------------------------------- /package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/can.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/i2c.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/iio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/iio.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/leds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/leds.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/lib.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/nls.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/spi.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/usb.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/virt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/virt.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/wpan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/linux/modules/wpan.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mac80211/ath.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/ath.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/broadcom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/broadcom.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/intel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/intel.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/marvell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/marvell.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/ralink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/ralink.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/realtek.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mac80211/realtek.mk -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/nat46/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/nat46/Makefile -------------------------------------------------------------------------------- /package/kernel/om-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/om-watchdog/Makefile -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/rtc-rv5c386a/Makefile -------------------------------------------------------------------------------- /package/kernel/rtl8812au-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/kernel/rtl8812au-ct/Makefile -------------------------------------------------------------------------------- /package/kernel/spi-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_SPI_GPIO_CUSTOM} += spi-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/trelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gettext/src/m4/intl.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /package/libs/libcxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libcxx/Makefile -------------------------------------------------------------------------------- /package/libs/libcxx/files/g++-libcxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libcxx/files/g++-libcxx -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libiconv-full/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libunwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libunwind/Makefile -------------------------------------------------------------------------------- /package/libs/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/nghttp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/nghttp2/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/readline/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/wolfssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/wolfssl/Config.in -------------------------------------------------------------------------------- /package/libs/wolfssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/wolfssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/zlib/Config.in -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/config/gre/Makefile -------------------------------------------------------------------------------- /package/network/config/ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/config/ipip/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/vti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/config/vti/Makefile -------------------------------------------------------------------------------- /package/network/config/xfrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/config/xfrm/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/comgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/comgt/Makefile -------------------------------------------------------------------------------- /package/network/utils/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/curl/Config.in -------------------------------------------------------------------------------- /package/network/utils/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/curl/Makefile -------------------------------------------------------------------------------- /package/network/utils/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/dante/Makefile -------------------------------------------------------------------------------- /package/network/utils/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/iftop/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/iperf/Makefile -------------------------------------------------------------------------------- /package/network/utils/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/ipset/Makefile -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/iwcap/Makefile -------------------------------------------------------------------------------- /package/network/utils/umbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/umbim/Makefile -------------------------------------------------------------------------------- /package/network/utils/uqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/uqmi/Makefile -------------------------------------------------------------------------------- /package/network/utils/wwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/network/utils/wwan/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fwtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/fwtool/Makefile -------------------------------------------------------------------------------- /package/system/iucode-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/iucode-tool/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/wrg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/wrgg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/mtd/src/wrgg.h -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/opkg/files/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/opkg/files/opkg.conf -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/procd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/procd/files/procd.sh -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/ucert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/ucert/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/urandom-seed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/urandom-seed/Makefile -------------------------------------------------------------------------------- /package/system/urngd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/urngd/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/adb/Makefile -------------------------------------------------------------------------------- /package/utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/package/utils/busybox/files/sysntpd -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/ct-bugcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/ct-bugcheck/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/package/utils/f2fs-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fritz-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/fritz-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fritz-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/fritz-tools/README.md -------------------------------------------------------------------------------- /package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /package/utils/jboot-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/jboot-tools/Makefile -------------------------------------------------------------------------------- /package/utils/jboot-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/jboot-tools/README.md -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/lua5.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/lua5.3/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/files/mdadm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/mdadm/files/mdadm.init -------------------------------------------------------------------------------- /package/utils/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/mtd-utils/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/files/nvram.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/files/nvram.init -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/nvram/src/sdinitvals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/nvram/src/sdinitvals.h -------------------------------------------------------------------------------- /package/utils/osafeloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/osafeloader/Makefile -------------------------------------------------------------------------------- /package/utils/osafeloader/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/osafeloader/src/md5.c -------------------------------------------------------------------------------- /package/utils/osafeloader/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/osafeloader/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/oseama/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/oseama/src/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/oseama/src/md5.c -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/oseama/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/oseama/src/oseama.c -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/gps.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/ugps/files/gps.config -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/images.c -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /scripts/config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/qconf.cc -------------------------------------------------------------------------------- /scripts/config/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/qconf.h -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /scripts/config/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/zconf.l -------------------------------------------------------------------------------- /scripts/config/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/config/zconf.y -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/dl_github_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/dl_github_archive.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/fixup-makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/fixup-makefile.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash-502T.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/flashing/adam2flash-502T.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/eva_ramboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/flashing/eva_ramboot.py -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/gen_image_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/gen_image_generic.sh -------------------------------------------------------------------------------- /scripts/get_source_date_epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/get_source_date_epoch.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/ipkg-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/ipkg-remove -------------------------------------------------------------------------------- /scripts/json_add_image_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/json_add_image_info.py -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/linksys-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/linksys-image.sh -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/mkhash.c -------------------------------------------------------------------------------- /scripts/mkits-qsdk-ipq-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/mkits-qsdk-ipq-image.sh -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/package-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/package-metadata.pl -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/portable_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/portable_date.sh -------------------------------------------------------------------------------- /scripts/qemustart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/qemustart -------------------------------------------------------------------------------- /scripts/redboot-script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/redboot-script.pl -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/sign_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/sign_images.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/sysupgrade-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/sysupgrade-tar.sh -------------------------------------------------------------------------------- /scripts/target-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/target-metadata.pl -------------------------------------------------------------------------------- /scripts/time.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/time.pl -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/apm821xx/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/apm821xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/apm821xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/apm821xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/apm821xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/apm821xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/apm821xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/apm821xx/sata/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/apm821xx/sata/target.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/ar71xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/image/generic.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/tiny/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ar71xx/tiny/target.mk -------------------------------------------------------------------------------- /target/linux/arc770/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/arc770/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/arc770/config-4.14 -------------------------------------------------------------------------------- /target/linux/arc770/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/arc770/image/Config.in -------------------------------------------------------------------------------- /target/linux/arc770/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/arc770/image/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/arc770/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/archs38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/archs38/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/archs38/config-4.14 -------------------------------------------------------------------------------- /target/linux/archs38/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/archs38/image/Config.in -------------------------------------------------------------------------------- /target/linux/archs38/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/archs38/image/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/archs38/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/armvirt/32/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/32/config-4.14 -------------------------------------------------------------------------------- /target/linux/armvirt/32/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/32/config-4.19 -------------------------------------------------------------------------------- /target/linux/armvirt/32/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/32/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/64/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/64/config-4.14 -------------------------------------------------------------------------------- /target/linux/armvirt/64/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/64/config-4.19 -------------------------------------------------------------------------------- /target/linux/armvirt/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/64/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/Makefile -------------------------------------------------------------------------------- /target/linux/armvirt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/README -------------------------------------------------------------------------------- /target/linux/armvirt/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/config-4.14 -------------------------------------------------------------------------------- /target/linux/armvirt/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/config-4.19 -------------------------------------------------------------------------------- /target/linux/armvirt/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/armvirt/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/config-4.14 -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/sam9x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/image/sam9x.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/image/sama5.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5d3.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/at91/image/sama5d4.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/at91/sam9x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/sam9x/target.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5/config-default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/at91/sama5/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/at91/sama5/target.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath25/config-4.14 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/config-4.14 -------------------------------------------------------------------------------- /target/linux/ath79/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/config-4.19 -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7100.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar7100.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7240.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar7240.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7241.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar7241.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7242.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar7242.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar724x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar724x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9132.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar9132.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9330.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar9330.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9331.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar9331.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9341.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar9341.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9344.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar9344.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar934x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ar934x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ath79.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/ath79.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/qca953x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/qca953x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/qca9557.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/qca9557.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/qca956x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/dts/qca956x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/generic/target.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/image/generic.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ath79/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/modules.mk -------------------------------------------------------------------------------- /target/linux/ath79/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/nand/target.mk -------------------------------------------------------------------------------- /target/linux/ath79/tiny/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ath79/tiny/target.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/bcm53xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/bcm53xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/bcm53xx/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/bcm53xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/bcm53xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/bcm53xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm2708/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm2708/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/base-files/lib/upgrade/keep.d/platform: -------------------------------------------------------------------------------- 1 | /boot/config.txt 2 | -------------------------------------------------------------------------------- /target/linux/brcm2708/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm2708/image/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm2708/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm2708/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm2708/modules/i2c.mk -------------------------------------------------------------------------------- /target/linux/brcm2708/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm2708/modules/spi.mk -------------------------------------------------------------------------------- /target/linux/brcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm47xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm47xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/brcm47xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm47xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/brcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/a226g.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/a226g.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/a226m.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/a226m.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/a4001n.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/a4001n.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/gw6000.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/gw6000.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/gw6200.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/gw6200.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/hg520v.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/hg520v.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/hg553.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/hg553.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/hg622.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/hg622.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/hg655b.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/hg655b.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/magic.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/magic.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/r1000h.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/r1000h.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/rg100a.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/rg100a.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/sr102.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/sr102.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/v2110.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/v2110.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/vg50.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/dts/vg50.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/brcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm63xx/smp/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/brcm63xx/smp/target.mk -------------------------------------------------------------------------------- /target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/cns3xxx/config-4.14 -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/cns3xxx/config-4.19 -------------------------------------------------------------------------------- /target/linux/cns3xxx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/cns3xxx/image/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/gemini/config-4.14 -------------------------------------------------------------------------------- /target/linux/gemini/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/gemini/config-4.19 -------------------------------------------------------------------------------- /target/linux/gemini/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/gemini/image/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/image/copy-kernel/.gitignore: -------------------------------------------------------------------------------- 1 | copy-kernel.bin 2 | -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/generic/config-4.14 -------------------------------------------------------------------------------- /target/linux/generic/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/generic/config-4.19 -------------------------------------------------------------------------------- /target/linux/generic/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/generic/image/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/imx6/config-4.14 -------------------------------------------------------------------------------- /target/linux/imx6/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/imx6/config-4.19 -------------------------------------------------------------------------------- /target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq40xx/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq40xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq40xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/ipq40xx/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/ipq40xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq40xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq806x/config-4.14 -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq806x/config-4.19 -------------------------------------------------------------------------------- /target/linux/ipq806x/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/ipq806x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ipq806x/image/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/kirkwood/config-4.14 -------------------------------------------------------------------------------- /target/linux/kirkwood/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/kirkwood/config-4.19 -------------------------------------------------------------------------------- /target/linux/kirkwood/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/kirkwood/image/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/ase/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/ase/config-4.19 -------------------------------------------------------------------------------- /target/linux/lantiq/ase/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/ase/target.mk -------------------------------------------------------------------------------- /target/linux/lantiq/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/config-4.19 -------------------------------------------------------------------------------- /target/linux/lantiq/falcon/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/falcon/target.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/image/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/image/ar9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/image/ar9.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/danube.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/image/danube.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/falcon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/image/falcon.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/tp-link.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/image/tp-link.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/vr9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/image/vr9.mk -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/lantiq/xrx200/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/xrx200/target.mk -------------------------------------------------------------------------------- /target/linux/lantiq/xway/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/xway/config-4.19 -------------------------------------------------------------------------------- /target/linux/lantiq/xway/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/lantiq/xway/target.mk -------------------------------------------------------------------------------- /target/linux/layerscape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/layerscape/Makefile -------------------------------------------------------------------------------- /target/linux/layerscape/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/layerscape/README -------------------------------------------------------------------------------- /target/linux/layerscape/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/layerscape/modules.mk -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/be/config-default -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/be64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/be64/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/config-4.14 -------------------------------------------------------------------------------- /target/linux/malta/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/config-4.19 -------------------------------------------------------------------------------- /target/linux/malta/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/image/Makefile -------------------------------------------------------------------------------- /target/linux/malta/le/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/le/config-default -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/malta/le64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/malta/le64/target.mk -------------------------------------------------------------------------------- /target/linux/mediatek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mediatek/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mediatek/image/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mediatek/modules.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mpc85xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mpc85xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/mpc85xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mpc85xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/p1020/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mpc85xx/p1020/target.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/p2020/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mpc85xx/p2020/target.mk -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mvebu/config-4.14 -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mvebu/config-4.19 -------------------------------------------------------------------------------- /target/linux/mvebu/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mvebu/image/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mxs/config-4.19 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeon/config-4.14 -------------------------------------------------------------------------------- /target/linux/octeon/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeon/config-4.19 -------------------------------------------------------------------------------- /target/linux/octeon/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeon/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeontx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeontx/Makefile -------------------------------------------------------------------------------- /target/linux/octeontx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeontx/config-4.14 -------------------------------------------------------------------------------- /target/linux/octeontx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/octeontx/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/omap/config-4.14 -------------------------------------------------------------------------------- /target/linux/omap/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/omap/config-4.19 -------------------------------------------------------------------------------- /target/linux/omap/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/omap/image/Config.in -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap/image/ubinize.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/omap/image/ubinize.cfg -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/config-4.14 -------------------------------------------------------------------------------- /target/linux/oxnas/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/image/ox810se.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/image/ox810se.mk -------------------------------------------------------------------------------- /target/linux/oxnas/image/ox820.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/image/ox820.mk -------------------------------------------------------------------------------- /target/linux/oxnas/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/modules.mk -------------------------------------------------------------------------------- /target/linux/oxnas/ox810se/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/ox810se/target.mk -------------------------------------------------------------------------------- /target/linux/oxnas/ox820/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/oxnas/ox820/target.mk -------------------------------------------------------------------------------- /target/linux/pistachio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/pistachio/Makefile -------------------------------------------------------------------------------- /target/linux/pistachio/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/pistachio/config-4.14 -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/dts/mt7620a.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/mt7620a.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/mt7620n.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/mt7620n.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/mt7621.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/mt7621.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/rt2880.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/rt2880.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/rt3050.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/rt3050.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/rt3352.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/rt3352.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/rt3883.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/rt3883.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/rt5350.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/dts/rt5350.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/image/mt7620.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/mt7620.mk -------------------------------------------------------------------------------- /target/linux/ramips/image/mt7621.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/mt7621.mk -------------------------------------------------------------------------------- /target/linux/ramips/image/mt76x8.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/mt76x8.mk -------------------------------------------------------------------------------- /target/linux/ramips/image/rt288x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/rt288x.mk -------------------------------------------------------------------------------- /target/linux/ramips/image/rt305x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/rt305x.mk -------------------------------------------------------------------------------- /target/linux/ramips/image/rt3883.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/image/rt3883.mk -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/ramips/mt7620/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/mt7620/target.mk -------------------------------------------------------------------------------- /target/linux/ramips/mt7621/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/mt7621/target.mk -------------------------------------------------------------------------------- /target/linux/ramips/mt76x8/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/mt76x8/target.mk -------------------------------------------------------------------------------- /target/linux/ramips/rt288x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/rt288x/target.mk -------------------------------------------------------------------------------- /target/linux/ramips/rt305x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/rt305x/target.mk -------------------------------------------------------------------------------- /target/linux/ramips/rt3883/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/ramips/rt3883/target.mk -------------------------------------------------------------------------------- /target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/rb532/config-4.14 -------------------------------------------------------------------------------- /target/linux/rb532/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/rb532/image/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /target/linux/samsung/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/samsung/Makefile -------------------------------------------------------------------------------- /target/linux/samsung/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/samsung/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/target/linux/sunxi/config-4.14 -------------------------------------------------------------------------------- /target/linux/sunxi/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/sunxi/config-4.19 -------------------------------------------------------------------------------- /target/linux/sunxi/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/sunxi/image/Config.in -------------------------------------------------------------------------------- /target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/tegra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/tegra/Makefile -------------------------------------------------------------------------------- /target/linux/tegra/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/tegra/config-4.14 -------------------------------------------------------------------------------- /target/linux/tegra/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/tegra/config-4.19 -------------------------------------------------------------------------------- /target/linux/tegra/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/tegra/image/Makefile -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/64/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/64/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/64/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/generic/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/generic/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/generic/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/generic/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/generic/target.mk -------------------------------------------------------------------------------- /target/linux/x86/geode/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/geode/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/geode/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/geode/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/grub-iso.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/image/grub-iso.cfg -------------------------------------------------------------------------------- /target/linux/x86/image/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/image/grub.cfg -------------------------------------------------------------------------------- /target/linux/x86/legacy/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/legacy/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/legacy/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/legacy/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/zynq/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/zynq/config-4.19 -------------------------------------------------------------------------------- /target/linux/zynq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/linux/zynq/image/Makefile -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/binutils/Config.version -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /toolchain/gcc/exclude-testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/glibc/include/libintl.h -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/musl/Config.in -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/nasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/nasm/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/config/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/arc -------------------------------------------------------------------------------- /toolchain/uClibc/config/archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/archs -------------------------------------------------------------------------------- /toolchain/uClibc/config/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/arm -------------------------------------------------------------------------------- /toolchain/uClibc/config/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/armeb -------------------------------------------------------------------------------- /toolchain/uClibc/config/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/common -------------------------------------------------------------------------------- /toolchain/uClibc/config/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/debug -------------------------------------------------------------------------------- /toolchain/uClibc/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/i386 -------------------------------------------------------------------------------- /toolchain/uClibc/config/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/i686 -------------------------------------------------------------------------------- /toolchain/uClibc/config/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/m68k -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/mips -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/mips64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/mips64.32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/mips64.64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/mips64el -------------------------------------------------------------------------------- /toolchain/uClibc/config/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/mipsel -------------------------------------------------------------------------------- /toolchain/uClibc/config/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/powerpc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/sparc -------------------------------------------------------------------------------- /toolchain/uClibc/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/config/x86_64 -------------------------------------------------------------------------------- /toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bc/patches/001-no_doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/bc/patches/001-no_doc.patch -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/bison/scripts/yacc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec bison -y "$@" 3 | -------------------------------------------------------------------------------- /tools/cbootimage-configs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/cbootimage-configs/Makefile -------------------------------------------------------------------------------- /tools/cbootimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/cbootimage/Makefile -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/coreutils/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/expat/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/mkzcfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/oseama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/otrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyxbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/firmware-utils/src/zyxbcm.c -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/genext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/genext2fs/Makefile -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/isl/Makefile -------------------------------------------------------------------------------- /tools/kernel2minor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/kernel2minor/Makefile -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libressl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/libressl/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzma/patches/002-lzmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/lzma/patches/002-lzmp.patch -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/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/rosywrt/rosywrt/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch-image/src/patch-dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/patch-image/src/patch-dtb.c -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/pkg-config/files/pkg-config -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/sdimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/sdimage/Makefile -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfskit4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/squashfskit4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/tar/Makefile -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/wrt350nv2-builder/src/md5.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/wrt350nv2-builder/src/md5.h -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/zip/Makefile -------------------------------------------------------------------------------- /tools/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosywrt/rosywrt/HEAD/tools/zlib/Makefile --------------------------------------------------------------------------------