├── .gitattributes ├── .github ├── issue_template └── pull_request_template ├── .gitignore ├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README ├── 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 ├── hardening.mk ├── host-build.mk ├── image-commands.mk ├── image-legacy.mk ├── image.mk ├── kernel-build.mk ├── kernel-defaults.mk ├── kernel-version.mk ├── kernel.mk ├── netfilter.mk ├── nls.mk ├── package-bin.mk ├── package-defaults.mk ├── package-dumpinfo.mk ├── package-ipkg.mk ├── package-seccomp.mk ├── package.mk ├── prereq-build.mk ├── prereq.mk ├── quilt.mk ├── rootfs.mk ├── scan.awk ├── scan.mk ├── scons.mk ├── shell.sh ├── site │ ├── aarch64 │ ├── aarch64_be │ ├── arc │ ├── arm │ ├── armeb │ ├── i386 │ ├── i486 │ ├── i686 │ ├── linux │ ├── m68k │ ├── mips │ ├── mips64 │ ├── mips64el │ ├── mipsel │ ├── powerpc │ ├── 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 │ │ │ ├── fstab │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── hotplug.d │ │ │ │ └── net │ │ │ │ │ └── 00-sysctl │ │ │ ├── init.d │ │ │ │ ├── boot │ │ │ │ ├── done │ │ │ │ ├── gpio_switch │ │ │ │ ├── led │ │ │ │ ├── sysctl │ │ │ │ ├── sysfixtime │ │ │ │ ├── system │ │ │ │ ├── umount │ │ │ │ └── urandom_seed │ │ │ ├── inittab │ │ │ ├── iproute2 │ │ │ │ ├── rt_protos │ │ │ │ └── rt_tables │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── os-release │ │ │ ├── passwd │ │ │ ├── preinit │ │ │ ├── profile │ │ │ ├── protocols │ │ │ ├── rc.button │ │ │ │ ├── failsafe │ │ │ │ ├── power │ │ │ │ ├── reset │ │ │ │ └── rfkill │ │ │ ├── rc.common │ │ │ ├── rc.local │ │ │ ├── services │ │ │ ├── shadow │ │ │ ├── shells │ │ │ ├── sysctl.conf │ │ │ ├── sysctl.d │ │ │ │ └── local.conf │ │ │ ├── sysupgrade.conf │ │ │ └── uci-defaults │ │ │ │ ├── 10_migrate-shadow │ │ │ │ ├── 11_migrate-sysctl │ │ │ │ ├── 12_network-generate-ula │ │ │ │ └── 13_fix_group_user │ │ ├── lib │ │ │ ├── functions.sh │ │ │ ├── functions │ │ │ │ ├── leds.sh │ │ │ │ ├── network.sh │ │ │ │ ├── preinit.sh │ │ │ │ ├── service.sh │ │ │ │ ├── system.sh │ │ │ │ └── uci-defaults.sh │ │ │ ├── preinit │ │ │ │ ├── 02_default_set_state │ │ │ │ ├── 02_sysinfo │ │ │ │ ├── 10_indicate_failsafe │ │ │ │ ├── 10_indicate_preinit │ │ │ │ ├── 30_failsafe_wait │ │ │ │ ├── 40_run_failsafe_hook │ │ │ │ ├── 50_indicate_regular_preinit │ │ │ │ ├── 70_initramfs_test │ │ │ │ ├── 80_mount_root │ │ │ │ ├── 81_urandom_seed │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ └── 99_10_run_init │ │ │ └── upgrade │ │ │ │ ├── common.sh │ │ │ │ ├── fwtool.sh │ │ │ │ ├── keep.d │ │ │ │ └── base-files-essential │ │ │ │ ├── nand.sh │ │ │ │ └── stage2 │ │ ├── rom │ │ │ └── note │ │ ├── sbin │ │ │ ├── firstboot │ │ │ ├── hotplug-call │ │ │ ├── led.sh │ │ │ ├── sysupgrade │ │ │ ├── urandom_seed │ │ │ └── wifi │ │ └── usr │ │ │ ├── lib │ │ │ └── os-release │ │ │ └── libexec │ │ │ └── login.sh │ └── image-config.in ├── boot │ ├── apex │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 100-openwrt_nslu2_armeb_config.patch │ │ │ ├── 120-openwrt_nslu2_16mb_armeb_config.patch │ │ │ ├── 140-openwrt_fsg3_armeb_config.patch │ │ │ ├── 150-limit_ram_to_64mb.patch │ │ │ └── 160-openwrt_nas100d_armeb_config.patch │ ├── fconfig │ │ └── Makefile │ ├── grub2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-grub_setup_root.patch │ │ │ ├── 101-disable-gettext-check-macro-version.patch │ │ │ └── 200-fix-gets-removal.patch │ ├── imx-bootlets │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-skip_sb_generation.patch │ │ │ ├── 002-set_elftosb_config.patch │ │ │ └── 003-add-olinuxino.patch │ ├── kexec-tools │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── kdump.config │ │ │ ├── kdump.defaults │ │ │ └── kdump.init │ │ └── patches │ │ │ ├── 100-format_string_fix.patch │ │ │ ├── 110-fix-vmcore-dmsg-compilation-error.patch │ │ │ ├── 120-fail-to-get-symbol-debug.patch │ │ │ └── 130-dont-use-percentL.patch │ ├── kobs-ng │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-compile.patch │ │ │ ├── 002-add-init-size-param.patch │ │ │ ├── 003-raw-mode.patch │ │ │ └── 004-fix-cal_nfc_geometry.patch │ ├── rbcfg │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── cyg_crc.h │ │ │ ├── cyg_crc32.c │ │ │ ├── main.c │ │ │ └── rbcfg.h │ ├── uboot-ar71xx │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 0001-upstream-Reproducible-U-Boot-build-support-using-SOURCE_DATE_.patch │ │ │ ├── 0002-upstream-Makefile-Reproducible-U-Boot-build-support.patch │ │ │ ├── 001-ar71xx.patch │ │ │ ├── 002-ar71xx-spi.patch │ │ │ ├── 010-enet-ag71xx.patch │ │ │ ├── 011-switch-rtl8366sr.patch │ │ │ ├── 020-freebsd-compat.patch │ │ │ ├── 021-darwin_compat.patch │ │ │ ├── 022-getline_backport.patch │ │ │ ├── 030-no_examples.patch │ │ │ ├── 040-no_extern_inline.patch │ │ │ └── 041-no_weak_alias.patch │ │ └── src │ │ │ ├── board │ │ │ └── zyxel │ │ │ │ └── nbg460n │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── nbg460n.c │ │ │ │ └── u-boot.lds │ │ │ ├── cpu │ │ │ └── mips │ │ │ │ └── ar71xx_serial.c │ │ │ ├── drivers │ │ │ ├── net │ │ │ │ ├── ag71xx.c │ │ │ │ ├── ag71xx.h │ │ │ │ └── phy │ │ │ │ │ ├── rtl8366.h │ │ │ │ │ └── rtl8366_mii.c │ │ │ └── spi │ │ │ │ └── ar71xx_spi.c │ │ │ └── include │ │ │ ├── asm-mips │ │ │ ├── ar71xx.h │ │ │ └── ar71xx_gpio.h │ │ │ └── configs │ │ │ └── nbg460n.h │ ├── uboot-at91 │ │ └── Makefile │ ├── uboot-envtools │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── ar71xx │ │ │ ├── cns3xxx │ │ │ ├── imx6 │ │ │ ├── ipq │ │ │ ├── kirkwood │ │ │ ├── lantiq │ │ │ ├── mvebu │ │ │ ├── mxs │ │ │ ├── oxnas │ │ │ ├── pistachio │ │ │ ├── ramips │ │ │ └── uboot-envtools.sh │ │ └── patches │ │ │ ├── 001-compile.patch │ │ │ ├── 200-fw_env_no_aes.patch │ │ │ ├── 300-support-env-in-ubivol-chardev.patch │ │ │ └── 400-u-boot-2015.10-stdint.patch │ ├── uboot-fritz4040 │ │ ├── Makefile │ │ ├── files │ │ │ └── upload-to-f4040.sh │ │ └── patches │ │ │ ├── 100-private-libgcc.patch │ │ │ └── 110-portability.patch │ ├── uboot-imx6 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gcc-5-compiler.patch │ │ │ ├── 002-use-static-inline.patch │ │ │ ├── 003-use-weak-in-board.patch │ │ │ ├── 004-use-weak-in-main.patch │ │ │ ├── 100-wandboard-enable-fit.patch │ │ │ └── 110-wandboard-owrt-env.patch │ ├── uboot-kirkwood │ │ ├── Makefile │ │ └── patches │ │ │ ├── 007-nsa310-uboot-generic.patch │ │ │ ├── 008-nsa325-uboot-generic.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 │ │ │ ├── 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 │ ├── uboot-layerscape-32b │ │ └── Makefile │ ├── uboot-layerscape │ │ └── Makefile │ ├── uboot-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-clearfog-generate-random-MAC-address.patch │ │ │ ├── 0002-clearfog-reset-usom-onboard-1512-phy.patch │ │ │ ├── 0003-clearfog-enable-distro-boot-code.patch │ │ │ └── 0004-clearfog-enable-setexpr-command-by-default.patch │ ├── uboot-mxs │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-add-i2se-duckbill.patch │ ├── uboot-omap │ │ ├── Makefile │ │ ├── files │ │ │ └── uEnv-default.txt │ │ └── patches │ │ │ ├── 101-disable-thumb-omap3.patch │ │ │ ├── 102-minify-spl.patch │ │ │ ├── 103-disable-fat-write-spl.patch │ │ │ └── 104-omap3-overo-enable-thumb.patch │ ├── 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 │ │ │ └── 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 │ │ │ ├── 010-dt-sync-files-with-kernel.patch │ │ │ ├── 011-dt-sync-dts-files-with-kernel.patch │ │ │ ├── 012-sun6i-fix-clock_twi_onoff.patch │ │ │ ├── 013-enable-realtek-phy.patch │ │ │ ├── 014-fix-gmac-init.patch │ │ │ ├── 015-fix-2nd-usb-ctrler-on-sun47i.patch │ │ │ ├── 016-spl-print-mmc-slot.patch │ │ │ ├── 017-usb-add-support-for-usb3-vbus-pin.patch │ │ │ ├── 018-usb-specify-vbus-pins-on-orangepis.patch │ │ │ ├── 019-sid-add-efuse-support-for-h3-a83t.patch │ │ │ ├── 020-boot-display-board-model-on-startup.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 │ │ ├── uEnv-default.txt │ │ └── uEnv-pangolin.txt │ ├── uboot-xburst │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-qi_lb60-add-nand-spl-support.patch │ │ │ ├── 0002-qi_lb60-add-software-usbboot-support.patch │ │ │ ├── 0003-add-mmc-support.patch │ │ │ ├── 0004-add-more-boot-options-F1-F2-F3-F4-M-S.patch │ │ │ ├── 0005-add-nanonote-lcd-support.patch │ │ │ └── 0006-enable-silent-console.patch │ ├── uboot-zynq │ │ └── Makefile │ └── yamonenv │ │ ├── Makefile │ │ └── patches │ │ └── 001-yamonenv_mtd_partition.patch ├── devel │ ├── binutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Do-not-pass-host-compiler-sanitization-flags-on-to-l.patch │ │ │ └── 0002-When-building-target-binaries-ensure-that-the-warnin.patch │ ├── gdb-arc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-no_extern_inline.patch │ │ │ ├── 110-no_testsuite.patch │ │ │ └── 120-fix-compile-flag-mismatch.patch │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gdb-pr14523-mips-signal-number.patch │ │ │ ├── 100-musl_fix.patch │ │ │ ├── 110-shared_libgcc.patch │ │ │ └── 120-sigprocmask-invalid-call.patch │ ├── perf │ │ ├── Makefile │ │ ├── musl-compat.h │ │ └── musl-include │ │ │ ├── asm │ │ │ └── errno.h │ │ │ └── string.h │ ├── strace │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-workaround--pt-reg-collisions-ppc.patch │ ├── trace-cmd │ │ ├── Makefile │ │ └── patches │ │ │ └── 110-mac80211_tracepoint.patch │ └── valgrind │ │ ├── Makefile │ │ ├── files │ │ └── default.supp │ │ └── patches │ │ ├── 100-fix_configure_check.patch │ │ └── 130-fix_arm_arch_detection.patch ├── firmware │ ├── am33x-cm3 │ │ └── Makefile │ ├── ath10k-firmware │ │ └── Makefile │ ├── b43legacy-firmware │ │ └── Makefile │ ├── fman-ucode │ │ └── Makefile │ ├── ipq-wifi │ │ ├── Makefile │ │ ├── board-fritz4040.bin │ │ ├── board-nbg6617.bin │ │ └── board-rt-ac58u.bin │ ├── ixp4xx-microcode │ │ ├── Makefile │ │ └── src │ │ │ ├── IxNpeMicrocode.h │ │ │ └── LICENSE.IPL │ ├── lantiq │ │ └── dsl-vrx200-firmware-xdsl │ │ │ └── Makefile │ ├── linux-firmware │ │ ├── Makefile │ │ ├── broadcom.mk │ │ ├── cis.mk │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── mediatek.mk │ │ ├── qca.mk │ │ ├── realtek.mk │ │ └── ti.mk │ ├── ppfe-firmware │ │ └── Makefile │ ├── prism54-firmware │ │ └── Makefile │ ├── rcw │ │ └── Makefile │ └── vsc73x5-ucode │ │ ├── Makefile │ │ └── files │ │ └── Makefile ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-initial-macaddr.patch │ │ │ └── 300-api_sync.patch │ ├── ar7-atm │ │ ├── Config.in │ │ ├── Makefile │ │ ├── patches-D7.04.03.00 │ │ │ ├── 090-no-date-time.patch │ │ │ ├── 100-compile_fix.patch │ │ │ ├── 110-interrupt_fix.patch │ │ │ ├── 120-no_dumb_inline.patch │ │ │ ├── 130-powercutback.patch │ │ │ ├── 140-debug_mode.patch │ │ │ ├── 150-tasklet_mode.patch │ │ │ ├── 160-module-params.patch │ │ │ ├── 170-bus_id_removal.patch │ │ │ ├── 180-git_headers_include.patch │ │ │ ├── 190-2.6.32_proc_fixes.patch │ │ │ ├── 200-2.6.37_args.patch │ │ │ ├── 210-3.3-remove-smp_lock.h.patch │ │ │ ├── 220-3.10-update_proc_code.patch │ │ │ ├── 230-compile_fixes.patch │ │ │ ├── 240-3.18_fixes.patch │ │ │ └── 250-4.1_fixes.patch │ │ └── patches-D7.05.01.00 │ │ │ ├── 090-no-date-time.patch │ │ │ ├── 100-compile_fix.patch │ │ │ ├── 110-interrupt_fix.patch │ │ │ ├── 120-no_dumb_inline.patch │ │ │ ├── 130-powercutback.patch │ │ │ ├── 140-debug_mode.patch │ │ │ ├── 150-tasklet_mode.patch │ │ │ ├── 160-module-params.patch │ │ │ ├── 170-bus_id_removal.patch │ │ │ ├── 180-git_headers_include.patch │ │ │ ├── 190-2.6.32_proc_fixes.patch │ │ │ ├── 200-2.6.37_args.patch │ │ │ ├── 210-3.3-remove-smp_lock.h.patch │ │ │ ├── 220-3.10-update_proc_code.patch │ │ │ ├── 240-3.18_fixes.patch │ │ │ └── 250-4.1_fixes.patch │ ├── ath10k-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-kernel_compat.patch │ │ │ └── 110-api_fix.patch │ ├── avila-wdt │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── avila-wdt.c │ ├── brcm2708-gpu-fw │ │ └── Makefile │ ├── broadcom-wl │ │ ├── Makefile │ │ ├── files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── net │ │ │ │ │ │ ├── 00-broadcom-wifi-detect │ │ │ │ │ │ └── 20-broadcom_wds │ │ │ │ └── init.d │ │ │ │ │ └── wlunbind │ │ │ └── lib │ │ │ │ └── wifi │ │ │ │ └── broadcom.sh │ │ ├── patches │ │ │ ├── 003-compat-2.6.35.patch │ │ │ ├── 004-remove-pcmcia.patch │ │ │ ├── 005-fix-mem-leak-on-unload.patch │ │ │ ├── 006-generic-dma-api.patch │ │ │ ├── 007-use-glue-driver.patch │ │ │ ├── 008-fix_virtual_interfaces.patch │ │ │ ├── 009-fix_compile_3_2.patch │ │ │ ├── 010-remove_irqf_samble_random.patch │ │ │ ├── 011-fix_compile_3_4.patch │ │ │ ├── 012-compat-3.10.patch │ │ │ ├── 013-interface-name.patch │ │ │ ├── 014-fix-band-reporting.patch │ │ │ ├── 015-support-probe-of-wds-interfaces.patch │ │ │ ├── 020-musl-fixes.patch │ │ │ ├── 030-remove_devinit_devexit.patch │ │ │ ├── 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 │ ├── 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 │ │ │ │ ├── ifxmips_mei_interface.h │ │ │ │ └── lantiq_mei.c │ │ ├── ltq-adsl │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 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 │ │ │ │ └── 100-compat.patch │ │ ├── ltq-ptm │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_ptm_adsl.c │ │ │ │ ├── ifxmips_ptm_adsl.h │ │ │ │ ├── ifxmips_ptm_amazon_se.c │ │ │ │ ├── ifxmips_ptm_ar9.c │ │ │ │ ├── ifxmips_ptm_common.h │ │ │ │ ├── ifxmips_ptm_danube.c │ │ │ │ ├── ifxmips_ptm_fw_amazon_se.h │ │ │ │ ├── ifxmips_ptm_fw_ar9.h │ │ │ │ ├── ifxmips_ptm_fw_danube.h │ │ │ │ ├── ifxmips_ptm_fw_regs_adsl.h │ │ │ │ ├── ifxmips_ptm_fw_regs_amazon_se.h │ │ │ │ ├── ifxmips_ptm_fw_regs_ar9.h │ │ │ │ ├── ifxmips_ptm_fw_regs_danube.h │ │ │ │ ├── ifxmips_ptm_fw_regs_vdsl.h │ │ │ │ ├── ifxmips_ptm_fw_regs_vr9.h │ │ │ │ ├── ifxmips_ptm_fw_vr9.h │ │ │ │ ├── ifxmips_ptm_ppe_amazon_se.h │ │ │ │ ├── ifxmips_ptm_ppe_ar9.h │ │ │ │ ├── ifxmips_ptm_ppe_common.h │ │ │ │ ├── ifxmips_ptm_ppe_danube.h │ │ │ │ ├── ifxmips_ptm_ppe_vr9.h │ │ │ │ ├── ifxmips_ptm_test.c │ │ │ │ ├── ifxmips_ptm_vdsl.c │ │ │ │ ├── ifxmips_ptm_vdsl.h │ │ │ │ └── ifxmips_ptm_vr9.c │ │ ├── ltq-tapi │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 000-portability.patch │ │ │ │ ├── 100-ifxmips.patch │ │ │ │ ├── 200-linux-37.patch │ │ │ │ └── 300-linux-310.patch │ │ ├── ltq-vdsl-mei │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 010-warnings.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ └── 101_no-date-time.patch │ │ ├── ltq-vdsl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ └── ltq-vmmc │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ └── vmmc.init │ │ │ └── patches │ │ │ ├── 000-portability.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 │ │ └── modules │ │ │ ├── 001-depends.mk │ │ │ ├── block.mk │ │ │ ├── can.mk │ │ │ ├── crypto.mk │ │ │ ├── firewire.mk │ │ │ ├── fs.mk │ │ │ ├── hwmon.mk │ │ │ ├── i2c.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 │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ ├── mac80211.hotplug │ │ │ └── regdb.txt │ │ ├── patches │ │ │ ├── 000-fix_kconfig.patch │ │ │ ├── 001-fix_build.patch │ │ │ ├── 002-change_allconfig.patch │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ ├── 004-kconfig_backport_fix.patch │ │ │ ├── 005-revert-devcoredump.patch │ │ │ ├── 006-revert-ktime-changes.patch │ │ │ ├── 007-revert-genetlink-changes.patch │ │ │ ├── 008-revert-ndo_stats64-cleanup.patch │ │ │ ├── 009-revert-mtu-changes.patch │ │ │ ├── 010-disable_rfkill.patch │ │ │ ├── 011-backport_strscpy.patch │ │ │ ├── 012-kernel_build_check.patch │ │ │ ├── 020-01-rt2x00-avoid-introducing-a-USB-dependency-in-the-rt2.patch │ │ │ ├── 020-02-rt2x00usb-do-not-anchor-rx-and-tx-urb-s.patch │ │ │ ├── 020-03-rt2x00usb-fix-anchor-initialization.patch │ │ │ ├── 020-04-rt61pci-use-entry-directly.patch │ │ │ ├── 020-05-rt2x00-call-entry-directly-in-rt2x00_dump_frame.patch │ │ │ ├── 020-06-rt2x00-remove-queue_entry-from-skbdesc.patch │ │ │ ├── 020-07-rt2500usb-don-t-mark-register-accesses-as-inline.patch │ │ │ ├── 020-08-rt2x00-rt2800lib-move-rt2800_drv_data-declaration-in.patch │ │ │ ├── 020-09-rt2800-identify-station-based-on-status-WCID.patch │ │ │ ├── 020-10-rt2x00-separte-filling-tx-status-from-rt2x00lib_txdo.patch │ │ │ ├── 020-11-rt2x00-separte-clearing-entry-from-rt2x00lib_txdone.patch │ │ │ ├── 020-12-rt2x00-add-txdone-nomatch-function.patch │ │ │ ├── 020-13-rt2x00-fixup-fill_tx_status-for-nomatch-case.patch │ │ │ ├── 020-14-rt2x00-use-txdone_nomatch-on-rt2800usb.patch │ │ │ ├── 020-15-rt2800-status-based-rate-flags-for-nomatch-case.patch │ │ │ ├── 020-16-rt2800-use-TXOP_BACKOFF-for-probe-frames.patch │ │ │ ├── 020-17-rt2x00-fix-rt2x00debug_dump_frame-comment.patch │ │ │ ├── 020-18-rt2x00-fix-TX_PWR_CFG_4-register-definition.patch │ │ │ ├── 020-19-rt2x00-add-support-for-MT7620.patch │ │ │ ├── 020-20-rt2x00-reverse-external-PA-capability-flag-logic.patch │ │ │ ├── 020-21-rt2800-fix-LNA-gain-assignment-for-MT7620.patch │ │ │ ├── 020-22-rt2800-do-VCO-calibration-after-programming-ALC.patch │ │ │ ├── 020-23-rt2800-fix-mt7620-vco-calibration-registers.patch │ │ │ ├── 020-24-rt2800-fix-mt7620-E2-channel-registers.patch │ │ │ ├── 030-rt2x00_options.patch │ │ │ ├── 040-brcmutil_option.patch │ │ │ ├── 050-lib80211_option.patch │ │ │ ├── 060-no_local_ssb_bcma.patch │ │ │ ├── 070-ath_common_config.patch │ │ │ ├── 080-ath10k_thermal_config.patch │ │ │ ├── 090-remove-cred.patch │ │ │ ├── 100-remove-cryptoapi-dependencies.patch │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ ├── 130-mac80211-hwsim-hrtimer-clock.patch │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ ├── 210-ap_scan.patch │ │ │ ├── 300-ath9k_hw-reset-AHB-WMAC-interface-on-AR91xx.patch │ │ │ ├── 301-ath9k_hw-issue-external-reset-for-QCA955x.patch │ │ │ ├── 302-ath9k_hw-set-spectral-scan-enable-bit-on-trigger-for.patch │ │ │ ├── 303-ath9k-don-t-run-periodic-and-nf-calibation-at-the-sa.patch │ │ │ ├── 304-ath9k-force-rx_clear-when-disabling-rx.patch │ │ │ ├── 305-ath9k-limit-retries-for-powersave-response-frames.patch │ │ │ ├── 306-Revert-ath9k-interpret-requested-txpower-in-EIRP-dom.patch │ │ │ ├── 307-mac80211-add-hdrlen-to-ieee80211_tx_data.patch │ │ │ ├── 308-mac80211-add-NEED_ALIGNED4_SKBS-hw-flag.patch │ │ │ ├── 309-mac80211-minstrel-Enable-STBC-and-LDPC-for-VHT-Rates.patch │ │ │ ├── 310-ath9k-fix-moredata-bit-in-PS-buffered-frame-release.patch │ │ │ ├── 311-ath9k-clear-potentially-stale-EOSP-status-bit-in-int.patch │ │ │ ├── 312-ath9k-report-tx-status-on-EOSP.patch │ │ │ ├── 313-ath9k-fix-block-ack-window-tracking-issues.patch │ │ │ ├── 314-ath9k-rename-tx_complete_work-to-hw_check_work.patch │ │ │ ├── 315-ath9k_hw-check-if-the-chip-failed-to-wake-up.patch │ │ │ ├── 316-ath9k-fix-race-condition-in-enabling-disabling-IRQs.patch │ │ │ ├── 318-0001-brcmfmac-check-brcmf_bus_get_memdump-result-for-erro.patch │ │ │ ├── 319-0002-brcmfmac-be-more-verbose-when-PSM-s-watchdog-fires.patch │ │ │ ├── 319-0003-brcmfmac-use-wiphy_read_of_freq_limits-to-respect-li.patch │ │ │ ├── 319-0004-brcmfmac-merge-two-brcmf_err-macros-into-one.patch │ │ │ ├── 319-0005-brcmfmac-switch-to-C-function-__brcmf_err-for-printi.patch │ │ │ ├── 319-0006-brcmfmac-merge-two-remaining-brcmf_err-macros.patch │ │ │ ├── 320-ath9k-clean-up-and-fix-ath_tx_count_airtime.patch │ │ │ ├── 321-mac80211-fix-CSA-in-IBSS-mode.patch │ │ │ ├── 322-mac80211-don-t-handle-filtered-frames-within-a-BA-se.patch │ │ │ ├── 323-0001-brcmfmac-Use-net_device_stats-from-struct-net_device.patch │ │ │ ├── 323-0002-brcmfmac-always-print-error-when-PSM-s-watchdog-fire.patch │ │ │ ├── 323-0003-brcmfmac-Do-not-print-the-firmware-version-as-an-err.patch │ │ │ ├── 323-0004-brcmfmac-Do-not-complain-about-country-code-00.patch │ │ │ ├── 323-0005-brcmfmac-Handle-status-BRCMF_E_STATUS_ABORT-in-cfg80.patch │ │ │ ├── 323-0006-brcmfmac-move-brcmf_txflowblock-to-bcdc-layer.patch │ │ │ ├── 323-0007-brcmfmac-move-brcmf_txcomplete-to-bcdc-layer.patch │ │ │ ├── 323-0008-brcmfmac-wrap-brcmf_fws_add_interface-into-bcdc-laye.patch │ │ │ ├── 323-0009-brcmfmac-wrap-brcmf_fws_del_interface-into-bcdc-laye.patch │ │ │ ├── 323-0010-brcmfmac-wrap-brcmf_fws_reset_interface-into-bcdc-la.patch │ │ │ ├── 324-ath9k_hw-fix-channel-maximum-power-level-test.patch │ │ │ ├── 325-mac80211-unconditionally-start-new-netdev-queues-wit.patch │ │ │ ├── 326-ath9k-fix-ar934x-OTP-offsets.patch │ │ │ ├── 327-ath10k-increase-BMI-timeout.patch │ │ │ ├── 328-ath10k-log-when-longer-bmi-cmds-happen.patch │ │ │ ├── 329-ath10k-add-BMI-parameters-to-fix-calibration-from-DT.patch │ │ │ ├── 330-ath9k-adjust-tx-power-reduction-for-US-regulatory-do.patch │ │ │ ├── 331-ath9k-fix-more-data-flag-for-buffered-multicast-pack.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 │ │ │ ├── 522-mac80211_configure_antenna_gain.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 │ │ │ ├── 600-01-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ ├── 600-02-rt2x00-rt2800lib-enable-support-for-RT3883.patch │ │ │ ├── 600-03-rt2x00-rt2800lib-add-rf_vals-for-RF3853.patch │ │ │ ├── 600-04-rt2x00-rt2800lib-enable-VCO-calibration-for-RF3853.patch │ │ │ ├── 600-05-rt2x00-rt2800lib-add-channel-configuration-function-.patch │ │ │ ├── 600-06-rt2x00-rt2800lib-enable-RF3853-support.patch │ │ │ ├── 600-07-rt2x00-rt2800lib-add-MAC-register-initialization-for.patch │ │ │ ├── 600-08-rt2x00-rt2800soc-fix-rt2800soc_disable_radio-for-RT3.patch │ │ │ ├── 600-09-rt2x00-rt2800lib-add-BBP-register-initialization-for.patch │ │ │ ├── 600-10-rt2x00-rt2800lib-add-RFCSR-initialization-for-RT3883.patch │ │ │ ├── 600-11-rt2x00-rt2800lib-use-the-extended-EEPROM-map-for-RT3.patch │ │ │ ├── 600-12-rt2x00-rt2800lib-force-rf-type-to-RF3853-on-RT3883.patch │ │ │ ├── 600-13-rt2x00-rt2800lib-add-channel-configuration-code-for-.patch │ │ │ ├── 600-14-rt2x00-rt2800lib-fix-txpower_to_dev-function-for-RT3.patch │ │ │ ├── 600-15-rt2x00-rt2800lib-use-correct-txpower-calculation-fun.patch │ │ │ ├── 600-16-rt2x00-rt2800lib-hardcode-txmixer-gain-values-to-zer.patch │ │ │ ├── 600-17-rt2x00-rt2800lib-use-correct-RT-XWI-size-for-RT3883.patch │ │ │ ├── 600-18-rt2x00-rt2800lib-fix-antenna-configuration-for-RT388.patch │ │ │ ├── 600-19-rt2x00-rt2800lib-fix-LNA-gain-configuration-for-RT38.patch │ │ │ ├── 600-20-rt2x00-rt2800lib-fix-VGC-setup-for-RT3883.patch │ │ │ ├── 600-21-rt2x00-rt2800lib-fix-EEPROM-LNA-validation-for-RT388.patch │ │ │ ├── 600-22-rt2x00-rt2800lib-fix-txpower-compensation-for-RT3883.patch │ │ │ ├── 600-23-rt2x00-rt2800mmio-add-a-workaround-for-spurious-TX_F.patch │ │ │ ├── 601-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ ├── 602-rt2x00-introduce-rt2x00eeprom.patch │ │ │ ├── 603-rt2x00-of_load_eeprom_filename.patch │ │ │ ├── 604-rt2x00-load-eeprom-on-SoC-from-a-mtd-device-defines-.patch │ │ │ ├── 606-rt2x00-allow_disabling_bands_through_platform_data.patch │ │ │ ├── 607-rt2x00-add_platform_data_mac_addr.patch │ │ │ ├── 608-rt2x00-allow_disabling_bands_through_dts.patch │ │ │ ├── 609-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch │ │ │ ├── 610-rt2x00-change-led-polarity-from-OF.patch │ │ │ ├── 611-rt2x00-add-AP+STA-support.patch │ │ │ ├── 650-rt2x00-add-support-for-external-PA-on-MT7620.patch │ │ │ ├── 651-rt2x00-remove-unneccesary-code.patch │ │ │ ├── 653-0001-rtl8xxxu-Accept-firmware-signature-0x88e0.patch │ │ │ ├── 653-0002-rtl8xxxu-Add-initial-code-to-detect-8188eu-devices.patch │ │ │ ├── 653-0003-rtl8xxxu-Add-initial-code-to-parse-8188eu-efuse.patch │ │ │ ├── 653-0004-rtl8xxxu-Detect-8188eu-parts-correctly.patch │ │ │ ├── 653-0005-rtl8xxxu-First-stab-at-rtl8188e_power_on.patch │ │ │ ├── 653-0006-rtl8xxxu-Add-rtl8188e_disabled_to_emu.patch │ │ │ ├── 653-0007-rtl8xxxu-8188e-Enable-scheduler.patch │ │ │ ├── 653-0008-rtl8xxxu-Add-rtl8188e_usb_quirk-for-enabling-MAC-TX-.patch │ │ │ ├── 653-0009-rtl8xxxu-8188e-add-REG_TXDMA_OFFSET_CHK-quirk.patch │ │ │ ├── 653-0010-rtl8xxxu-Add-reserved-page-init-parameters-for-8188e.patch │ │ │ ├── 653-0011-rtl8xxxu-Correct-TX_TOTAL_PAGE_NUM-for-8188eu.patch │ │ │ ├── 653-0012-rtl8xxxu-Add-trxff_boundary-for-8188e.patch │ │ │ ├── 653-0013-rtl8xxxu-8188eu-specify-firmware-block-size-and-set-.patch │ │ │ ├── 653-0014-rtl8xxxu-Add-8188e-mac-init-table.patch │ │ │ ├── 653-0015-rtl8xxxu-Implement-rtl8188eu_init_phy_bb.patch │ │ │ ├── 653-0016-rtl8xxxu-Implement-rtl8188eu_init_phy_rf.patch │ │ │ ├── 653-0017-rtl8xxxu-Use-auto-LLT-init-for-8188e.patch │ │ │ ├── 653-0018-rtl8xxxu-Do-not-set-REG_FPGA0_TX_INFO-on-8188eu.patch │ │ │ ├── 653-0019-rtl8xxxu-Do-not-mess-with-REG_FPGA0_XA_RF_INT_OE-eit.patch │ │ │ ├── 653-0020-rtl8xxxu-Set-transfer-page-size-for-8188eu.patch │ │ │ ├── 653-0021-rtl8xxxu-Enable-TX-report-timer-on-8188eu.patch │ │ │ ├── 653-0022-rtl8xxxu-Setup-interrupts-for-8188eu.patch │ │ │ ├── 653-0023-rtl8xxxu-Use-rxdesc16-and-32-byte-tx-descriptors-for.patch │ │ │ ├── 653-0024-rtl8xxxu-8188eu-use-same-ADDA-on-parameters-as-8723a.patch │ │ │ ├── 653-0025-rtl8xxxu-Add-PHY-IQ-calibration-code-for-8188eu.patch │ │ │ ├── 653-0026-rtl8xxxu-8188eu-uses-the-gen2-thermal-meter.patch │ │ │ ├── 653-0027-rtl8xxxu-Set-REG_USB_HRPWM-to-0-for-8188eu.patch │ │ │ ├── 653-0028-rtl8xxxu-Implement-rtl8188eu_config_channel.patch │ │ │ ├── 653-0029-rtl8xxxu-Use-gen2-H2C-commands-for-8188eu.patch │ │ │ ├── 653-0030-rtl8xxxu-Initialize-GPIO-settings-for-8188eu.patch │ │ │ ├── 653-0031-rtl8xxxu-Add-simple-rtl8188eu_rf_on-routine.patch │ │ │ ├── 653-0032-rtl8xxxu-Implement-rtl8188e_disable_rf.patch │ │ │ ├── 653-0033-rtl8xxxu-Update-8188e-efuse-definition-for-power-val.patch │ │ │ ├── 653-0034-rtl8xxxu-Implement-rtl8188e_set_tx_power.patch │ │ │ ├── 653-0035-rtl8xxxu-Implement-rtl8xxxu_fill_txdesc_v3-for-8188e.patch │ │ │ ├── 653-0036-rtl8xxxu-Add-some-8188eu-registers-and-update-CCK0_A.patch │ │ │ ├── 653-0037-rtl8xxxu-Improve-register-description-for-REG_FPGA1_.patch │ │ │ ├── 653-0038-rtl8xxxu-properly-detect-RTL8188EU-devices.patch │ │ │ ├── 653-0039-rtl8xxxu-Implement-8188eu-specific-8051-reset-functi.patch │ │ │ ├── 653-0040-rtl8xxxu-Disable-packet-DMA-aggregation-on-8188eu.patch │ │ │ ├── 653-0041-rtl8xxxu-8188eu-set-REG_OFDM0_XA_AGC_CORE1-to-match-.patch │ │ │ ├── 653-0042-rtl8xxxu-Fix-rtl8188eu-connection-fail.patch │ │ │ ├── 653-0043-rtl8xxxu-Do-not-set-auto-rate-fallback-on-8188eu.patch │ │ │ ├── 653-0044-rtl8xxxu-Enable-8188eu-driver.patch │ │ │ ├── 653-0045-rtl8xxxu-Add-rtl8188etv-to-USB-device-list.patch │ │ │ ├── 653-0046-rtl8xxxu-Add-sitecom-dongle-to-USB-device-list.patch │ │ │ ├── 653-0047-rtl8xxxu-Implement-rtl8188eu_active_to_emu.patch │ │ │ ├── 653-0048-rtl8xxxu-Implement-rtl8188eu_power_off.patch │ │ │ ├── 653-0049-rtl8xxxu-Add-rtl8188eu-USB-ID-for-D-Link-USB-GO-N150.patch │ │ │ ├── 653-0050-rtl8xxxu-Clear-SYS_FUNC_UPLL-during-power-up-on-8188.patch │ │ │ ├── 653-0051-rtl8xxxu-Early-enable-of-WEP-TKIP-security-on-8188eu.patch │ │ │ ├── 653-0052-rtl8xxxu-Correct-power-down-sequence-for-8188eu.patch │ │ │ ├── 653-0053-rtl8xxxu-Reset-8188eu-REG_GPIO_MUXCFG-on-power-off.patch │ │ │ ├── 653-0054-rtl8xxxu-Handle-devices-with-a-smaller-LLT-buffer.patch │ │ │ ├── 653-0055-rtl8xxxu-Fix-reloading-of-driver-for-8188eu-devices.patch │ │ │ ├── 653-0056-rtl8xxxu-Make-sure-to-enable-OFDM-paths-for-8188eu-i.patch │ │ │ ├── 653-0057-rtl8xxxu-Add-rpt_sel-entry-to-struct-rtl8xxxu_rxdesc.patch │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ ├── 802-libertas-set-wireless-macaddr.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 │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ ├── 930-ath10k_add_tpt_led_trigger.patch │ │ │ ├── 936-ath10k-fix-otp-failure-result.patch │ │ │ ├── 940-mwl8k_init_devices_synchronously.patch │ │ │ ├── 960-0010-ath10k-limit-htt-rx-ring-size.patch │ │ │ └── 960-0011-ath10k-limit-pci-buffer-size.patch │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mt76 │ │ └── Makefile │ ├── mwlwifi │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── rotary-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── rotary-gpio-custom.c │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── 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 │ └── wrt55agv2-spidevs │ │ ├── Makefile │ │ └── src │ │ ├── Kconfig │ │ ├── Makefile │ │ └── wrt55agv2_spidevs.c ├── libs │ ├── argp-standalone │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-throw-in-funcdef.patch │ │ │ └── 002-no_optimize.patch │ ├── cyassl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 400-additional_compatibility.patch │ ├── elfutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-argp_standalone.patch │ │ │ ├── 003-libint-stub.patch │ │ │ ├── 005-build_only_libs.patch │ │ │ ├── 006-libdw_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-aarch64_support.patch │ ├── libconfig │ │ └── Makefile │ ├── libevent2 │ │ └── Makefile │ ├── libiconv-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-strip_charsets.patch │ │ │ ├── 101-autotools.patch │ │ │ ├── 103-configure_ac_fix.patch │ │ │ ├── 200-work-with-libtool2.patch │ │ │ └── 300-fortify-source-compat.patch │ ├── libiconv │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── iconv.c │ │ │ ├── include │ │ │ ├── charmaps.h │ │ │ ├── charmaps │ │ │ │ ├── iso-8859-10.h │ │ │ │ ├── iso-8859-13.h │ │ │ │ ├── iso-8859-14.h │ │ │ │ ├── iso-8859-16.h │ │ │ │ ├── iso-8859-2.h │ │ │ │ ├── iso-8859-3.h │ │ │ │ ├── iso-8859-4.h │ │ │ │ ├── iso-8859-5.h │ │ │ │ ├── iso-8859-6.h │ │ │ │ ├── iso-8859-7.h │ │ │ │ ├── iso-8859-8.h │ │ │ │ ├── iso-8859-9.h │ │ │ │ ├── koi8-r.h │ │ │ │ ├── windows-1250.h │ │ │ │ ├── windows-1251.h │ │ │ │ ├── windows-1252.h │ │ │ │ ├── windows-1253.h │ │ │ │ ├── windows-1254.h │ │ │ │ ├── windows-1255.h │ │ │ │ ├── windows-1256.h │ │ │ │ ├── windows-1257.h │ │ │ │ ├── windows-1258.h │ │ │ │ └── windows-874.h │ │ │ └── iconv.h │ │ │ └── m4 │ │ │ └── iconv.m4 │ ├── libjson-c │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-libm.patch │ ├── libmnl │ │ └── Makefile │ ├── libnetfilter-conntrack │ │ └── Makefile │ ├── libnetfilter-cthelper │ │ └── Makefile │ ├── libnetfilter-cttimeout │ │ └── Makefile │ ├── libnetfilter-log │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-build-remove-unnecessary-pkgconfig-config.status-dep.patch │ │ │ ├── 0002-build-remove-unused-lines-in-Makefile.am.patch │ │ │ ├── 0003-build-resolve-automake-1.12-warnings.patch │ │ │ ├── 0004-Add-include-needed-for-integer-type-definition.patch │ │ │ ├── 0005-configure-uclinux-is-also-linux.patch │ │ │ └── 0006-configure-add-without-ipulog-option-to-disable-libip.patch │ ├── libnetfilter-queue │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-checksum_computation.patch │ ├── libnfnetlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-missing_include.patch │ ├── libnftnl │ │ └── Makefile │ ├── libnl-tiny │ │ ├── Makefile │ │ ├── files │ │ │ └── libnl-tiny.pc │ │ └── src │ │ │ ├── Makefile │ │ │ ├── attr.c │ │ │ ├── cache.c │ │ │ ├── cache_mngt.c │ │ │ ├── error.c │ │ │ ├── genl.c │ │ │ ├── genl_ctrl.c │ │ │ ├── genl_family.c │ │ │ ├── genl_mngt.c │ │ │ ├── handlers.c │ │ │ ├── include │ │ │ ├── netlink-generic.h │ │ │ ├── netlink-local.h │ │ │ ├── netlink-types.h │ │ │ ├── netlink │ │ │ │ ├── addr.h │ │ │ │ ├── attr.h │ │ │ │ ├── cache-api.h │ │ │ │ ├── cache.h │ │ │ │ ├── data.h │ │ │ │ ├── errno.h │ │ │ │ ├── genl │ │ │ │ │ ├── ctrl.h │ │ │ │ │ ├── family.h │ │ │ │ │ ├── genl.h │ │ │ │ │ └── mngt.h │ │ │ │ ├── handlers.h │ │ │ │ ├── list.h │ │ │ │ ├── msg.h │ │ │ │ ├── netlink-compat.h │ │ │ │ ├── netlink-kernel.h │ │ │ │ ├── netlink.h │ │ │ │ ├── object-api.h │ │ │ │ ├── object.h │ │ │ │ ├── socket.h │ │ │ │ ├── types.h │ │ │ │ ├── utils.h │ │ │ │ └── version.h │ │ │ └── unl.h │ │ │ ├── msg.c │ │ │ ├── nl.c │ │ │ ├── object.c │ │ │ ├── socket.c │ │ │ └── unl.c │ ├── libnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-lib-Escape-usage-of-strerror_l-if-it-doesn-t-exist-i.patch │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-Fix-compiler_state_t.ai-usage-when-INET6-is-not-defi.patch │ │ │ ├── 002-Add-missing-compiler_state_t-parameter.patch │ │ │ ├── 100-debian_shared_lib.patch │ │ │ ├── 102-makefile_disable_manpages.patch │ │ │ ├── 103-makefile_flex_workaround.patch │ │ │ ├── 201-space_optimization.patch │ │ │ ├── 202-protocol_api.patch │ │ │ ├── 203-undef_iw_mode_monitor.patch │ │ │ └── 204-usb-bus-path.patch │ ├── libroxml │ │ └── Makefile │ ├── librpc │ │ └── Makefile │ ├── libtool │ │ ├── Makefile │ │ └── patches │ │ │ └── 160-passthrough-ssp.patch │ ├── libubox │ │ └── Makefile │ ├── libunwind │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-disable-tests.patch │ │ │ ├── 002-fix-building-getcontext_S.patch │ │ │ └── 003-fix-missing-ef_reg-defs-with-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 │ │ │ ├── 200-fix_missing_include.patch │ │ │ ├── 500-cross.patch │ │ │ └── 900-terminfo.patch │ ├── nettle │ │ ├── Config.in │ │ └── Makefile │ ├── openssl │ │ ├── Config.in │ │ ├── Makefile │ │ ├── include │ │ │ └── crypto │ │ │ │ └── cryptodev.h │ │ └── patches │ │ │ ├── 110-optimize-for-size.patch │ │ │ ├── 130-perl-path.patch │ │ │ ├── 140-makefile-dirs.patch │ │ │ ├── 150-no_engines.patch │ │ │ ├── 160-disable_doc_tests.patch │ │ │ ├── 170-bash_path.patch │ │ │ ├── 180-fix_link_segfault.patch │ │ │ ├── 190-remove_timestamp_check.patch │ │ │ └── 200-parallel_build.patch │ ├── popt │ │ └── Makefile │ ├── readline │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-install_perm.patch │ ├── sysfsutils │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-mnt_path_check.patch │ ├── toolchain │ │ ├── Makefile │ │ ├── eglibc-files │ │ │ └── etc │ │ │ │ └── nsswitch.conf │ │ └── glibc-files │ │ │ └── etc │ │ │ └── nsswitch.conf │ ├── uclibc++ │ │ ├── Makefile │ │ ├── files │ │ │ └── config.default │ │ └── patches │ │ │ ├── 002-path_to_bash.patch │ │ │ ├── 006-eabi_fix.patch │ │ │ ├── 010-honor-ldflags.patch │ │ │ ├── 020-template-fix.patch │ │ │ ├── 030-memory_corruption_fix.patch │ │ │ ├── 040-delete-c++14.patch │ │ │ └── 050-Bugfix-erase-on-derived-__base_associative.patch │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ └── zlib │ │ └── Makefile ├── 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 │ │ │ │ └── dsl_control │ │ │ └── patches │ │ │ │ ├── 001-stupid_breakage_fix.patch │ │ │ │ └── 010-eglibc_compile_fix.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 │ │ │ │ └── init.d │ │ │ │ │ └── network │ │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── dhcp.script │ │ │ │ │ └── proto │ │ │ │ │ │ └── dhcp.sh │ │ │ │ └── network │ │ │ │ │ └── config.sh │ │ │ │ ├── sbin │ │ │ │ ├── devstatus │ │ │ │ ├── ifdown │ │ │ │ ├── ifstatus │ │ │ │ └── ifup │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── udhcpc │ │ │ │ └── default.script │ │ ├── qos-scripts │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── qos │ │ │ │ ├── hotplug.d │ │ │ │ │ └── iface │ │ │ │ │ │ └── 10-qos │ │ │ │ └── init.d │ │ │ │ │ └── qos │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ ├── qos-start │ │ │ │ ├── qos-stat │ │ │ │ └── qos-stop │ │ │ │ └── lib │ │ │ │ └── qos │ │ │ │ ├── generate.sh │ │ │ │ └── tcrules.awk │ │ ├── soloscli │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── atm │ │ │ │ │ │ │ └── 15-solos-init │ │ │ │ │ └── uci-default │ │ │ │ │ │ └── solos │ │ │ │ └── solos-log-stats │ │ │ └── patches │ │ │ │ ├── 001-no-driver.patch │ │ │ │ └── 002-cflags.patch │ │ ├── swconfig │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── switch.sh │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── cli.c │ │ │ │ ├── swlib.c │ │ │ │ ├── swlib.h │ │ │ │ └── uci.c │ │ ├── vti │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── vti.sh │ │ └── vxlan │ │ │ ├── Makefile │ │ │ └── files │ │ │ └── vxlan.sh │ ├── ipv6 │ │ ├── 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 │ │ ├── authsae │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── lib │ │ │ │ │ └── wifi │ │ │ │ │ └── authsae.sh │ │ │ └── patches │ │ │ │ └── 100-musl_fix.patch │ │ ├── dnsmasq │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dhcp-script.sh │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.init │ │ │ │ ├── dnsmasqsec.hotplug │ │ │ │ └── rfc6761.conf │ │ │ └── patches │ │ │ │ ├── 010-Tweak-ICMP-ping-check-logic-for-DHCPv4.patch │ │ │ │ ├── 011-Remove-ping-check-of-configured-DHCP-address.patch │ │ │ │ ├── 020-Try-other-servers-if-first-returns-REFUSED-when-stri.patch │ │ │ │ ├── 110-ipset-remove-old-kernel-support.patch │ │ │ │ ├── 210-dnssec-improve-timestamp-heuristic.patch │ │ │ │ └── 230-fix-poll-h-include-warning-on-musl.patch │ │ ├── dropbear │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dropbear.config │ │ │ │ └── dropbear.init │ │ │ └── patches │ │ │ │ ├── 010-runtime-maxauthtries.patch │ │ │ │ ├── 100-pubkey_path.patch │ │ │ │ ├── 110-change_user.patch │ │ │ │ ├── 120-openwrt_options.patch │ │ │ │ ├── 130-ssh_ignore_x_args.patch │ │ │ │ ├── 140-disable_assert.patch │ │ │ │ ├── 150-dbconvert_standalone.patch │ │ │ │ ├── 600-allow-blank-root-password.patch │ │ │ │ └── 610-skip-default-keys-in-custom-runs.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-full.config │ │ │ │ ├── hostapd-mini.config │ │ │ │ ├── hostapd.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ └── wps-hotplug.sh │ │ │ ├── patches │ │ │ │ ├── 001-Fix-race-condition-between-AssocResp-callback-and-4a.patch │ │ │ │ ├── 002-Fix-duplicate-Reassociation-Request-frame-dropping.patch │ │ │ │ ├── 003-RSN-IBSS-Fix-TK-clearing-on-Authentication-frame-RX.patch │ │ │ │ ├── 004-hostapd-Add-possibility-to-send-debug-messages-to-sy.patch │ │ │ │ ├── 100-daemonize_fix.patch │ │ │ │ ├── 110-no_eapol_fix.patch │ │ │ │ ├── 120-disable_bridge_packet_workaround.patch │ │ │ │ ├── 200-multicall.patch │ │ │ │ ├── 300-noscan.patch │ │ │ │ ├── 310-rescan_immediately.patch │ │ │ │ ├── 320-optional_rfkill.patch │ │ │ │ ├── 330-nl80211_fix_set_freq.patch │ │ │ │ ├── 340-reload_freq_change.patch │ │ │ │ ├── 350-nl80211_del_beacon_bss.patch │ │ │ │ ├── 360-ctrl_iface_reload.patch │ │ │ │ ├── 370-ap_sta_support.patch │ │ │ │ ├── 380-disable_ctrl_iface_mib.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 │ │ │ │ ├── 462-wpa_s-support-htmode-param.patch │ │ │ │ ├── 470-survey_data_fallback.patch │ │ │ │ └── 600-ubus_support.patch │ │ │ └── src │ │ │ │ └── src │ │ │ │ ├── ap │ │ │ │ ├── ubus.c │ │ │ │ └── ubus.h │ │ │ │ └── utils │ │ │ │ └── build_features.h │ │ ├── igmpproxy │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── igmpproxy.config │ │ │ │ └── igmpproxy.init │ │ │ └── patches │ │ │ │ ├── 001-Send-IGMP-packets-with-IP-Router-Alert-option-RFC-21.patch │ │ │ │ ├── 002-Change-default-interface-state-to-disabled-wrt-29458.patch │ │ │ │ ├── 003-Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch │ │ │ │ ├── 004-Restrict-igmp-reports-forwarding-to-upstream-interfa.patch │ │ │ │ ├── 010-missing_include.patch │ │ │ │ ├── 020-Silence-downstream-interface-igmp-messages.patch │ │ │ │ ├── 100-use-monotic-clock-instead-of-time-of-day.patch │ │ │ │ ├── 200-allow_wildcard_addr.patch │ │ │ │ └── 250-fix_multiple_downlink_interfaces.patch │ │ ├── ipset-dns │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── ipset-dns.config │ │ │ │ └── ipset-dns.init │ │ │ └── patches │ │ │ │ └── 100-simultaneous-ipv4-ipv6.patch │ │ ├── lldpd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── lldpd.config │ │ │ │ └── lldpd.init │ │ ├── odhcpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.init │ │ ├── omcproxy │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── omcproxy.config │ │ │ │ └── omcproxy.init │ │ ├── openvpn-easy-rsa │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── openvpn-easy-rsa.upgrade │ │ ├── openvpn │ │ │ ├── Config-mbedtls.in │ │ │ ├── Config-nossl.in │ │ │ ├── Config-openssl.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── openvpn.config │ │ │ │ ├── openvpn.init │ │ │ │ ├── openvpn.options │ │ │ │ └── openvpn.upgrade │ │ │ └── patches │ │ │ │ ├── 001-reproducible-remove_DATE.patch │ │ │ │ ├── 100-mbedtls-disable-runtime-version-check.patch │ │ │ │ ├── 210-build_always_use_internal_lz4.patch │ │ │ │ └── 220-disable_des.patch │ │ ├── ppp │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ └── ppp │ │ │ │ │ │ ├── chap-secrets │ │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── options │ │ │ │ │ │ ├── options.pptp │ │ │ │ │ │ ├── radius.conf │ │ │ │ │ │ └── radius │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── dictionary.asnet │ │ │ │ │ │ ├── dictionary.microsoft │ │ │ │ │ │ └── servers │ │ │ │ ├── lib │ │ │ │ │ └── netifd │ │ │ │ │ │ ├── ppp-down │ │ │ │ │ │ ├── ppp-up │ │ │ │ │ │ └── ppp6-up │ │ │ │ └── ppp.sh │ │ │ ├── patches │ │ │ │ ├── 001-honor-ldflags.patch │ │ │ │ ├── 010-use_target_for_configure.patch │ │ │ │ ├── 100-debian_ip-ip_option.patch │ │ │ │ ├── 101-debian_close_dev_ppp.patch │ │ │ │ ├── 103-debian_fix_link_pidfile.patch │ │ │ │ ├── 105-debian_demand.patch │ │ │ │ ├── 106-debian_stripMSdomain.patch │ │ │ │ ├── 107-debian_pppoatm_wildcard.patch │ │ │ │ ├── 110-debian_defaultroute.patch │ │ │ │ ├── 120-debian_ipv6_updown_option.patch │ │ │ │ ├── 121-debian_adaptive_lcp_echo.patch │ │ │ │ ├── 130-no_cdefs_h.patch │ │ │ │ ├── 131-missing_prototype_macro.patch │ │ │ │ ├── 132-fix_linux_includes.patch │ │ │ │ ├── 133-fix_sha1_include.patch │ │ │ │ ├── 140-pppoe_compile_fix.patch │ │ │ │ ├── 200-makefile.patch │ │ │ │ ├── 201-mppe_mppc_1.1.patch │ │ │ │ ├── 202-no_strip.patch │ │ │ │ ├── 203-opt_flags.patch │ │ │ │ ├── 204-radius_config.patch │ │ │ │ ├── 205-no_exponential_timeout.patch │ │ │ │ ├── 206-compensate_time_change.patch │ │ │ │ ├── 207-lcp_mtu_max.patch │ │ │ │ ├── 208-fix_status_code.patch │ │ │ │ ├── 300-filter-pcap-includes-lib.patch │ │ │ │ ├── 310-precompile_filter.patch │ │ │ │ ├── 320-custom_iface_names.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 │ │ │ │ ├── 520-uniq.patch │ │ │ │ ├── 530-pppoe_send_padt.patch │ │ │ │ ├── 531-pppoe_no_disconnect_warning.patch │ │ │ │ ├── 540-save-pppol2tp_fd_str.patch │ │ │ │ └── 550-fix-printer-args.patch │ │ │ └── utils │ │ │ │ └── pfc.c │ │ ├── relayd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── relay.init │ │ ├── samba36 │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── samba.config │ │ │ │ ├── samba.init │ │ │ │ └── smb.conf.template │ │ │ └── patches │ │ │ │ ├── 010-patch-cve-2015-5252.patch │ │ │ │ ├── 011-patch-cve-2015-5296.patch │ │ │ │ ├── 012-patch-cve-2015-5299.patch │ │ │ │ ├── 015-patch-cve-2015-7560.patch │ │ │ │ ├── 020-CVE-preparation-v3-6.patch │ │ │ │ ├── 021-CVE-preparation-v3-6-addition.patch │ │ │ │ ├── 022-CVE-2015-5370-v3-6.patch │ │ │ │ ├── 023-CVE-2016-2110-v3-6.patch │ │ │ │ ├── 024-CVE-2016-2111-v3-6.patch │ │ │ │ ├── 025-CVE-2016-2112-v3-6.patch │ │ │ │ ├── 026-CVE-2016-2115-v3-6.patch │ │ │ │ ├── 027-CVE-2016-2118-v3-6.patch │ │ │ │ ├── 028-CVE-2017-7494-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 │ └── 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 │ │ ├── conntrack-tools │ │ ├── Makefile │ │ └── files │ │ │ └── conntrackd.init │ │ ├── curl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-no_docs_tests.patch │ │ │ └── 310-mbedtls-disable-runtime-version-check.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-fix-RTLD_NEXT.patch │ │ ├── ebtables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-musl_fix.patch │ │ │ └── 200-fix-extension-init.patch │ │ ├── iftop │ │ └── Makefile │ │ ├── iperf │ │ └── Makefile │ │ ├── iperf3 │ │ └── Makefile │ │ ├── iproute2 │ │ ├── Makefile │ │ ├── files │ │ │ └── 15-teql │ │ └── patches │ │ │ ├── 001-config.patch │ │ │ ├── 004-darwin_fixes.patch │ │ │ ├── 006-no_sctp.patch │ │ │ ├── 007-no_arpd.patch │ │ │ ├── 008-no_netem.patch │ │ │ ├── 100-allow_pfifo_fast.patch │ │ │ ├── 110-extra-ccopts.patch │ │ │ ├── 120-libnetlink-pic.patch │ │ │ ├── 271-uapi-libc-compat.h-do-not-rely-on-__GLIBC__.patch │ │ │ ├── 272-uapi-if_ether.h-prevent-redefinition-of-struct-ethhd.patch │ │ │ ├── 300-ip_tiny.patch │ │ │ ├── 900-drop_FAILED_POLICY.patch │ │ │ └── 950-add-cake-to-tc.patch │ │ ├── ipset │ │ └── Makefile │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 020-iptables-disable-modprobe.patch │ │ │ ├── 050-optional-xml.patch │ │ │ ├── 200-configurable_builtin.patch │ │ │ ├── 600-shared-libext.patch │ │ │ └── 700-disable-legacy-revisions.patch │ │ ├── iputils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-iputils.patch │ │ │ ├── 002-fix-ipv6.patch │ │ │ ├── 003-fix-makefile.patch │ │ │ ├── 010-ping6_uclibc_resolv.patch │ │ │ ├── 011-ping6_use_gnu_source.patch │ │ │ └── 020-include_fixes.patch │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 120-antenna_gain.patch │ │ │ └── 200-reduce_size.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ └── Makefile │ │ ├── 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 │ │ │ └── 600-fix-format-errors.patch │ │ ├── maccalc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── nftables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable-doc-generation.patch │ │ │ └── 101-nftables-statement-fix-print-of-ip-dnat-address.patch │ │ ├── owipcalc │ │ ├── Makefile │ │ └── src │ │ │ └── owipcalc.c │ │ ├── resolveip │ │ ├── Makefile │ │ └── src │ │ │ └── resolveip.c │ │ ├── rssileds │ │ ├── Makefile │ │ ├── files │ │ │ └── rssileds.init │ │ └── src │ │ │ └── rssileds.c │ │ ├── tcpdump │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove_pcap_debug.patch │ │ │ ├── 002-remove_static_libpcap_check.patch │ │ │ └── 100-tcpdump_mini.patch │ │ ├── umbim │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── mbim.sh │ │ ├── uqmi │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── qmi.sh │ │ ├── wireless-tools │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-debian.patch │ │ │ ├── 002-fix-iwconfig-power-argument-parsing.patch │ │ │ ├── 003-we_essential_def.patch │ │ │ └── 004-increase_iwlist_buffer.patch │ │ ├── wpan-tools │ │ └── Makefile │ │ ├── wwan │ │ ├── Makefile │ │ └── files │ │ │ ├── data │ │ │ ├── 0421-03a7 │ │ │ ├── 0421-060d │ │ │ ├── 0421-060e │ │ │ ├── 0421-0612 │ │ │ ├── 0421-0619 │ │ │ ├── 0421-061e │ │ │ ├── 0421-0623 │ │ │ ├── 0421-0629 │ │ │ ├── 0421-062d │ │ │ ├── 0421-062f │ │ │ ├── 0421-0638 │ │ │ ├── 05c6-0016 │ │ │ ├── 05c6-0023 │ │ │ ├── 05c6-00a0 │ │ │ ├── 05c6-6000 │ │ │ ├── 05c6-9000 │ │ │ ├── 07d1-3e01 │ │ │ ├── 07d1-3e02 │ │ │ ├── 07d1-7e11 │ │ │ ├── 0af0-4005 │ │ │ ├── 0af0-6901 │ │ │ ├── 0af0-7201 │ │ │ ├── 0af0-8120 │ │ │ ├── 0af0-9200 │ │ │ ├── 0b3c-c000 │ │ │ ├── 0b3c-c001 │ │ │ ├── 0b3c-c002 │ │ │ ├── 0b3c-c003 │ │ │ ├── 0b3c-c004 │ │ │ ├── 0b3c-c005 │ │ │ ├── 0b3c-c00a │ │ │ ├── 0b3c-c00b │ │ │ ├── 0bdb-1900 │ │ │ ├── 0bdb-1902 │ │ │ ├── 0bdb-190a │ │ │ ├── 0bdb-190d │ │ │ ├── 0bdb-1910 │ │ │ ├── 0c88-17da │ │ │ ├── 0c88-180a │ │ │ ├── 0f3d-68a2 │ │ │ ├── 0f3d-68aa │ │ │ ├── 1004-6124 │ │ │ ├── 1004-6141 │ │ │ ├── 1004-6157 │ │ │ ├── 1004-618f │ │ │ ├── 106c-3711 │ │ │ ├── 106c-3714 │ │ │ ├── 106c-3715 │ │ │ ├── 106c-3716 │ │ │ ├── 106c-3717 │ │ │ ├── 106c-3718 │ │ │ ├── 106c-3721 │ │ │ ├── 1199-0017 │ │ │ ├── 1199-0018 │ │ │ ├── 1199-0019 │ │ │ ├── 1199-0020 │ │ │ ├── 1199-0021 │ │ │ ├── 1199-0022 │ │ │ ├── 1199-0023 │ │ │ ├── 1199-0024 │ │ │ ├── 1199-0025 │ │ │ ├── 1199-0026 │ │ │ ├── 1199-0027 │ │ │ ├── 1199-0028 │ │ │ ├── 1199-0112 │ │ │ ├── 1199-0120 │ │ │ ├── 1199-0218 │ │ │ ├── 1199-0220 │ │ │ ├── 1199-0224 │ │ │ ├── 1199-0301 │ │ │ ├── 1199-6802 │ │ │ ├── 1199-6803 │ │ │ ├── 1199-6804 │ │ │ ├── 1199-6805 │ │ │ ├── 1199-6808 │ │ │ ├── 1199-6809 │ │ │ ├── 1199-6813 │ │ │ ├── 1199-6815 │ │ │ ├── 1199-6816 │ │ │ ├── 1199-6820 │ │ │ ├── 1199-6821 │ │ │ ├── 1199-6822 │ │ │ ├── 1199-6833 │ │ │ ├── 1199-6834 │ │ │ ├── 1199-6835 │ │ │ ├── 1199-6838 │ │ │ ├── 1199-6839 │ │ │ ├── 1199-683a │ │ │ ├── 1199-683b │ │ │ ├── 1199-6850 │ │ │ ├── 1199-6851 │ │ │ ├── 1199-6852 │ │ │ ├── 1199-6853 │ │ │ ├── 1199-6855 │ │ │ ├── 1199-6856 │ │ │ ├── 1199-6859 │ │ │ ├── 1199-685a │ │ │ ├── 1199-6880 │ │ │ ├── 1199-6890 │ │ │ ├── 1199-6891 │ │ │ ├── 1199-6892 │ │ │ ├── 1199-6893 │ │ │ ├── 1199-68a2 │ │ │ ├── 1199-68aa │ │ │ ├── 12d1-1035 │ │ │ ├── 12d1-1404 │ │ │ ├── 12d1-1406 │ │ │ ├── 12d1-140b │ │ │ ├── 12d1-140c │ │ │ ├── 12d1-1412 │ │ │ ├── 12d1-141b │ │ │ ├── 12d1-1433 │ │ │ ├── 12d1-1436 │ │ │ ├── 12d1-1444 │ │ │ ├── 12d1-144e │ │ │ ├── 12d1-1464 │ │ │ ├── 12d1-1465 │ │ │ ├── 12d1-1491 │ │ │ ├── 12d1-14a5 │ │ │ ├── 12d1-14a8 │ │ │ ├── 12d1-14ac │ │ │ ├── 12d1-14ae │ │ │ ├── 12d1-14c6 │ │ │ ├── 12d1-14c8 │ │ │ ├── 12d1-14c9 │ │ │ ├── 12d1-14ca │ │ │ ├── 12d1-14cb │ │ │ ├── 12d1-14cc │ │ │ ├── 12d1-14cf │ │ │ ├── 12d1-14d2 │ │ │ ├── 12d1-1506 │ │ │ ├── 12d1-150a │ │ │ ├── 12d1-150c │ │ │ ├── 12d1-150f │ │ │ ├── 12d1-151b │ │ │ ├── 12d1-151d │ │ │ ├── 12d1-156c │ │ │ ├── 12d1-1576 │ │ │ ├── 12d1-1577 │ │ │ ├── 12d1-1578 │ │ │ ├── 12d1-1589 │ │ │ ├── 12d1-1c05 │ │ │ ├── 12d1-1c07 │ │ │ ├── 12d1-1c08 │ │ │ ├── 12d1-1c10 │ │ │ ├── 12d1-1c12 │ │ │ ├── 12d1-1c1e │ │ │ ├── 12d1-1c1f │ │ │ ├── 12d1-1c23 │ │ │ ├── 12d1-1f16 │ │ │ ├── 1410-1400 │ │ │ ├── 1410-1410 │ │ │ ├── 1410-1420 │ │ │ ├── 1410-1430 │ │ │ ├── 1410-1450 │ │ │ ├── 1410-2100 │ │ │ ├── 1410-2110 │ │ │ ├── 1410-2120 │ │ │ ├── 1410-2130 │ │ │ ├── 1410-2400 │ │ │ ├── 1410-2410 │ │ │ ├── 1410-2420 │ │ │ ├── 1410-4100 │ │ │ ├── 1410-4400 │ │ │ ├── 1410-6000 │ │ │ ├── 1410-6001 │ │ │ ├── 1410-6002 │ │ │ ├── 1410-6010 │ │ │ ├── 1410-7001 │ │ │ ├── 1410-7003 │ │ │ ├── 1410-7030 │ │ │ ├── 1410-7031 │ │ │ ├── 1410-7041 │ │ │ ├── 1410-7042 │ │ │ ├── 1410-9011 │ │ │ ├── 1410-b001 │ │ │ ├── 1529-3100 │ │ │ ├── 16d5-6202 │ │ │ ├── 16d5-6501 │ │ │ ├── 16d5-6502 │ │ │ ├── 16d5-6603 │ │ │ ├── 16d5-900d │ │ │ ├── 16d8-5141 │ │ │ ├── 16d8-5533 │ │ │ ├── 16d8-5543 │ │ │ ├── 16d8-5553 │ │ │ ├── 16d8-6002 │ │ │ ├── 16d8-6006 │ │ │ ├── 16d8-6007 │ │ │ ├── 16d8-6008 │ │ │ ├── 16d8-6522 │ │ │ ├── 16d8-6523 │ │ │ ├── 16d8-6532 │ │ │ ├── 16d8-6533 │ │ │ ├── 16d8-6543 │ │ │ ├── 16d8-680a │ │ │ ├── 19d2-0001 │ │ │ ├── 19d2-0002 │ │ │ ├── 19d2-0015 │ │ │ ├── 19d2-0016 │ │ │ ├── 19d2-0017 │ │ │ ├── 19d2-0018 │ │ │ ├── 19d2-0019 │ │ │ ├── 19d2-0022 │ │ │ ├── 19d2-0024 │ │ │ ├── 19d2-0025 │ │ │ ├── 19d2-0031 │ │ │ ├── 19d2-0033 │ │ │ ├── 19d2-0037 │ │ │ ├── 19d2-0039 │ │ │ ├── 19d2-0042 │ │ │ ├── 19d2-0052 │ │ │ ├── 19d2-0055 │ │ │ ├── 19d2-0057 │ │ │ ├── 19d2-0063 │ │ │ ├── 19d2-0064 │ │ │ ├── 19d2-0066 │ │ │ ├── 19d2-0073 │ │ │ ├── 19d2-0079 │ │ │ ├── 19d2-0082 │ │ │ ├── 19d2-0086 │ │ │ ├── 19d2-0091 │ │ │ ├── 19d2-0094 │ │ │ ├── 19d2-0104 │ │ │ ├── 19d2-0108 │ │ │ ├── 19d2-0116 │ │ │ ├── 19d2-0117 │ │ │ ├── 19d2-0121 │ │ │ ├── 19d2-0124 │ │ │ ├── 19d2-0128 │ │ │ ├── 19d2-0142 │ │ │ ├── 19d2-0143 │ │ │ ├── 19d2-0152 │ │ │ ├── 19d2-0157 │ │ │ ├── 19d2-0167 │ │ │ ├── 19d2-0170 │ │ │ ├── 19d2-0199 │ │ │ ├── 19d2-0257 │ │ │ ├── 19d2-0265 │ │ │ ├── 19d2-0284 │ │ │ ├── 19d2-0326 │ │ │ ├── 19d2-1003 │ │ │ ├── 19d2-1008 │ │ │ ├── 19d2-1010 │ │ │ ├── 19d2-1015 │ │ │ ├── 19d2-1018 │ │ │ ├── 19d2-1172 │ │ │ ├── 19d2-1173 │ │ │ ├── 19d2-1176 │ │ │ ├── 19d2-1177 │ │ │ ├── 19d2-1181 │ │ │ ├── 19d2-1203 │ │ │ ├── 19d2-1208 │ │ │ ├── 19d2-1211 │ │ │ ├── 19d2-1212 │ │ │ ├── 19d2-1217 │ │ │ ├── 19d2-1218 │ │ │ ├── 19d2-1220 │ │ │ ├── 19d2-1222 │ │ │ ├── 19d2-1245 │ │ │ ├── 19d2-1252 │ │ │ ├── 19d2-1254 │ │ │ ├── 19d2-1256 │ │ │ ├── 19d2-1270 │ │ │ ├── 19d2-1401 │ │ │ ├── 19d2-1402 │ │ │ ├── 19d2-1426 │ │ │ ├── 19d2-1512 │ │ │ ├── 19d2-1515 │ │ │ ├── 19d2-1518 │ │ │ ├── 19d2-1519 │ │ │ ├── 19d2-1522 │ │ │ ├── 19d2-1525 │ │ │ ├── 19d2-1527 │ │ │ ├── 19d2-1537 │ │ │ ├── 19d2-1538 │ │ │ ├── 19d2-1544 │ │ │ ├── 19d2-2002 │ │ │ ├── 19d2-2003 │ │ │ ├── 19d2-ffdd │ │ │ ├── 19d2-ffe4 │ │ │ ├── 19d2-ffe9 │ │ │ ├── 19d2-fff1 │ │ │ ├── 19d2-fffb │ │ │ ├── 19d2-fffc │ │ │ ├── 19d2-fffd │ │ │ ├── 19d2-fffe │ │ │ ├── 19d2-ffff │ │ │ ├── 1a8d-1002 │ │ │ ├── 1a8d-1003 │ │ │ ├── 1a8d-1007 │ │ │ ├── 1a8d-1009 │ │ │ ├── 1a8d-100c │ │ │ ├── 1a8d-100d │ │ │ ├── 1a8d-2006 │ │ │ ├── 1bbb-0000 │ │ │ ├── 1bbb-0012 │ │ │ ├── 1bbb-0017 │ │ │ ├── 1bbb-0052 │ │ │ ├── 1bbb-00b7 │ │ │ ├── 1bbb-00ca │ │ │ ├── 1bbb-011e │ │ │ ├── 1bbb-0203 │ │ │ ├── 1c9e-6060 │ │ │ ├── 1c9e-6061 │ │ │ ├── 1c9e-9000 │ │ │ ├── 1c9e-9603 │ │ │ ├── 1c9e-9605 │ │ │ ├── 1c9e-9607 │ │ │ ├── 1c9e-9801 │ │ │ ├── 1c9e-9900 │ │ │ ├── 1e0e-9000 │ │ │ ├── 1e0e-9100 │ │ │ ├── 1e0e-9200 │ │ │ ├── 1e0e-ce16 │ │ │ ├── 1e0e-cefe │ │ │ ├── 2001-7d00 │ │ │ ├── 2001-7d01 │ │ │ ├── 2001-7d02 │ │ │ ├── 2001-7d03 │ │ │ ├── 211f-6801 │ │ │ ├── 2357-0201 │ │ │ ├── 2357-0202 │ │ │ ├── 2357-0203 │ │ │ ├── 2357-9000 │ │ │ ├── 413c-8114 │ │ │ ├── 413c-8115 │ │ │ ├── 413c-8116 │ │ │ ├── 413c-8117 │ │ │ ├── 413c-8118 │ │ │ ├── 413c-8128 │ │ │ ├── 413c-8129 │ │ │ ├── 413c-8133 │ │ │ ├── 413c-8134 │ │ │ ├── 413c-8135 │ │ │ ├── 413c-8136 │ │ │ ├── 413c-8137 │ │ │ ├── 413c-8138 │ │ │ ├── 413c-8147 │ │ │ ├── 413c-8180 │ │ │ ├── 413c-8181 │ │ │ ├── 413c-8182 │ │ │ ├── 413c-8186 │ │ │ ├── 413c-8194 │ │ │ ├── 413c-8195 │ │ │ ├── 413c-8196 │ │ │ └── 413c-819b │ │ │ ├── wwan.sh │ │ │ ├── wwan.usb │ │ │ └── wwan.usbmisc │ │ └── xtables-addons │ │ ├── Makefile │ │ └── patches │ │ ├── 002-fix-kernel-version-detection.patch │ │ ├── 100-add-rtsp-conntrack.patch │ │ ├── 200-add-lua-packetscript.patch │ │ ├── 201-fix-lua-packetscript.patch │ │ └── 300-geoip-endian-detection.patch ├── system │ ├── ca-certificates │ │ └── Makefile │ ├── fstools │ │ ├── Makefile │ │ └── files │ │ │ ├── blockd.init │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ ├── fwtool │ │ ├── Makefile │ │ └── src │ │ │ ├── crc32.h │ │ │ ├── fwimage.h │ │ │ ├── fwtool.c │ │ │ └── utils.h │ ├── lede-keyring │ │ └── 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 │ │ │ ├── trx.c │ │ │ ├── wrgg.c │ │ │ └── wrgg.h │ ├── 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 │ ├── uci │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── config │ │ │ └── uci.sh │ ├── usign │ │ └── Makefile │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── adb │ ├── Makefile │ └── patches │ │ └── 001-create_Makefile.patch │ ├── admswconfig │ ├── Makefile │ ├── files │ │ ├── admswconfig │ │ └── admswswitch.sh │ └── patches │ │ ├── 001-matrix.patch │ │ └── 002-fix-musl.patch │ ├── bsdiff │ ├── Makefile │ └── patches │ │ └── 001-musl.patch │ ├── busybox │ ├── 501-ash-hush-fix-SIGCHLD-interrupting-read-builtin.patch │ ├── 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 │ │ ├── libbb │ │ │ └── Config.in │ │ ├── loginutils │ │ │ └── Config.in │ │ ├── mailutils │ │ │ └── Config.in │ │ ├── miscutils │ │ │ └── Config.in │ │ ├── modutils │ │ │ └── Config.in │ │ ├── networking │ │ │ ├── Config.in │ │ │ └── udhcp │ │ │ │ └── Config.in │ │ ├── printutils │ │ │ └── Config.in │ │ ├── procps │ │ │ └── Config.in │ │ ├── runit │ │ │ └── Config.in │ │ ├── selinux │ │ │ └── Config.in │ │ ├── shell │ │ │ └── Config.in │ │ ├── sysklogd │ │ │ └── Config.in │ │ └── util-linux │ │ │ ├── Config.in │ │ │ └── volume_id │ │ │ └── Config.in │ ├── convert_defaults.pl │ ├── convert_menuconfig.pl │ ├── files │ │ ├── cron │ │ ├── ntpd-hotplug │ │ └── sysntpd │ └── patches │ │ ├── 001-resource_h_include.patch │ │ ├── 100-trylink_bash.patch │ │ ├── 101-gen_build_files_bash.patch │ │ ├── 110-no_static_libgcc.patch │ │ ├── 120-remove_uclibc_rpc_check.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 │ │ ├── 302-ip-rule-add-suppress-prefixlength.patch │ │ ├── 401-vi-don-t-touch-file-with-x-when-modified_count-0.patch │ │ └── 402-vi-avoid-touching-a-new-file-with-ZZ-when-no-editing.patch │ ├── bzip2 │ └── Makefile │ ├── ct-bugcheck │ ├── Makefile │ └── src │ │ ├── bugcheck.initd │ │ ├── bugcheck.sh │ │ └── bugchecker.sh │ ├── e2fsprogs │ ├── Makefile │ ├── files │ │ ├── e2fsck.conf │ │ └── e2fsck.sh │ └── patches │ │ ├── 001-com_err_version.patch │ │ └── 002-fix-subst-host-build.patch │ ├── f2fs-tools │ ├── Makefile │ └── patches │ │ ├── 001-compile.patch │ │ └── 010-include-byteswap-h.patch │ ├── fbtest │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── fbtest.c │ ├── fritz-tools │ ├── Makefile │ ├── README.md │ └── src │ │ ├── CMakeLists.txt │ │ ├── fritz_cal_extract.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 │ ├── jsonfilter │ └── Makefile │ ├── lua │ ├── Makefile │ ├── patches-host │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 030-archindependent-bytecode.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 020-shared_liblua.patch │ │ ├── 030-archindependent-bytecode.patch │ │ ├── 040-use-symbolic-functions.patch │ │ ├── 050-honor-cflags.patch │ │ ├── 100-no_readline.patch │ │ ├── 200-lua-path.patch │ │ └── 300-opcode_performance.patch │ ├── mdadm │ ├── Makefile │ ├── files │ │ ├── mdadm.config │ │ └── mdadm.init │ └── patches │ │ ├── 100-cross_compile.patch │ │ ├── 101-mdadm.h-Undefine-dprintf-before-redefining.patch │ │ └── 200-reduce_size.patch │ ├── mtd-utils │ ├── Makefile │ └── patches │ │ ├── 010-fix-rpmatch.patch │ │ ├── 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 │ └── src │ │ └── spidev_test.c │ ├── ugps │ ├── Makefile │ └── files │ │ ├── gps.config │ │ └── ugps.init │ ├── usbmode │ ├── Makefile │ ├── data │ │ └── 12d1-1f16 │ └── files │ │ ├── usbmode.hotplug │ │ └── usbmode.init │ ├── usbreset │ ├── Makefile │ └── src │ │ └── usbreset.c │ ├── usbutils │ └── Makefile │ ├── util-linux │ ├── Makefile │ └── patches │ │ └── 003-fix_pkgconfig_files.patch │ └── xfsprogs │ ├── Makefile │ └── patches │ ├── 100-no-selftest.patch │ ├── 110-subdirs.patch │ └── 120-disable_assert.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 │ ├── 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 │ ├── 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 ├── download.pl ├── env ├── ext-toolchain.sh ├── feeds ├── fixup-makefile.pl ├── flashing │ ├── adam2flash-502T.pl │ ├── adam2flash-fritzbox.pl │ ├── adam2flash.pl │ ├── adsl2mue_flash.pl │ ├── flash.sh │ └── jungo-image.py ├── gen-dependencies.sh ├── gen_image_generic.sh ├── get_source_date_epoch.sh ├── getver.sh ├── ipkg-build ├── ipkg-make-index.sh ├── kconfig.pl ├── make-ipkg-dir.sh ├── md5sum ├── metadata.pm ├── mkhash.c ├── mkits.sh ├── om-fwupgradecfg-gen.sh ├── package-metadata.pl ├── pad_image ├── patch-kernel.sh ├── patch-specs.sh ├── portable_date.sh ├── qemustart ├── redboot-script.pl ├── relink-lib.sh ├── remote-gdb ├── rstrip.sh ├── slugimage.pl ├── srecimage.pl ├── strip-kmod.sh ├── symlink-tree.sh ├── sysupgrade-tar.sh ├── target-metadata.pl ├── timestamp.pl └── ubinize-image.sh ├── target ├── Config.in ├── Makefile ├── imagebuilder │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── Makefile │ │ └── repositories.conf ├── linux │ ├── Makefile │ ├── adm5120 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 01_leds │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── adm5120.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_adm5120.sh │ │ │ │ └── 05_set_preinit_iface_adm5120 │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── adm5120 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Platform │ │ │ │ │ ├── cellvision │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cas-771.c │ │ │ │ │ │ ├── cellvision.c │ │ │ │ │ │ ├── cellvision.h │ │ │ │ │ │ └── nfs-101.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── adm5120.c │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── early-printk.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── irq.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── platform.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── compex │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── compex.c │ │ │ │ │ │ ├── compex.h │ │ │ │ │ │ ├── np27g.c │ │ │ │ │ │ ├── np28g.c │ │ │ │ │ │ └── wp54.c │ │ │ │ │ ├── edimax │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── br-6104k.c │ │ │ │ │ │ ├── br-6104kp.c │ │ │ │ │ │ ├── br-61x4wg.c │ │ │ │ │ │ ├── br-61xx.c │ │ │ │ │ │ └── br-61xx.h │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── eb-214a.c │ │ │ │ │ ├── infineon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── easy5120-rt.c │ │ │ │ │ │ ├── easy5120-wvoip.c │ │ │ │ │ │ ├── easy5120p-ata.c │ │ │ │ │ │ ├── easy83000.c │ │ │ │ │ │ ├── infineon.c │ │ │ │ │ │ └── infineon.h │ │ │ │ │ ├── mikrotik │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── rb-11x.c │ │ │ │ │ │ ├── rb-133.c │ │ │ │ │ │ ├── rb-133c.c │ │ │ │ │ │ ├── rb-150.c │ │ │ │ │ │ ├── rb-153.c │ │ │ │ │ │ ├── rb-192.c │ │ │ │ │ │ ├── rb-1xx.c │ │ │ │ │ │ └── rb-1xx.h │ │ │ │ │ ├── motorola │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── pmugw.c │ │ │ │ │ ├── osbridge │ │ │ │ │ │ ├── 5gxi.c │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── prom │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── admboot.c │ │ │ │ │ │ ├── bootbase.c │ │ │ │ │ │ ├── cfe.c │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── myloader.c │ │ │ │ │ │ ├── prom_read.h │ │ │ │ │ │ └── routerboot.c │ │ │ │ │ └── zyxel │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── p-334wt.c │ │ │ │ │ │ ├── p-335.c │ │ │ │ │ │ ├── p-33x.c │ │ │ │ │ │ └── p-33x.h │ │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ └── mach-adm5120 │ │ │ │ │ │ ├── adm5120_defs.h │ │ │ │ │ │ ├── adm5120_info.h │ │ │ │ │ │ ├── adm5120_intc.h │ │ │ │ │ │ ├── adm5120_mpmc.h │ │ │ │ │ │ ├── adm5120_nand.h │ │ │ │ │ │ ├── adm5120_platform.h │ │ │ │ │ │ ├── adm5120_switch.h │ │ │ │ │ │ ├── adm5120_uart.h │ │ │ │ │ │ ├── asm │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── prom │ │ │ │ │ │ ├── admboot.h │ │ │ │ │ │ ├── cfe.h │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ ├── myloader.h │ │ │ │ │ │ ├── routerboot.h │ │ │ │ │ │ └── zynos.h │ │ │ │ │ │ └── war.h │ │ │ │ │ └── pci │ │ │ │ │ └── pci-adm5120.c │ │ │ └── drivers │ │ │ │ ├── ata │ │ │ │ └── pata_rb153_cf.c │ │ │ │ ├── leds │ │ │ │ └── ledtrig-adm5120-switch.c │ │ │ │ ├── mtd │ │ │ │ ├── maps │ │ │ │ │ └── adm5120-flash.c │ │ │ │ └── trxsplit.c │ │ │ │ ├── net │ │ │ │ ├── adm5120sw.c │ │ │ │ └── adm5120sw.h │ │ │ │ ├── usb │ │ │ │ └── host │ │ │ │ │ ├── adm5120-dbg.c │ │ │ │ │ ├── adm5120-drv.c │ │ │ │ │ ├── adm5120-hcd.c │ │ │ │ │ ├── adm5120-hub.c │ │ │ │ │ ├── adm5120-mem.c │ │ │ │ │ ├── adm5120-pm.c │ │ │ │ │ ├── adm5120-q.c │ │ │ │ │ └── adm5120.h │ │ │ │ └── watchdog │ │ │ │ └── adm5120_wdt.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── board.c │ │ │ │ │ ├── config.h │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── head.S │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ └── printf.h │ │ │ ├── rb1xx.mk │ │ │ ├── router_be.mk │ │ │ └── router_le.mk │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-adm5120.patch │ │ │ ├── 002-adm5120_flash.patch │ │ │ ├── 003-adm5120_switch.patch │ │ │ ├── 005-adm5120_usb.patch │ │ │ ├── 007-adm5120_pci.patch │ │ │ ├── 009-adm5120_leds_switch_trigger.patch │ │ │ ├── 050-revert_rootfs_splits.patch │ │ │ ├── 100-rootfs_split.patch │ │ │ ├── 101-cfi_fixup_macronix_bootloc.patch │ │ │ ├── 102-jedec_pmc_39lvxxx_chips.patch │ │ │ ├── 103-mtd_trxsplit.patch │ │ │ ├── 120-rb153_cf_driver.patch │ │ │ ├── 200-amba_pl010_hacks.patch │ │ │ ├── 203-gpio_leds_brightness.patch │ │ │ └── 310-adm5120_wdt.patch │ │ ├── rb1xx │ │ │ ├── base-files │ │ │ │ └── sbin │ │ │ │ │ └── wget2nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── RB1xx.mk │ │ │ └── target.mk │ │ ├── router_be │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 010-Generic.mk │ │ │ │ └── 200-ZyXEL.mk │ │ │ └── target.mk │ │ └── router_le │ │ │ ├── config-3.8 │ │ │ ├── profiles │ │ │ ├── 010-Generic.mk │ │ │ ├── Cellvision.mk │ │ │ ├── Compex.mk │ │ │ ├── Edimax.mk │ │ │ ├── Infineon.mk │ │ │ ├── Motorola.mk │ │ │ └── Osbridge.mk │ │ │ └── target.mk │ ├── adm8668 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── diag.sh │ │ │ ├── lib │ │ │ │ ├── preinit │ │ │ │ │ ├── 03_init_hotplug_failsafe_adm8668 │ │ │ │ │ └── 05_set_preinit_face_adm8668 │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── hotplug.failsafe │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── adm8668 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── early_printk.c │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── platform.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── time.c │ │ │ │ │ └── u-boot.h │ │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ └── mach-adm8668 │ │ │ │ │ │ ├── adm8668.h │ │ │ │ │ │ ├── asm │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ └── war.h │ │ │ │ │ └── pci │ │ │ │ │ └── pci-adm8668.c │ │ │ └── drivers │ │ │ │ └── mtd │ │ │ │ └── maps │ │ │ │ └── adm8668.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── include │ │ │ │ │ ├── _exports.h │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ └── u-boot.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── exports.h │ │ │ │ │ └── image.h │ │ │ │ │ ├── lzma.lds.in │ │ │ │ │ └── stubs.c │ │ │ └── my-mkimage │ │ ├── patches-3.18 │ │ │ ├── 001-adm8668_arch.patch │ │ │ ├── 002-adm8668_pci.patch │ │ │ ├── 003-adm8668_nor_map.patch │ │ │ ├── 004-tulip_pci_split.patch │ │ │ ├── 005-tulip_platform.patch │ │ │ ├── 200-amba_pl010_hacks.patch │ │ │ └── 201-amba_bus_hacks.patch │ │ └── profiles │ │ │ └── 100-WRTU54G-TM.mk │ ├── apm821xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ ├── inittab │ │ │ │ └── rc.button │ │ │ │ │ └── BTN_1 │ │ │ └── lib │ │ │ │ ├── apm821xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_apm821xx.sh │ │ │ │ ├── 05_set_iface_mac_apm821xx │ │ │ │ ├── 05_set_preinit_iface_apm821xx │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ ├── merakinand.sh │ │ │ │ ├── platform.sh │ │ │ │ └── wdbook.sh │ │ ├── config-4.9 │ │ ├── dts │ │ │ ├── MR24.dts │ │ │ ├── MX60.dts │ │ │ ├── apm82181.dtsi │ │ │ ├── apollo3g-duo.dts │ │ │ ├── apollo3g.dts │ │ │ ├── apollo3g.dtsi │ │ │ └── wndr4700.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.9 │ │ │ ├── 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 │ │ │ ├── 701-powerpc_ibm_apm82181_phyclk_fix.patch │ │ │ ├── 702-powerpc_ibm_phy_add_dt_parser.patch │ │ │ ├── 703-net-emac-fix-reset-timeout-with-AR8035-phy.patch │ │ │ ├── 801-usb-xhci-add-firmware-loader-for-uPD720201-and-uPD72.patch │ │ │ ├── 802-usb-xhci-force-msi-renesas-xhci.patch │ │ │ ├── 804-usb-dwc2-add-amcc-usb-otg-405ex.patch │ │ │ └── 901-hwmon-add-driver-for-Microchip-TC654-TC655-PWM-fan-c.patch │ │ └── sata │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── ar7 │ │ ├── Makefile │ │ ├── ac49x │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 210-None.mk │ │ │ └── target.mk │ │ ├── base-files.mk │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── init.d │ │ │ │ └── adam2 │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── files │ │ │ └── drivers │ │ │ │ ├── char │ │ │ │ └── ar7_gpio.c │ │ │ │ └── mtd │ │ │ │ ├── ac49xpart.c │ │ │ │ └── titanpart.c │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 100-Annex-A.mk │ │ │ │ ├── 110-Annex-B.mk │ │ │ │ ├── 200-Texas.mk │ │ │ │ └── 210-None.mk │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.18 │ │ │ ├── 001-mips-ar7-fix-serial.patch │ │ │ ├── 100-fix-highmem-offset.patch │ │ │ ├── 101-MIPS-AR7-allow-NULL-clock-for-clk_get_rate.patch │ │ │ ├── 110-flash.patch │ │ │ ├── 120-gpio_chrdev.patch │ │ │ ├── 160-vlynq_try_remote_first.patch │ │ │ ├── 200-free-mem-below-kernel-offset.patch │ │ │ ├── 300-add-ac49x-platform.patch │ │ │ ├── 310-ac49x-prom-support.patch │ │ │ ├── 320-ac49x-mtd-partitions.patch │ │ │ ├── 500-serial_kludge.patch │ │ │ ├── 920-ar7part.patch │ │ │ ├── 925-actiontec_leds.patch │ │ │ └── 950-cpmac_titan.patch │ │ ├── patches-4.1 │ │ │ ├── 001-mips-ar7-fix-serial.patch │ │ │ ├── 100-fix-highmem-offset.patch │ │ │ ├── 101-MIPS-AR7-allow-NULL-clock-for-clk_get_rate.patch │ │ │ ├── 110-flash.patch │ │ │ ├── 120-gpio_chrdev.patch │ │ │ ├── 160-vlynq_try_remote_first.patch │ │ │ ├── 200-free-mem-below-kernel-offset.patch │ │ │ ├── 300-add-ac49x-platform.patch │ │ │ ├── 310-ac49x-prom-support.patch │ │ │ ├── 320-ac49x-mtd-partitions.patch │ │ │ ├── 500-serial_kludge.patch │ │ │ ├── 920-ar7part.patch │ │ │ ├── 925-actiontec_leds.patch │ │ │ └── 950-cpmac_titan.patch │ │ └── src │ │ │ └── adam2patcher.c │ ├── ar71xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ ├── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ └── net │ │ │ │ │ │ └── 10-ar922x-led-fix │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_network-switchX-migration │ │ │ │ │ ├── 03_network-vlan-migration │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ ├── 09_fix-checksum │ │ │ │ │ └── 09_fix-seama-header │ │ │ └── lib │ │ │ │ ├── ar71xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_ar71xx.sh │ │ │ │ ├── 05_set_iface_mac_ar71xx │ │ │ │ ├── 05_set_preinit_iface_ar71xx │ │ │ │ └── 82_patch_ath10k │ │ │ │ └── upgrade │ │ │ │ ├── allnet.sh │ │ │ │ ├── dir825.sh │ │ │ │ ├── merakinand.sh │ │ │ │ ├── openmesh.sh │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── 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-ap96.c │ │ │ │ │ ├── mach-archer-c25-v1.c │ │ │ │ │ ├── mach-archer-c59-v1.c │ │ │ │ │ ├── mach-archer-c60-v1.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-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-e2100l.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-dorin.c │ │ │ │ │ ├── mach-f9k1115v2.c │ │ │ │ │ ├── mach-fritz300e.c │ │ │ │ │ ├── mach-gl-ar150.c │ │ │ │ │ ├── mach-gl-ar300.c │ │ │ │ │ ├── mach-gl-ar300m.c │ │ │ │ │ ├── mach-gl-domino.c │ │ │ │ │ ├── mach-gl-inet.c │ │ │ │ │ ├── mach-gl-mifi.c │ │ │ │ │ ├── mach-gs-minibox-v1.c │ │ │ │ │ ├── mach-gs-oolite.c │ │ │ │ │ ├── mach-hiveap-121.c │ │ │ │ │ ├── mach-hiwifi-hc6361.c │ │ │ │ │ ├── mach-hornet-ub.c │ │ │ │ │ ├── mach-ja76pf.c │ │ │ │ │ ├── mach-jwap003.c │ │ │ │ │ ├── mach-jwap230.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-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-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-rw2458n.c │ │ │ │ │ ├── mach-sc1750.c │ │ │ │ │ ├── mach-sc300m.c │ │ │ │ │ ├── mach-sc450.c │ │ │ │ │ ├── mach-smart-300.c │ │ │ │ │ ├── mach-som9331.c │ │ │ │ │ ├── mach-sr3200.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-v2.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-tube2h.c │ │ │ │ │ ├── mach-ubnt-unifiac.c │ │ │ │ │ ├── mach-ubnt-xm.c │ │ │ │ │ ├── mach-ubnt.c │ │ │ │ │ ├── mach-weio.c │ │ │ │ │ ├── mach-whr-hp-g300n.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 │ │ │ ├── generic.mk │ │ │ ├── legacy-devices.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 │ │ │ ├── senao.mk │ │ │ ├── tp-link.mk │ │ │ ├── ubinize-nbg6716.ini │ │ │ ├── ubinize-wndr4300.ini │ │ │ └── ubnt.mk │ │ ├── mikrotik │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── patches-4.4 │ │ │ ├── 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 │ │ │ ├── 101-MIPS-ath79-make-ath79_ddr_ctrl_init-compatible-for-n.patch │ │ │ ├── 103-MIPS-ath79-fix-register-address-in-ath79_ddr_wb_flus.patch │ │ │ ├── 104-spi-spi-ath79-support-multiple-internal-chip-select-.patch │ │ │ ├── 105-spi-spi-ath79-use-gpio_set_value_cansleep-for-GPIO-c.patch │ │ │ ├── 106-01-MIPS-ath79-fix-AR724X_PLL_REG_PCIE_CONFIG-offset.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 │ │ │ ├── 203-MIPS-ath79-fix-restart.patch │ │ │ ├── 220-add_cpu_feature_overrides.patch │ │ │ ├── 300-MIPS-add-MIPS_MACHINE_NONAME-macro.patch │ │ │ ├── 310-lib-add-rle-decompression.patch │ │ │ ├── 401-mtd-physmap-add-lock-unlock.patch │ │ │ ├── 402-mtd-SST39VF6401B-support.patch │ │ │ ├── 403-mtd_fix_cfi_cmdset_0002_status_check.patch │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ ├── 405-mtd-tp-link-partition-parser.patch │ │ │ ├── 407-mtd-m25p80-allow-to-pass-probe-types-via-platform-data.patch │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ ├── 409-mtd-rb4xx_nand_driver.patch │ │ │ ├── 410-mtd-rb750-nand-driver.patch │ │ │ ├── 411-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 412-mtd-m25p80-zero-partition-parser-data.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 │ │ │ ├── 450-gpio-nxp-74hc153-gpio-chip-driver.patch │ │ │ ├── 451-gpio-74x164-improve-platform-device-support.patch │ │ │ ├── 452-gpio-add-gpio-latch-driver.patch │ │ │ ├── 460-m25p80-spi-read-flash-check.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 │ │ │ ├── 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 │ │ │ ├── 634-MIPS-ath79-ar724x-clock-calculation-fixes.patch │ │ │ ├── 640-MIPS-ath79-add-QCA955x-wmac-reset.patch │ │ │ ├── 700-MIPS-ath79-add-openwrt-Kconfig.patch │ │ │ ├── 701-MIPS-ath79-add-routerboard-detection.patch │ │ │ ├── 739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch │ │ │ ├── 740-MIPS-ath79-add-PCI-for-QCA953x-SoC.patch │ │ │ ├── 818-MIPS-ath79-add-nu801-led-driver.patch │ │ │ ├── 820-MIPS-ath79-add_gpio_function2_setup.patch │ │ │ ├── 821-serial-core-add-support-for-boot-console-with-arbitr.patch │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ ├── 902-at803x-add-reset-gpio-pdata.patch │ │ │ ├── 910-unaligned_access_hacks.patch │ │ │ ├── 920-usb-chipidea-AR933x-platform-support.patch │ │ │ └── 930-chipidea-pullup.patch │ ├── arc770 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── arc.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_arc.sh │ │ ├── config-4.9 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ └── uEnv.txt │ │ └── patches-4.9 │ │ │ └── 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.9 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ └── uEnv.txt │ │ └── patches-4.9 │ │ │ └── 700-stmmac-Disable-frame-filtering-completely.patch │ ├── armvirt │ │ ├── 32 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── 64 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 00_model │ │ │ │ └── inittab │ │ ├── config-4.9 │ │ └── 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.4 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ ├── at91-q5xr5.dts │ │ │ │ │ └── lmu5000.dts │ │ │ └── drivers │ │ │ │ └── mtd │ │ │ │ └── at91part.c │ │ ├── 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 │ │ │ ├── legacy.mk │ │ │ └── sama5d3.mk │ │ ├── legacy │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-4.4 │ │ │ ├── 100-ARM-at91-build-dtb-for-LMU5000.patch │ │ │ └── 101-ARM-at91-build-dtb-for-q5xr5.patch │ │ └── sama5d3 │ │ │ ├── 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.9 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.9 │ │ │ ├── 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 │ ├── au1000 │ │ ├── Makefile │ │ ├── au1500 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── Atheros.mk │ │ │ │ ├── InternetBox.mk │ │ │ │ └── MeshCube.mk │ │ │ └── target.mk │ │ ├── au1550 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── DBAu1550.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.18 │ │ │ ├── 002-openwrt_rootfs.patch │ │ │ ├── 003-au1000_eth_ioctl.patch │ │ │ ├── 004-watchdog_low_init.patch │ │ │ └── 006-codec.patch │ ├── bcm53xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── config-4.9 │ │ ├── files-4.4 │ │ │ └── drivers │ │ │ │ └── firmware │ │ │ │ └── broadcom │ │ │ │ └── bcm47xx_sprom.c │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── compressed │ │ │ │ └── cache-v7-min.S │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-4.4 │ │ │ ├── 020-ARM-BCM5301X-remove-workaround-imprecise-abort-fault.patch │ │ │ ├── 021-ARM-BCM5310X-activate-erratas-needed-for-SoC.patch │ │ │ ├── 022-ARM-BCM-Clean-up-SMP-support-for-Broadcom-Kona.patch │ │ │ ├── 023-ARM-BCM-Add-SMP-support-for-Broadcom-NSP.patch │ │ │ ├── 024-ARM-BCM-Add-SMP-support-for-Broadcom-4708.patch │ │ │ ├── 030-ARM-dts-bcm5301x-Add-BCM-SVK-DT-files.patch │ │ │ ├── 031-ARM-dts-enable-clock-support-for-BCM5301X.patch │ │ │ ├── 032-ARM-BCM5301X-Add-missing-Netgear-R8000-LEDs.patch │ │ │ ├── 033-dt-bindings-add-SMP-enable-method-for-Broadcom-NSP.patch │ │ │ ├── 034-ARM-BCM5301X-Add-DT-for-D-Link-DIR-885L.patch │ │ │ ├── 035-ARM-BCM5301X-Set-vcc-gpio-for-USB-controllers-of-few.patch │ │ │ ├── 036-ARM-BCM5301X-Enable-earlycon-on-tested-devices.patch │ │ │ ├── 037-0001-ARM-BCM5301X-Add-DT-entry-for-SPI-controller-and-NOR.patch │ │ │ ├── 037-0002-ARM-BCM5301X-Enable-SPI-NOR-on-dual-flash-devices.patch │ │ │ ├── 038-0001-ARM-dts-Enable-SRAB-switch-and-GMACs-on-5301x-DTS.patch │ │ │ ├── 038-0002-ARM-dts-BCM5301X-Add-SRAB-interrupts.patch │ │ │ ├── 038-0003-ARM-dts-BCM5310x-Enable-switch-ports-on-SmartRG-SR40.patch │ │ │ ├── 039-ARM-dts-BCM5301x-Add-RNG-Device-Tree-node.patch │ │ │ ├── 040-ARM-dts-BCM5301x-Add-BCM953012ER-board.patch │ │ │ ├── 041-0001-ARM-BCM5301X-Specify-NAND-chip-select-and-ECC-in-sep.patch │ │ │ ├── 041-0002-ARM-BCM5301X-Fix-NAND-ECC-parameters-for-D-Link-DIR-.patch │ │ │ ├── 042-ARM-BCM5301X-Specify-PHY-of-USB-2.0-in-DT.patch │ │ │ ├── 043-0001-ARM-BCM53573-Initial-support-for-Broadcom-BCM53573-S.patch │ │ │ ├── 044-0001-ARM-BCM5301X-Add-DT-for-Netgear-R8500.patch │ │ │ ├── 044-0002-ARM-BCM5301X-Add-basic-dts-for-BCM53573-based-Tenda-.patch │ │ │ ├── 044-0003-ARM-BCM5301X-Add-separated-DTS-include-file-for-BCM4.patch │ │ │ ├── 044-0004-ARM-BCM5301X-Enable-UART-on-Netgear-R8000.patch │ │ │ ├── 044-0005-ARM-BCM5301X-Specify-USB-3.0-PHY-in-DT.patch │ │ │ ├── 044-0006-ARM-BCM5301X-Add-DT-for-Luxul-XAP-1510.patch │ │ │ ├── 044-0007-ARM-BCM5301X-Add-DT-for-Luxul-XWR-3100.patch │ │ │ ├── 044-0008-ARM-BCM53573-Specify-PMU-and-its-ILP-clock-in-the-DT.patch │ │ │ ├── 044-0009-ARM-BCM5301X-Add-DT-for-TP-LINK-Archer-C9-V1.patch │ │ │ ├── 045-ARM-BCM5301X-Add-back-handler-ignoring-external-impr.patch │ │ │ ├── 046-0001-ARM-BCM5301X-Enable-UART-by-default-for-BCM4708-1-BC.patch │ │ │ ├── 046-0002-ARM-BCM5301X-Fix-LAN-LED-labels-for-Luxul-XWR-3100.patch │ │ │ ├── 046-0003-ARM-BCM5301X-Specify-USB-controllers-in-DT.patch │ │ │ ├── 046-0004-ARM-BCM5301X-Set-GPIO-enabling-USB-power-on-Netgear-.patch │ │ │ ├── 046-0005-ARM-BCM5301X-Specify-all-RAM-by-including-an-extra-b.patch │ │ │ ├── 046-0006-ARM-BCM53573-Specify-USB-ports-of-on-SoC-controllers.patch │ │ │ ├── 046-0007-ARM-BCM5301X-Set-5-GHz-wireless-frequency-limits-on-.patch │ │ │ ├── 046-0008-ARM-BCM5301X-Add-DT-for-Luxul-XAP-1410.patch │ │ │ ├── 046-0009-ARM-BCM5301X-Add-DT-for-Luxul-XWR-1200.patch │ │ │ ├── 047-0001-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA9200.patch │ │ │ ├── 047-0002-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA6300-V1.patch │ │ │ ├── 047-0003-ARM-dts-BCM5301X-Add-NAND-entries-to-bcm953012k.patch │ │ │ ├── 047-0005-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA9500.patch │ │ │ ├── 047-0006-ARM-dts-BCM5301X-Add-support-for-BCM953012HR.patch │ │ │ ├── 047-0007-ARM-dts-BCM53573-Describe-Tenda-AC9-PCIe-card-in-DT.patch │ │ │ ├── 047-0008-ARM-dts-BCM53573-Add-Tenda-AC9-2-GHz-LED.patch │ │ │ ├── 047-0009-ARM-dts-BCM5301X-Relicense-DTS-files-I-created-to-th.patch │ │ │ ├── 047-0010-ARM-dts-BCM5301X-Add-missing-Netgear-R8000-LEDs-and-.patch │ │ │ ├── 047-0011-ARM-dts-BCM53573-Don-t-use-nonexistent-default-off-L.patch │ │ │ ├── 047-0012-ARM-dts-BCM5301X-Don-t-use-nonexistent-default-off-L.patch │ │ │ ├── 047-0014-ARM-dts-BCM5301X-Add-TWD-WD-Support-to-DT.patch │ │ │ ├── 047-0015-ARM-dts-BCM5301X-Add-I2C-support-to-the-DT.patch │ │ │ ├── 047-0016-ARM-dts-BCM5301X-Add-support-for-TP-LINK-Archer-C5-V.patch │ │ │ ├── 047-0017-ARM-dts-BCM953012HR-Add-ethernet-aliases.patch │ │ │ ├── 047-0018-ARM-dts-BCM5301X-Specify-serial-console-params-in-dt.patch │ │ │ ├── 047-0019-ARM-dts-BCM53573-Specify-serial-console-parameters.patch │ │ │ ├── 047-0020-ARM-dts-BCM5301X-Add-CPU-thermal-sensor-and-zone.patch │ │ │ ├── 047-0021-ARM-dts-BCM5301X-Specify-MDIO-bus-in-the-DT.patch │ │ │ ├── 070-0001-phy-bcm-ns-usb2-new-driver-for-USB-2.0-PHY-on-Norths.patch │ │ │ ├── 070-0002-phy-bcm-ns-usb2-checking-the-wrong-variable.patch │ │ │ ├── 071-0001-phy-bcm-ns-usb3-new-driver-for-USB-3.0-PHY-on-Norths.patch │ │ │ ├── 071-0002-phy-bcm-ns-usb3-split-all-writes-into-reg-val-pairs.patch │ │ │ ├── 080-USB-bcma-switch-to-GPIO-descriptor-for-power-control.patch │ │ │ ├── 081-0001-USB-bcma-make-helper-creating-platform-dev-more-gene.patch │ │ │ ├── 081-0002-USB-bcma-separate-code-initializing-USB-2.0-core.patch │ │ │ ├── 081-0003-USB-bcma-use-simpler-devm-helper-for-getting-vcc-GPI.patch │ │ │ ├── 082-0001-USB-bcma-initialize-Northstar-USB-3.0-controller.patch │ │ │ ├── 082-0002-USB-bcma-support-old-USB-2.0-controller-on-Northstar.patch │ │ │ ├── 082-0003-USB-bcma-drop-Northstar-PHY-2.0-initialization-code.patch │ │ │ ├── 083-0001-spi-bcm-qspi-Add-Broadcom-MSPI-driver.patch │ │ │ ├── 083-0002-spi-brcmstb-qspi-Broadcom-settop-platform-driver.patch │ │ │ ├── 083-0003-spi-bcm-qspi-Add-BSPI-spi-nor-flash-controller-drive.patch │ │ │ ├── 083-0004-spi-bcm-qspi-don-t-include-linux-mtd-cfi.h.patch │ │ │ ├── 083-0005-spi-bcm-qspi-fix-suspend-resume-ifdef.patch │ │ │ ├── 083-0006-spi-bcm-qspi-Fix-return-value-check-in-bcm_qspi_prob.patch │ │ │ ├── 083-0007-spi-bcm-qspi-Fix-error-return-code-in-bcm_qspi_probe.patch │ │ │ ├── 083-0008-spi-iproc-qspi-Add-Broadcom-iProc-SoCs-support.patch │ │ │ ├── 084-0001-spi-bcm53xx-set-of_node-to-let-DT-specify-device-s.patch │ │ │ ├── 084-0002-spi-bcm53xx-re-license-code-to-the-GPL-v2.patch │ │ │ ├── 085-PCI-iproc-Hide-CONFIG_PCIE_IPROC.patch │ │ │ ├── 086-PCI-iproc-Do-not-use-0x-in-front-of-pap.patch │ │ │ ├── 087-0001-PCI-iproc-Update-iProc-PCIe-device-tree-binding.patch │ │ │ ├── 087-0002-PCI-iproc-Add-PAXC-interface-support.patch │ │ │ ├── 087-0003-PCI-iproc-Add-iProc-PCIe-MSI-device-tree-binding.patch │ │ │ ├── 087-0004-PCI-iproc-Add-iProc-PCIe-MSI-support.patch │ │ │ ├── 088-PCI-iproc-Allow-multiple-devices-except-on-PAXC.patch │ │ │ ├── 089-clk-bcm-Add-driver-for-BCM53573-ILP-clock.patch │ │ │ ├── 101-use-part-parser.patch │ │ │ ├── 112-bcm53xx-sprom-add-sprom-driver.patch │ │ │ ├── 140-mtd-brcmnand-set-initial-ECC-params-based-on-info-fr.patch │ │ │ ├── 180-usb-xhci-add-support-for-performing-fake-doorbell.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-during-decompres.patch │ │ │ ├── 301-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ ├── 320-ARM-dts-BCM5301X-Add-serial-to-the-bootargs.patch │ │ │ ├── 332-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 400-mtd-brcmnand-stop-special-treating-ECC-strength-1-as.patch │ │ │ ├── 405-mtd-spi-nor-detect-JEDEC-incompatible-w25q128-using-.patch │ │ │ ├── 406-mtd-m25p80-use-single-SPI-message-for-writing-data.patch │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ ├── 710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch │ │ │ ├── 901-mtd-bcm47xxpart-add-device-specific-workarounds.patch │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ ├── patches-4.9 │ │ │ ├── 030-0001-ARM-BCM5301X-Add-DT-for-Netgear-R8500.patch │ │ │ ├── 030-0002-ARM-BCM5301X-Add-basic-dts-for-BCM53573-based-Tenda-.patch │ │ │ ├── 030-0003-ARM-BCM5301X-Add-separated-DTS-include-file-for-BCM4.patch │ │ │ ├── 030-0004-ARM-BCM5301X-Enable-UART-on-Netgear-R8000.patch │ │ │ ├── 030-0005-ARM-BCM5301X-Specify-USB-3.0-PHY-in-DT.patch │ │ │ ├── 030-0006-ARM-BCM5301X-Add-DT-for-Luxul-XAP-1510.patch │ │ │ ├── 030-0007-ARM-BCM5301X-Add-DT-for-Luxul-XWR-3100.patch │ │ │ ├── 030-0008-ARM-BCM53573-Specify-PMU-and-its-ILP-clock-in-the-DT.patch │ │ │ ├── 030-0009-ARM-BCM5301X-Add-DT-for-TP-LINK-Archer-C9-V1.patch │ │ │ ├── 032-0001-ARM-BCM5301X-Enable-UART-by-default-for-BCM4708-1-BC.patch │ │ │ ├── 032-0002-ARM-BCM5301X-Fix-LAN-LED-labels-for-Luxul-XWR-3100.patch │ │ │ ├── 032-0003-ARM-BCM5301X-Specify-USB-controllers-in-DT.patch │ │ │ ├── 032-0004-ARM-BCM5301X-Set-GPIO-enabling-USB-power-on-Netgear-.patch │ │ │ ├── 032-0005-ARM-BCM5301X-Specify-all-RAM-by-including-an-extra-b.patch │ │ │ ├── 032-0006-ARM-BCM53573-Specify-USB-ports-of-on-SoC-controllers.patch │ │ │ ├── 032-0007-ARM-BCM5301X-Set-5-GHz-wireless-frequency-limits-on-.patch │ │ │ ├── 032-0008-ARM-BCM5301X-Add-DT-for-Luxul-XAP-1410.patch │ │ │ ├── 032-0009-ARM-BCM5301X-Add-DT-for-Luxul-XWR-1200.patch │ │ │ ├── 033-0001-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA9200.patch │ │ │ ├── 033-0002-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA6300-V1.patch │ │ │ ├── 033-0003-ARM-dts-BCM5301X-Add-NAND-entries-to-bcm953012k.patch │ │ │ ├── 033-0005-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA9500.patch │ │ │ ├── 033-0006-ARM-dts-BCM5301X-Add-support-for-BCM953012HR.patch │ │ │ ├── 033-0007-ARM-dts-BCM53573-Describe-Tenda-AC9-PCIe-card-in-DT.patch │ │ │ ├── 033-0008-ARM-dts-BCM53573-Add-Tenda-AC9-2-GHz-LED.patch │ │ │ ├── 033-0009-ARM-dts-BCM5301X-Relicense-DTS-files-I-created-to-th.patch │ │ │ ├── 033-0010-ARM-dts-BCM5301X-Add-missing-Netgear-R8000-LEDs-and-.patch │ │ │ ├── 033-0011-ARM-dts-BCM53573-Don-t-use-nonexistent-default-off-L.patch │ │ │ ├── 033-0012-ARM-dts-BCM5301X-Don-t-use-nonexistent-default-off-L.patch │ │ │ ├── 033-0014-ARM-dts-BCM5301X-Add-TWD-WD-Support-to-DT.patch │ │ │ ├── 033-0015-ARM-dts-BCM5301X-Add-I2C-support-to-the-DT.patch │ │ │ ├── 033-0016-ARM-dts-BCM5301X-Add-support-for-TP-LINK-Archer-C5-V.patch │ │ │ ├── 033-0017-ARM-dts-BCM953012HR-Add-ethernet-aliases.patch │ │ │ ├── 033-0018-ARM-dts-BCM5301X-Specify-serial-console-params-in-dt.patch │ │ │ ├── 033-0019-ARM-dts-BCM53573-Specify-serial-console-parameters.patch │ │ │ ├── 033-0020-ARM-dts-BCM5301X-Add-CPU-thermal-sensor-and-zone.patch │ │ │ ├── 033-0021-ARM-dts-BCM5301X-Specify-MDIO-bus-in-the-DT.patch │ │ │ ├── 070-0001-phy-bcm-ns-usb3-split-all-writes-into-reg-val-pairs.patch │ │ │ ├── 080-0001-spi-bcm53xx-set-of_node-to-let-DT-specify-device-s.patch │ │ │ ├── 080-0002-spi-bcm53xx-re-license-code-to-the-GPL-v2.patch │ │ │ ├── 101-use-part-parser.patch │ │ │ ├── 180-usb-xhci-add-support-for-performing-fake-doorbell.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-during-decompres.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 │ │ │ ├── 400-mtd-spi-nor-detect-JEDEC-incompatible-w25q128-using-.patch │ │ │ ├── 401-mtd-m25p80-use-single-SPI-message-for-writing-data.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 │ │ │ ├── 900-mtd-bcm47xxpart-add-device-specific-workarounds.patch │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ └── profiles │ │ │ └── 100-Generic.mk │ ├── brcm2708 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── brcm2708.sh │ │ │ │ ├── firmware │ │ │ │ └── brcm │ │ │ │ │ └── brcmfmac43430-sdio.txt │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_brcm2708.sh │ │ │ │ ├── 05_set_preinit_iface_brcm2708 │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── bcm2708 │ │ │ ├── config-4.9 │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-4.9 │ │ │ └── target.mk │ │ ├── bcm2710 │ │ │ ├── config-4.9 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ └── patches-4.9 │ │ │ ├── 030-pinctrl-bcm2835-add-pull-defines-to-dt-bindings.patch │ │ │ ├── 031-v4.10-0001-ARM-dts-bcm283x-Define-standard-pinctrl-groups-in-th.patch │ │ │ ├── 031-v4.10-0002-ARM-dts-bcm283x-add-pinctrl-group-to-pwm-drop-pins-f.patch │ │ │ ├── 031-v4.10-0003-ARM-dts-bcm283x-add-pinctrl-group-to-i2c0-drop-pins-.patch │ │ │ ├── 031-v4.10-0004-ARM-dts-bcm283x-add-pinctrl-group-to-i2c1-drop-pins-.patch │ │ │ ├── 031-v4.10-0005-ARM-dts-bcm283x-add-pinctrl-group-to-sdhci-drop-pins.patch │ │ │ ├── 031-v4.10-0006-ARM-dts-bcm283x-drop-alt3-from-gpio.patch │ │ │ ├── 031-v4.10-0008-ARM-bcm2835-dts-add-thermal-node-to-device-tree-of-b.patch │ │ │ ├── 031-v4.10-0009-ARM-bcm2835-Add-names-for-the-Raspberry-Pi-GPIO-line.patch │ │ │ ├── 031-v4.10-0010-ARM-bcm2835-Fix-names-for-the-Raspberry-Pi-GPIO-line.patch │ │ │ ├── 031-v4.10-0011-ARM-bcm2835-Add-names-for-the-RPi-Zero-GPIO-lines.patch │ │ │ ├── 032-v4.11-0001-ARM-dts-bcm283x-Add-VEC-node-in-bcm283x.dtsi.patch │ │ │ ├── 032-v4.11-0002-ARM-dts-bcm283x-Enable-the-VEC-IP-on-all-RaspberryPi.patch │ │ │ ├── 950-0001-smsx95xx-fix-crimes-against-truesize.patch │ │ │ ├── 950-0002-smsc95xx-Experimental-Enable-turbo_mode-and-packetsi.patch │ │ │ ├── 950-0003-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0004-Protect-__release_resource-against-resources-without.patch │ │ │ ├── 950-0005-mm-Remove-the-PFN-busy-warning.patch │ │ │ ├── 950-0006-irq-bcm2836-Prevent-spurious-interrupts-and-trap-the.patch │ │ │ ├── 950-0007-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 950-0008-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 950-0009-spidev-Add-spidev-compatible-string-to-silence-warni.patch │ │ │ ├── 950-0010-serial-8250-Don-t-crash-when-nr_uarts-is-0.patch │ │ │ ├── 950-0011-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 950-0012-pinctrl-bcm2835-Fix-interrupt-handling-for-GPIOs-28-.patch │ │ │ ├── 950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch │ │ │ ├── 950-0014-pinctrl-bcm2835-Return-pins-to-inputs-when-freed.patch │ │ │ ├── 950-0015-spi-bcm2835-Support-pin-groups-other-than-7-11.patch │ │ │ ├── 950-0016-spi-bcm2835-Disable-forced-software-CS.patch │ │ │ ├── 950-0017-spi-bcm2835-Remove-unused-code.patch │ │ │ ├── 950-0018-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0019-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0020-firmware-Updated-mailbox-header.patch │ │ │ ├── 950-0021-clk-bcm2835-Mark-GPIO-clocks-enabled-at-boot-as-crit.patch │ │ │ ├── 950-0022-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0023-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0024-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0025-bcm-Make-RASPBERRYPI_POWER-depend-on-PM.patch │ │ │ ├── 950-0026-Register-the-clocks-early-during-the-boot-process.patch │ │ │ ├── 950-0027-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0028-kbuild-Ignore-dtco-targets-when-filtering-symbols.patch │ │ │ ├── 950-0029-BCM2835_DT-Fix-I2S-register-map.patch │ │ │ ├── 950-0030-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0031-Add-dwc_otg-driver.patch │ │ │ ├── 950-0032-bcm2708-framebuffer-driver.patch │ │ │ ├── 950-0033-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0034-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0035-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0036-mmc-Add-MMC_QUIRK_ERASE_BROKEN-for-some-cards.patch │ │ │ ├── 950-0037-cma-Add-vc_cma-driver-to-enable-use-of-CMA.patch │ │ │ ├── 950-0038-bcm2708-alsa-sound-driver.patch │ │ │ ├── 950-0039-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0040-vcsm-VideoCore-shared-memory-service-for-BCM2835.patch │ │ │ ├── 950-0041-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 950-0042-Add-SMI-driver.patch │ │ │ ├── 950-0043-MISC-bcm2835-smi-use-clock-manager-and-fix-reload-is.patch │ │ │ ├── 950-0044-Add-SMI-NAND-driver.patch │ │ │ ├── 950-0045-lirc-added-support-for-RaspberryPi-GPIO.patch │ │ │ ├── 950-0046-Add-cpufreq-driver.patch │ │ │ ├── 950-0047-Added-hwmon-thermal-driver-for-reporting-core-temper.patch │ │ │ ├── 950-0048-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 950-0049-char-broadcom-Add-vcio-module.patch │ │ │ ├── 950-0050-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 950-0051-bcm2835-add-v4l2-camera-device.patch │ │ │ ├── 950-0052-scripts-Add-mkknlimg-and-knlinfo-scripts-from-tools-.patch │ │ │ ├── 950-0053-scripts-dtc-Update-to-upstream-version-1.4.1.patch │ │ │ ├── 950-0054-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0055-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 950-0056-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 950-0057-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 950-0058-enabling-the-realtime-clock-1-wire-chip-DS1307-and-1.patch │ │ │ ├── 950-0059-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 950-0060-config-Enable-CONFIG_MEMCG-but-leave-it-disabled-due.patch │ │ │ ├── 950-0061-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0062-rpi-ft5406-Add-touchscreen-driver-for-pi-LCD-display.patch │ │ │ ├── 950-0063-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 950-0064-gpio-poweroff-Allow-it-to-work-on-Raspberry-Pi.patch │ │ │ ├── 950-0065-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 950-0066-ASoC-Add-support-for-HifiBerry-DAC.patch │ │ │ ├── 950-0067-ASoC-Add-support-for-Rpi-DAC.patch │ │ │ ├── 950-0068-ASoC-wm8804-Implement-MCLK-configuration-options-add.patch │ │ │ ├── 950-0069-ASoC-BCM-Add-support-for-HiFiBerry-Digi.-Driver-is-b.patch │ │ │ ├── 950-0070-Add-IQaudIO-Sound-Card-support-for-Raspberry-Pi.patch │ │ │ ├── 950-0071-iqaudio-dac-Compile-fix-untested.patch │ │ │ ├── 950-0072-Added-support-for-HiFiBerry-DAC.patch │ │ │ ├── 950-0073-Added-driver-for-HiFiBerry-Amp-amplifier-add-on-boar.patch │ │ │ ├── 950-0074-Update-ds1307-driver-for-device-tree-support.patch │ │ │ ├── 950-0075-Add-driver-for-rpi-proto.patch │ │ │ ├── 950-0076-RaspiDAC3-support.patch │ │ │ ├── 950-0077-Add-Support-for-JustBoom-Audio-boards.patch │ │ │ ├── 950-0078-ARM-adau1977-adc-Add-basic-machine-driver-for-adau19.patch │ │ │ ├── 950-0079-New-AudioInjector.net-Pi-soundcard-with-low-jitter-a.patch │ │ │ ├── 950-0080-Add-IQAudIO-Digi-WM8804-board-support.patch │ │ │ ├── 950-0081-New-driver-for-RRA-DigiDAC1-soundcard-using-WM8741-W.patch │ │ │ ├── 950-0082-Add-support-for-Dion-Audio-LOCO-DAC-AMP-HAT.patch │ │ │ ├── 950-0083-Allo-Piano-DAC-boards-Initial-2-channel-stereo-suppo.patch │ │ │ ├── 950-0084-Support-for-Blokas-Labs-pisound-board.patch │ │ │ ├── 950-0085-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0086-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0087-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0090-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0092-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0093-config-Add-default-configs.patch │ │ │ ├── 950-0094-Add-arm64-configuration-and-device-tree-differences.patch │ │ │ ├── 950-0095-vchiq_arm-Tweak-the-logging-output.patch │ │ │ ├── 950-0096-vchiq_arm-Access-the-dequeue_pending-flag-locked.patch │ │ │ ├── 950-0097-vchiq_arm-Service-callbacks-must-not-fail.patch │ │ │ ├── 950-0098-vchiq_arm-Add-completion-records-under-the-mutex.patch │ │ │ ├── 950-0099-vchiq_arm-Avoid-use-of-mutex-in-add_completion.patch │ │ │ ├── 950-0100-staging-vchi-Convert-to-current-get_user_pages-argum.patch │ │ │ ├── 950-0101-staging-vchi-Update-for-rename-of-page_cache_release.patch │ │ │ ├── 950-0102-drivers-vchi-Remove-dependency-on-CONFIG_BROKEN.patch │ │ │ ├── 950-0103-raspberrypi-firmware-Export-the-general-transaction-.patch │ │ │ ├── 950-0104-raspberrypi-firmware-Define-the-MBOX-channel-in-the-.patch │ │ │ ├── 950-0105-drm-vc4-Add-a-mode-for-using-the-closed-firmware-for.patch │ │ │ ├── 950-0107-i2c-bcm2835-Protect-against-unexpected-TXW-RXR-inter.patch │ │ │ ├── 950-0108-i2c-bcm2835-Use-dev_dbg-logging-on-transfer-errors.patch │ │ │ ├── 950-0109-i2c-bcm2835-Can-t-support-I2C_M_IGNORE_NAK.patch │ │ │ ├── 950-0110-i2c-bcm2835-Add-support-for-Repeated-Start-Condition.patch │ │ │ ├── 950-0111-i2c-bcm2835-Support-i2c-dev-ioctl-I2C_TIMEOUT.patch │ │ │ ├── 950-0112-i2c-bcm2835-Add-support-for-dynamic-clock.patch │ │ │ ├── 950-0113-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0114-arm64-Add-CONFIG_ARCH_BCM2835.patch │ │ │ ├── 950-0115-Add-support-for-Silicon-Labs-Si7013-20-21-humidity-t.patch │ │ │ ├── 950-0116-Document-the-si7020-option.patch │ │ │ ├── 950-0117-pisound-improvements.patch │ │ │ ├── 950-0118-Add-driver_name-property.patch │ │ │ ├── 950-0119-Add-driver_name-paramater.patch │ │ │ ├── 950-0120-BCM270X_DT-Add-pi3-disable-wifi-overlay.patch │ │ │ ├── 950-0121-ARM64-Make-it-work-again-on-4.9-1790.patch │ │ │ ├── 950-0122-ARM64-Enable-Kernel-Address-Space-Randomization-1792.patch │ │ │ ├── 950-0124-ARM64-Enable-RTL8187-RTL8192CU-wifi-in-build-config.patch │ │ │ ├── 950-0125-BCM270X_DT-Add-spi0-cs-overlay.patch │ │ │ ├── 950-0126-spi-bcm2835-Disable-forced-software-CS.patch │ │ │ ├── 950-0127-config-Add-CONFIG_TCP_CONG_BBR.patch │ │ │ ├── 950-0128-BCM270X_DT-Enable-UART0-on-CM3.patch │ │ │ ├── 950-0129-config-Add-CONFIG_MD_M25P80-and-CONFIG_MD_SPI_NOR.patch │ │ │ ├── 950-0130-ARM64-DWC_OTG-Port-dwc_otg-driver-to-ARM64.patch │ │ │ ├── 950-0131-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0132-ARM64-Enable-DWC_OTG-Driver-In-ARM64-Build-Config-bc.patch │ │ │ ├── 950-0133-ARM64-Use-dwc_otg-driver-by-default-for-USB.patch │ │ │ ├── 950-0134-BCM270X_DT-Add-reference-to-audio_pins-to-CM-dtb.patch │ │ │ ├── 950-0135-config-Add-additional-network-scheduling-modules.patch │ │ │ ├── 950-0136-ASoC-A-simple-card-overlay-for-ADAU7002.patch │ │ │ ├── 950-0137-config-Add-SND_SOC_ADAU7002-codec-module.patch │ │ │ ├── 950-0138-Add-overlay-for-mcp3008-adc-1818.patch │ │ │ ├── 950-0139-usb-dwc2-Avoid-suspending-if-we-re-in-gadget-mode-18.patch │ │ │ ├── 950-0140-gpio_mem-Remove-unnecessary-dev_info-output-1830.patch │ │ │ ├── 950-0141-config-Enable-regulator-support.patch │ │ │ ├── 950-0142-BCM270x-DT-expose-3.3V-and-5V-system-rails.patch │ │ │ ├── 950-0143-BCM270x-DT-Consolidate-audio-card-overlays.patch │ │ │ ├── 950-0144-ASoC-Add-driver-for-Cirrus-Logic-Audio-Card.patch │ │ │ ├── 950-0145-config-enable-Cirrus-Logic-Audio-Card.patch │ │ │ ├── 950-0146-irq-bcm2836-Avoid-Invalid-trigger-warning.patch │ │ │ ├── 950-0147-sound-Demote-deferral-errors-to-INFO-level.patch │ │ │ ├── 950-0148-sound-Suppress-error-message-about-deferrals.patch │ │ │ ├── 950-0149-Update-vfpmodule.c.patch │ │ │ ├── 950-0150-dwc_otg-fix-summarize-urb-actual_length-for-isochron.patch │ │ │ ├── 950-0152-clk-bcm-Support-rate-change-propagation-on-bcm2835-c.patch │ │ │ ├── 950-0153-clk-bcm-Allow-rate-change-propagation-to-PLLH_AUX-on.patch │ │ │ ├── 950-0154-clk-bcm-Fix-maybe-uninitialized-warning-in-bcm2835_c.patch │ │ │ ├── 950-0155-clk-bcm2835-Don-t-rate-change-PLLs-on-behalf-of-DSI-.patch │ │ │ ├── 950-0156-clk-bcm2835-Register-the-DSI0-DSI1-pixel-clocks.patch │ │ │ ├── 950-0157-clk-bcm2835-Add-leaf-clock-measurement-support-disab.patch │ │ │ ├── 950-0158-drm-panel-Add-support-for-the-Raspberry-Pi-7-Touchsc.patch │ │ │ ├── 950-0159-BCM270X-Add-the-DSI-panel-to-the-defconfig.patch │ │ │ ├── 950-0160-ARM-bcm2835-dt-Add-the-DSI-module-nodes-and-clocks.patch │ │ │ ├── 950-0161-BCM270X-Enable-the-DSI-panel-node-in-the-VC4-overlay.patch │ │ │ ├── 950-0163-drm-vc4-Add-support-for-rendering-with-ETC1-textures.patch │ │ │ ├── 950-0165-drm-vc4-Add-fragment-shader-threading-support.patch │ │ │ ├── 950-0168-drm-Add-TV-connector-states-to-drm_connector_state.patch │ │ │ ├── 950-0169-drm-Turn-DRM_MODE_SUBCONNECTOR_xx-definitions-into-a.patch │ │ │ ├── 950-0170-drm-vc4-Add-support-for-the-VEC-Video-Encoder-IP.patch │ │ │ ├── 950-0171-drm-vc4-Set-up-SCALER_DISPCTRL-at-boot.patch │ │ │ ├── 950-0172-drm-vc4-Add-support-for-feeding-DSI-encoders-from-th.patch │ │ │ ├── 950-0173-drm-vc4-Add-DSI-driver.patch │ │ │ ├── 950-0176-BCM270X-Disable-VEC-unless-vc4-kms-v3d-is-present.patch │ │ │ ├── 950-0177-drm-vc4-Name-the-primary-and-cursor-planes-in-fkms.patch │ │ │ ├── 950-0178-drm-vc4-Add-DRM_DEBUG_ATOMIC-for-the-insides-of-fkms.patch │ │ │ ├── 950-0179-drm-vc4-Fix-sending-of-page-flip-completion-events-i.patch │ │ │ ├── 950-0180-drm-vc4-Fulfill-user-BO-creation-requests-from-the-k.patch │ │ │ ├── 950-0181-drm-vc4-Fix-OOPSes-from-trying-to-cache-a-partially-.patch │ │ │ ├── 950-0182-drm-vc4-Verify-at-boot-that-CMA-doesn-t-cross-a-256M.patch │ │ │ ├── 950-0183-BCM270X_DT-Add-SMSC-ethernet-controller-to-DT.patch │ │ │ ├── 950-0185-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0186-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0188-Add-ads1015-driver-to-config.patch │ │ │ ├── 950-0189-config-add-slcan-kernel-module.patch │ │ │ ├── 950-0190-sound-Support-for-Dion-Audio-LOCO-V2-DAC-AMP-HAT.patch │ │ │ ├── 950-0191-SQUASH-Add-LOCO-V2-overlay-from-last-commit.patch │ │ │ ├── 950-0192-Add-support-for-Fe-Pi-audio-sound-card.-1867.patch │ │ │ ├── 950-0193-Add-overlay-for-ads1115-ADCs-1864.patch │ │ │ ├── 950-0194-clk-bcm2835-Correct-the-prediv-logic.patch │ │ │ ├── 950-0195-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0196-BCM2835-V4L2-Ensure-H264-header-bytes-get-a-sensible.patch │ │ │ ├── 950-0197-BCM2835-V4L2-Correctly-denote-key-frames-in-encoded-.patch │ │ │ ├── 950-0198-bcm2835-gpio-exp-Driver-for-GPIO-expander-via-mailbo.patch │ │ │ ├── 950-0199-BCM270X_DT-Add-bcm2708-rpi-0-w.dts.patch │ │ │ ├── 950-1000-mfd-rpisense-disable.patch │ │ │ └── 950-1001-sound-soc-rpi-cirrus-disable.patch │ ├── brcm47xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 01_detect │ │ │ │ ├── diag.sh │ │ │ │ ├── init.d │ │ │ │ │ └── wmacfixup │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_network_migration │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── config-4.9 │ │ ├── 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.4 │ │ │ ├── 030-MIPS-BCM47XX-Add-Luxul-devices-to-the-database.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.9 │ │ │ ├── 030-MIPS-BCM47XX-Add-Luxul-devices-to-the-database.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 │ ├── 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.4 │ │ ├── dts │ │ │ ├── a226g.dts │ │ │ ├── a226m-fwb.dts │ │ │ ├── a226m.dts │ │ │ ├── a4001n.dts │ │ │ ├── a4001n1.dts │ │ │ ├── agpf-s0.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 │ │ │ ├── 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.4 │ │ │ ├── 000-4.5-01-mtd-add-get-set-of_node-flash_node-helpers.patch │ │ │ ├── 000-4.5-02-mtd-ofpart-grab-device-tree-node-directly-from-maste.patch │ │ │ ├── 000-4.5-03-mtd-nand-spi-nor-assign-MTD-of_node.patch │ │ │ ├── 000-4.5-04-mtd-nand-convert-to-nand_set_flash_node.patch │ │ │ ├── 000-4.5-05-spi-nor-convert-to-spi_nor_-get-set-_flash_node.patch │ │ │ ├── 000-4.5-06-mtd-nand-drop-unnecessary-partition-parser-data.patch │ │ │ ├── 000-4.5-07-mtd-spi-nor-drop-unnecessary-partition-parser-data.patch │ │ │ ├── 000-4.5-08-mtd-spi-nor-drop-flash_node-field.patch │ │ │ ├── 000-4.5-09-mtd-drop-unnecessary-partition-parser-data.patch │ │ │ ├── 000-4.5-10-mtd-ofpart-drop-of_node-partition-parser-data.patch │ │ │ ├── 000-4.5-11-mtd-physmap_of-assign-parent-for-the-concatenated-MT.patch │ │ │ ├── 000-4.5-20-spi-expose-master-transfer-size-limitation.patch │ │ │ ├── 000-4.5-30-gpio-add-a-data-pointer-to-gpio_chip.patch │ │ │ ├── 000-4.5-31-gpio-generic-factor-into-gpio_chip-struct.patch │ │ │ ├── 000-4.6-01-gpio-Add-devm_-apis-for-gpiochip_add_data-and-gpioch.patch │ │ │ ├── 000-4.7-01-pinctrl-Add-devm_-apis-for-pinctrl_-register-unregis.patch │ │ │ ├── 000-4.7-02-pinctrl-Rename-pinctrl_utils_dt_free_map-to-pinctrl_.patch │ │ │ ├── 000-4.8-01-mtd-spi-nor-change-return-value-of-read-write.patch │ │ │ ├── 000-4.8-02-mtd-m25p80-return-amount-of-data-transferred-or-erro.patch │ │ │ ├── 000-4.8-03-mtd-fsl-quadspi-return-amount-of-data-read-written-o.patch │ │ │ ├── 000-4.8-05-mtd-nxp-spifi-return-amount-of-data-transferred-or-e.patch │ │ │ ├── 000-4.8-06-mtd-spi-nor-check-return-value-from-write.patch │ │ │ ├── 000-4.8-07-mtd-spi-nor-stop-passing-around-retlen.patch │ │ │ ├── 000-4.8-08-mtd-spi-nor-simplify-write-loop.patch │ │ │ ├── 000-4.8-09-mtd-spi-nor-add-read-loop.patch │ │ │ ├── 000-4.8-10-mtd-m25p80-read-in-spi_max_transfer_size-chunks.patch │ │ │ ├── 000-4.9-01-spi-introduce-max_message_size-hook-in-spi_master.patch │ │ │ ├── 001-4.11-01-mtd-m25p80-consider-max-message-size-in-m25p80_read.patch │ │ │ ├── 001-4.11-02-mtd-spi-nor-remove-WARN_ONCE-message-in-spi_nor_writ.patch │ │ │ ├── 001-4.12-01-spi-bcm63xx-make-spi-subsystem-aware-of-message-size.patch │ │ │ ├── 001-4.12-02-spi-bcm63xx-document-device-tree-bindings.patch │ │ │ ├── 001-4.12-03-spi-bcm63xx-add-support-for-probing-through-devicetr.patch │ │ │ ├── 001-4.12-04-spi-bcm63xx-hsspi-allow-providing-clock-rate-through.patch │ │ │ ├── 001-4.12-05-spi-bcm63xx-hsspi-document-device-tree-bindings.patch │ │ │ ├── 001-4.12-06-spi-bcm63xx-hsspi-add-support-for-probing-through-de.patch │ │ │ ├── 001-4.13-01-leds-bcm6328-fix-signal-source-assignment-for-high-l.patch │ │ │ ├── 100-MIPS-BCM63XX-add-USB-host-clock-enable-delay.patch │ │ │ ├── 101-MIPS-BCM63XX-add-USB-device-clock-enable-delay-to-cl.patch │ │ │ ├── 102-MIPS-BCM63XX-move-code-touching-the-USB-private-regi.patch │ │ │ ├── 103-MIPS-BCM63XX-add-OHCI-EHCI-configuration-bits-to-com.patch │ │ │ ├── 104-MIPS-BCM63XX-introduce-BCM63XX_OHCI-configuration-sy.patch │ │ │ ├── 105-MIPS-BCM63XX-add-support-for-the-on-chip-OHCI-contro.patch │ │ │ ├── 106-MIPS-BCM63XX-register-OHCI-controller-if-board-enabl.patch │ │ │ ├── 107-MIPS-BCM63XX-introduce-BCM63XX_EHCI-configuration-sy.patch │ │ │ ├── 108-MIPS-BCM63XX-add-support-for-the-on-chip-EHCI-contro.patch │ │ │ ├── 109-MIPS-BCM63XX-register-EHCI-controller-if-board-enabl.patch │ │ │ ├── 110-MIPS-BCM63XX-EHCI-controller-does-not-support-overcu.patch │ │ │ ├── 111-MIPS-BCM63XX-allow-NULL-clock-for-clk_get_rate.patch │ │ │ ├── 120-mtdpart_fixup_generic_partprobe.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 │ │ │ ├── 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 │ │ │ ├── 376-net-bcm63xx_enet-use-named-gpio-for-ephy-reset-gpio.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 │ │ │ ├── 381-net-bcm63xx_enet-fully-reset-ephy.patch │ │ │ ├── 382-pinctrl-add-a-pincontrol-driver-for-BCM6318.patch │ │ │ ├── 383-bcm63xx_select_pinctrl.patch │ │ │ ├── 390-MIPS-BCM63XX-do-not-register-SPI-controllers.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 │ │ │ ├── 425-bcm63xxpart_parse_paritions_from_dt.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 │ │ │ ├── 517-RTA1205W_16_uart_fixes.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 │ │ │ ├── 550-MIPS-BCM63XX-remove-leds-and-buttons.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 │ │ │ ├── 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.9 │ │ ├── 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.9 │ │ │ ├── 000-cns3xxx_arch_include.patch │ │ │ ├── 001-arm_openwrt_machtypes.patch │ │ │ ├── 010-arm_introduce-dma-fiq-irq-broadcast.patch │ │ │ ├── 020-watchdog_support.patch │ │ │ ├── 025-smp_support.patch │ │ │ ├── 030-pcie_clock.patch │ │ │ ├── 040-fiq_support.patch │ │ │ ├── 045-twd_base.patch │ │ │ ├── 055-pcie_io.patch │ │ │ ├── 060-pcie_abort.patch │ │ │ ├── 065-pcie_skip_inactive.patch │ │ │ ├── 070-i2c_support.patch │ │ │ ├── 075-spi_support.patch │ │ │ ├── 080-sata_support.patch │ │ │ ├── 090-timers.patch │ │ │ ├── 093-add-virt-pci-io-mapping.patch │ │ │ ├── 095-gpio_support.patch │ │ │ ├── 097-l2x0_cmdline_disable.patch │ │ │ ├── 100-laguna_support.patch │ │ │ ├── 101-laguna_sdhci_card_detect.patch │ │ │ ├── 110-pci_isolated_interrupts.patch │ │ │ ├── 130-Extend-PCIE_BUS_PEER2PEER-to-set-MRSS-128-to-fix-CNS3xxx-BM-DMA..patch │ │ │ ├── 200-broadcom_phy_reinit.patch │ │ │ └── 210-dwc2_defaults.patch │ ├── gemini │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 05_set_ether_mac_gemini │ │ ├── config-4.4 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── mach-gemini │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ └── gmac.h │ │ │ │ │ └── pci.c │ │ │ └── drivers │ │ │ │ ├── ata │ │ │ │ └── pata_gemini.c │ │ │ │ ├── net │ │ │ │ └── ethernet │ │ │ │ │ └── gemini │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sl351x.c │ │ │ │ │ └── sl351x_hw.h │ │ │ │ ├── usb │ │ │ │ └── host │ │ │ │ │ └── ehci-fotg2.c │ │ │ │ └── watchdog │ │ │ │ └── gemini_wdt.c │ │ ├── image │ │ │ ├── ImageInfo-ib4220 │ │ │ └── Makefile │ │ ├── patches-4.4 │ │ │ ├── 050-gpio-to-irq.patch │ │ │ ├── 060-cache-fa.patch │ │ │ ├── 110-watchdog-add-gemini_wdt-driver.patch │ │ │ ├── 111-arm-gemini-add-watchdog-device.patch │ │ │ ├── 112-arm-gemini-register-watchdog-devices.patch │ │ │ ├── 120-net-add-gemini-gmac-driver.patch │ │ │ ├── 121-arm-gemini-add-gmac-device.patch │ │ │ ├── 122-arm-gemini-register-ethernet.patch │ │ │ ├── 130-usb-ehci-add-fot2g-driver.patch │ │ │ ├── 131-arm-gemini-add-usb-device.patch │ │ │ ├── 132-arm-gemini-register-usb.patch │ │ │ ├── 140-arm-gemini-add-pci-support.patch │ │ │ └── 150-gemini-pata.patch │ │ ├── raidsonic │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── wiligear │ │ │ └── target.mk │ ├── generic │ │ ├── PATCHES │ │ ├── backport-4.9 │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ ├── 020-backport_netfilter_rtcache.patch │ │ │ ├── 021-bridge-multicast-to-unicast.patch │ │ │ ├── 022-net-add-devm-version-of-alloc_etherdev_mqs-function.patch │ │ │ ├── 023-1-smsc95xx-Use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 023-2-smsc75xx-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 023-3-cx82310_eth-use-skb_cow_head-to-deal-with-cloned-skb.patch │ │ │ ├── 023-4-sr9700-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 023-5-lan78xx-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 023-6-ch9200-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 023-7-kaweth-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 030-01-ubifs-Drop-softlimit-and-delta-fields-from-struct-ub.patch │ │ │ ├── 030-02-ubifs-Use-dirty_writeback_interval-value-for-wbuf-ti.patch │ │ │ ├── 050-usb-dwc2-Remove-unnecessary-kfree.patch │ │ │ ├── 060-0002-mtd-bcm47xxsflash-use-platform_-set-get-_drvdata.patch │ │ │ ├── 060-0003-mtd-bcm47xxsflash-support-reading-flash-out-of-mappi.patch │ │ │ ├── 060-0004-mtd-bcm47xxpart-move-TRX-parsing-code-to-separated-f.patch │ │ │ ├── 060-0005-mtd-bcm47xxpart-support-layouts-with-multiple-TRX-pa.patch │ │ │ ├── 061-v4.10-0001-mtd-spi-nor-add-Macronix-mx25u25635f-to-list-of-know.patch │ │ │ ├── 061-v4.10-0002-mtd-spi-nor-fix-spansion-quad-enable.patch │ │ │ ├── 061-v4.10-0003-mtd-spi-nor-fix-flags-for-s25fl128s.patch │ │ │ ├── 061-v4.10-0004-mtd-spi-nor-add-support-for-s25fl208k.patch │ │ │ ├── 061-v4.10-0005-mtd-spi-nor-Add-at25df321-spi-nor-flash-support.patch │ │ │ ├── 061-v4.10-0006-mtd-spi-nor-Add-support-for-N25Q016A.patch │ │ │ ├── 061-v4.10-0007-mtd-spi-nor-Add-support-for-mr25h40.patch │ │ │ ├── 062-v4.11-0001-mtd-spi-nor-Add-support-for-S3AN-spi-nor-devices.patch │ │ │ ├── 062-v4.11-0002-mtd-spi-nor-improve-macronix_quad_enable.patch │ │ │ ├── 062-v4.11-0003-mtd-spi-nor-remove-WARN_ONCE-message-in-spi_nor_writ.patch │ │ │ ├── 062-v4.11-0004-mtd-spi-nor-rename-SPINOR_OP_-macros-of-the-4-byte-a.patch │ │ │ ├── 062-v4.11-0005-mtd-spi-nor-add-a-stateless-method-to-support-memory.patch │ │ │ ├── 062-v4.11-0006-mtd-spi-nor-Add-lock-unlock-support-for-f25l32pa.patch │ │ │ ├── 062-v4.11-0007-mtd-spi-nor-Fix-S3AN-addressing-calculation.patch │ │ │ ├── 062-v4.11-0008-mtd-spi-nor-Add-support-for-gd25q16.patch │ │ │ ├── 063-mtd-spi-nor-enable-stateless-4b-op-codes-for-mx25u25.patch │ │ │ ├── 064-v4.11-0001-mtd-introduce-function-max_bad_blocks.patch │ │ │ ├── 064-v4.11-0002-mtd-Add-partition-device-node-to-mtd-partition-devic.patch │ │ │ ├── 065-v4.13-0001-mtd-handle-partitioning-on-devices-with-0-erasesize.patch │ │ │ ├── 065-v4.13-0002-mtd-partitions-factor-out-code-calling-parser.patch │ │ │ ├── 065-v4.13-0003-mtd-partitions-add-helper-for-deleting-partition.patch │ │ │ ├── 065-v4.13-0004-mtd-partitions-remove-sysfs-files-when-deleting-all-.patch │ │ │ ├── 065-v4.13-0005-mtd-partitions-rename-master-to-the-parent-where-app.patch │ │ │ ├── 065-v4.13-0006-mtd-partitions-add-support-for-subpartitions.patch │ │ │ ├── 065-v4.13-0007-mtd-partitions-add-support-for-partition-parsers.patch │ │ │ ├── 065-v4.13-0008-mtd-extract-TRX-parser-out-of-bcm47xxpart-into-a-sep.patch │ │ │ ├── 070-bcma-from-4.11.patch │ │ │ ├── 071-v4.10-0001-net-bgmac-allocate-struct-bgmac-just-once-don-t-copy.patch │ │ │ ├── 071-v4.10-0002-net-bgmac-drop-struct-bcma_mdio-we-don-t-need-anymor.patch │ │ │ ├── 071-v4.10-0003-net-bgmac-use-PHY-subsystem-for-initializing-PHY.patch │ │ │ ├── 072-bcma-from-4.12.patch │ │ │ ├── 075-v4.10-0001-net-phy-broadcom-Update-Auxiliary-Control-Register-m.patch │ │ │ ├── 075-v4.10-0002-net-phy-broadcom-Add-support-for-BCM54612E.patch │ │ │ ├── 075-v4.10-0003-net-phy-broadcom-add-bcm54xx_auxctl_read.patch │ │ │ ├── 075-v4.10-0004-net-phy-broadcom-Add-BCM54810-PHY-entry.patch │ │ │ ├── 075-v4.10-0005-net-phy-broadcom-Move-bcm54xx_auxctl_-read-write-to-.patch │ │ │ ├── 076-v4.11-0001-net-phy-broadcom-Allow-enabling-or-disabling-of-EEE.patch │ │ │ ├── 076-v4.11-0002-net-phy-broadcom-Add-support-code-for-reading-PHY-co.patch │ │ │ ├── 076-v4.11-0003-net-phy-bcm7xxx-Add-entry-for-BCM7278.patch │ │ │ ├── 076-v4.11-0004-net-phy-bcm7xxx-Implement-EGPHY-workaround-for-7278.patch │ │ │ ├── 076-v4.11-0005-net-phy-broadcom-use-auxctl-reading-helper-in-BCM546.patch │ │ │ ├── 076-v4.11-0006-net-phy-broadcom-add-support-for-BCM54210E.patch │ │ │ ├── 076-v4.11-0007-net-phy-broadcom-rehook-BCM54612E-specific-init.patch │ │ │ ├── 080-0001-leds-core-add-OF-variants-of-LED-registering-functio.patch │ │ │ ├── 080-0002-leds-gpio-use-OF-variant-of-LED-registering-function.patch │ │ │ ├── 081-0001-thermal-bcm2835-add-thermal-driver-for-bcm2835-SoC.patch │ │ │ ├── 081-0002-thermal-broadcom-add-Northstar-thermal-driver.patch │ │ │ ├── 082-0001-usb-core-read-USB-ports-from-DT-in-the-usbport-LED-t.patch │ │ │ └── 087-regmap-make-LZO-cache-optional.patch │ │ ├── config-3.18 │ │ ├── config-4.4 │ │ ├── config-4.9 │ │ ├── files │ │ │ ├── Documentation │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── drivers │ │ │ │ ├── leds │ │ │ │ │ └── ledtrig-netdev.c │ │ │ │ ├── misc │ │ │ │ │ └── owl-loader.c │ │ │ │ ├── mtd │ │ │ │ │ ├── mtdsplit │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mtdsplit.c │ │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ │ ├── mtdsplit_brnimage.c │ │ │ │ │ │ ├── mtdsplit_eva.c │ │ │ │ │ │ ├── mtdsplit_fit.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 │ │ │ │ │ └── b53.h │ │ │ │ ├── routerboot.h │ │ │ │ ├── rt2x00_platform.h │ │ │ │ ├── rtl8366.h │ │ │ │ ├── rtl8367.h │ │ │ │ └── switch.h │ │ │ │ └── uapi │ │ │ │ └── linux │ │ │ │ └── switch.h │ │ ├── hack-4.9 │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 207-disable-modorder.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-host_tools_portability.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 280-rfkill-stubs.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.patch │ │ │ ├── 641-bridge_port_isolate.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-use_fq_codel_by_default.patch │ │ │ ├── 662-remove_pfifo_fast.patch │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 835-misc-owl_loader.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ ├── 910-kobject_uevent.patch │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ ├── 921-always-create-console-node-in-initramfs.patch │ │ │ ├── 930-crashlog.patch │ │ │ └── 999-nvmem.patch │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── initramfs-base-files.txt │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── lzma-copy.lds.in │ │ │ │ │ ├── lzma.lds.in │ │ │ │ │ ├── print.c │ │ │ │ │ ├── print.h │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── start.S │ │ │ │ │ ├── uart16550.c │ │ │ │ │ └── uart16550.h │ │ │ └── relocate │ │ │ │ ├── Makefile │ │ │ │ ├── cacheops.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ └── loader.lds │ │ ├── other-files │ │ │ └── init │ │ ├── pending-3.18 │ │ │ ├── 001-mtdsplit_backport.patch │ │ │ ├── 002-phy_drivers_backport.patch │ │ │ ├── 003-myloader_backport.patch │ │ │ ├── 020-ssb_update.patch │ │ │ ├── 021-ssb_sprom.patch │ │ │ ├── 025-bcma_backport.patch │ │ │ ├── 026-bcma-from-3.20.patch │ │ │ ├── 027-bcma-from-4.1.patch │ │ │ ├── 028-bcma-from-4.2.patch │ │ │ ├── 029-bcma-from-4.4.patch │ │ │ ├── 030-backport_bcm47xx_nvram.patch │ │ │ ├── 030-nl80211-Allow-set-network-namespace-by-fd.patch │ │ │ ├── 031-bcma-from-4.5.patch │ │ │ ├── 032-bcma-from-4.6.patch │ │ │ ├── 040-mtd-bcm47xxpart-backports-from-3.19.patch │ │ │ ├── 041-mtd-bcm47xxpart-backports-from-3.20.patch │ │ │ ├── 043-mtd_GD25Q128B_support_backport_from_3.19.patch │ │ │ ├── 044-backport-m25p80-jedec-probe.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 051-02-bridge-allow-setting-hash_max-multicast_router-if-in.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 070-bgmac-register-napi-before-the-device.patch │ │ │ ├── 071-bgmac-activate-irqs-only-if-there-is-nothing-to-poll.patch │ │ │ ├── 072-bgmac-fix-device-initialization-on-Northstar-SoCs-co.patch │ │ │ ├── 073-bgmac-Clean-warning-messages.patch │ │ │ ├── 074-bgmac-register-fixed-PHY-for-ARM-BCM470X-BCM5301X-ch.patch │ │ │ ├── 075-bgmac-allow-enabling-on-ARCH_BCM_5301X.patch │ │ │ ├── 076-net-phy-export-fixed_phy_register.patch │ │ │ ├── 077-01-bgmac-fix-descriptor-frame-start-end-definitions.patch │ │ │ ├── 077-02-bgmac-implement-GRO-and-use-build_skb.patch │ │ │ ├── 077-03-bgmac-implement-scatter-gather-support.patch │ │ │ ├── 077-04-bgmac-simplify-tx-ring-index-handling.patch │ │ │ ├── 077-05-bgmac-leave-interrupts-disabled-as-long-as-there-is-.patch │ │ │ ├── 077-06-bgmac-set-received-skb-headroom-to-NET_SKB_PAD.patch │ │ │ ├── 077-07-bgmac-simplify-rx-DMA-error-handling.patch │ │ │ ├── 077-08-bgmac-add-check-for-oversized-packets.patch │ │ │ ├── 077-09-bgmac-increase-rx-ring-size-from-511-to-512.patch │ │ │ ├── 077-10-bgmac-simplify-dma-init-cleanup.patch │ │ │ ├── 077-11-bgmac-fix-DMA-rx-corruption.patch │ │ │ ├── 077-12-bgmac-drop-ring-num_slots.patch │ │ │ ├── 078-bgmac-reset-enable-Ethernet-core-before-using-it.patch │ │ │ ├── 079-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 080-00-fib_trie-Fix-proc-net-fib_trie-when-CONFIG_IP_MULTIP.patch │ │ │ ├── 080-01-fib_trie-Fix-trie-balancing-issue-if-new-node-pushes.patch │ │ │ ├── 080-02-fib_trie-Update-usage-stats-to-be-percpu-instead-of-.patch │ │ │ ├── 080-03-fib_trie-Make-leaf-and-tnode-more-uniform.patch │ │ │ ├── 080-04-fib_trie-Merge-tnode_free-and-leaf_free-into-node_fr.patch │ │ │ ├── 080-05-fib_trie-Merge-leaf-into-tnode.patch │ │ │ ├── 080-06-fib_trie-Optimize-fib_table_lookup-to-avoid-wasting-.patch │ │ │ ├── 080-07-fib_trie-Optimize-fib_find_node.patch │ │ │ ├── 080-08-fib_trie-Optimize-fib_table_insert.patch │ │ │ ├── 080-09-fib_trie-Update-meaning-of-pos-to-represent-unchecke.patch │ │ │ ├── 080-10-fib_trie-Use-unsigned-long-for-anything-dealing-with.patch │ │ │ ├── 080-11-fib_trie-Push-rcu_read_lock-unlock-to-callers.patch │ │ │ ├── 080-12-fib_trie-Move-resize-to-after-inflate-halve.patch │ │ │ ├── 080-13-fib_trie-Add-functions-should_inflate-and-should_hal.patch │ │ │ ├── 080-14-fib_trie-Push-assignment-of-child-to-parent-down-int.patch │ │ │ ├── 080-15-fib_trie-Push-tnode-flushing-down-to-inflate-halve.patch │ │ │ ├── 080-16-fib_trie-inflate-halve-nodes-in-a-more-RCU-friendly-.patch │ │ │ ├── 080-17-fib_trie-Remove-checks-for-index-tnode_child_length-.patch │ │ │ ├── 080-18-fib_trie-Add-tracking-value-for-suffix-length.patch │ │ │ ├── 080-19-fib_trie-Use-index-0ul-n-bits-instead-of-index-n-bit.patch │ │ │ ├── 080-20-fib_trie-Fix-RCU-bug-and-merge-similar-bits-of-infla.patch │ │ │ ├── 080-21-fib_trie-Fall-back-to-slen-update-on-inflate-halve-f.patch │ │ │ ├── 080-22-fib_trie-Add-collapse-and-should_collapse-to-resize.patch │ │ │ ├── 080-23-fib_trie-Use-empty_children-instead-of-counting-empt.patch │ │ │ ├── 080-24-fib_trie-Move-fib_find_alias-to-file-where-it-is-use.patch │ │ │ ├── 080-25-fib_trie-Various-clean-ups-for-handling-slen.patch │ │ │ ├── 081-01-pppoe-Use-workqueue-to-die-properly-when-a-PADT-is-r.patch │ │ │ ├── 081-02-pppoe-Lacks-DST-MAC-address-check.patch │ │ │ ├── 081-03-pppoe-drop-pppoe-device-in-pppoe_unbind_sock_work.patch │ │ │ ├── 081-06-ppp-don-t-set-sk_state-to-PPPOX_ZOMBIE-in-pppoe_disc.patch │ │ │ ├── 081-07-ppp-remove-PPPOX_ZOMBIE-socket-state.patch │ │ │ ├── 081-08-pppoe-fix-memory-corruption-in-padt-work-structure.patch │ │ │ ├── 082-ipv6-ip6_fragment-fix-headroom-tests-and-skb-leak.patch │ │ │ ├── 083-solos-pci-Increase-headroom-on-received-packets.patch │ │ │ ├── 087-regmap-make-LZO-cache-optional.patch │ │ │ ├── 090-overlayfs-fallback-to-readonly-when-full.patch │ │ │ ├── 091-mtd-spi-nor-add-support-Spansion_S25FL164K.patch │ │ │ ├── 092-01-spi-Check-to-see-if-the-device-is-processing-a-messa.patch │ │ │ ├── 092-02-spi-Pump-transfers-inside-calling-context-for-spi_sy.patch │ │ │ ├── 092-03-spi-Only-idle-the-message-pump-in-the-worker-kthread.patch │ │ │ ├── 095-api-fix-compatibility-of-linux-in.h-with-netinet-in..patch │ │ │ ├── 097-mm-remove-gup_flags-FOLL_WRITE-games-from-__get_user.patch │ │ │ ├── 099-module_arch_freeing_init-new-hook-for-archs-before-m.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 110-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 111-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 133-MIPS-UAPI-Ignore-__arch_swab-16-32-64-when-using-MIP.patch │ │ │ ├── 140-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 141-mtd-bcm47xxpart-limit-scanned-flash-area-on-BCM47XX-.patch │ │ │ ├── 142-mtd-bcm47xxpart-don-t-fail-because-of-bit-flips.patch │ │ │ ├── 180-usb-xhci-make-USB_XHCI_PLATFORM-selectable.patch │ │ │ ├── 190-cdc_ncm_add_support_for_moving_ndp_to_end_of_ncm_frame.patch │ │ │ ├── 191-usb-ehci-orion-fix-probe-for-GENERIC_PHY.patch │ │ │ ├── 192-USB-qcserial-Add-support-for-Quectel-EC20-Mini-PCIe-.patch │ │ │ ├── 193-USB-qmi_wwan-Add-quirk-for-Quectel-EC20-Mini-PCIe-mo.patch │ │ │ ├── 200-fix_localversion.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 213-x86_vdso_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 252-mv_cesa_depends.patch │ │ │ ├── 253-ssb_b43_default_on.patch │ │ │ ├── 254-textsearch_kconfig_hacks.patch │ │ │ ├── 255-lib80211_kconfig_hacks.patch │ │ │ ├── 256-crypto_add_kconfig_prompts.patch │ │ │ ├── 257-wireless_ext_kconfig_hack.patch │ │ │ ├── 258-netfilter_netlink_kconfig_hack.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 270-uapi-kernel.h-glibc-specific-inclusion-of-sysinfo.h.patch │ │ │ ├── 271-uapi-libc-compat.h-do-not-rely-on-__GLIBC__.patch │ │ │ ├── 272-uapi-if_ether.h-prevent-redefinition-of-struct-ethhd.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.patch │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 320-ppc4xx_optimization.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 400-mtd-add-rootfs-split-support.patch │ │ │ ├── 401-mtd-add-support-for-different-partition-parser-types.patch │ │ │ ├── 402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch │ │ │ ├── 403-mtd-hook-mtdsplit-to-Kbuild.patch │ │ │ ├── 404-mtd-add-more-helper-functions.patch │ │ │ ├── 405-mtd-old-firmware-uimage-splitter.patch │ │ │ ├── 406-mtd-old-rootfs-squashfs-splitter.patch │ │ │ ├── 410-mtd-move-forward-declaration-of-struct-mtd_info.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.patch │ │ │ ├── 450-mtd-nand-allow-to-use-platform-specific-chip-fixup.patch │ │ │ ├── 451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 472-mtd-m25p80-add-support-for-Winbond-W25X05-flash.patch │ │ │ ├── 473-mtd-spi-nor-add-support-for-the-Macronix-MX25L512E-S.patch │ │ │ ├── 474-mtd-spi-nor-add-support-for-the-ISSI-SI25CD512-SPI-f.patch │ │ │ ├── 475-mtd-spi-nor-add-macronix-mx25u25635f.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch │ │ │ ├── 491-ubi-auto-create-ubiblock-device-for-rootfs.patch │ │ │ ├── 492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch │ │ │ ├── 493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch │ │ │ ├── 494-mtd-ubi-add-EOF-marker-support.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 550-ubifs-symlink-xattr-support.patch │ │ │ ├── 551-ubifs-fix-default-compression-selection.patch │ │ │ ├── 600-netfilter_conntrack_flush.patch │ │ │ ├── 610-netfilter_match_bypass_default_checks.patch │ │ │ ├── 611-netfilter_match_bypass_default_table.patch │ │ │ ├── 612-netfilter_match_reduce_memory_access.patch │ │ │ ├── 613-netfilter_optional_tcp_window_check.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 621-sched_act_connmark.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 640-bridge_no_eap_forward.patch │ │ │ ├── 641-bridge_always_accept_eap.patch │ │ │ ├── 642-bridge_port_isolate.patch │ │ │ ├── 645-bridge_multicast_to_unicast.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 653-disable_netlink_trim.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 656-skb_reduce_truesize-helper.patch │ │ │ ├── 657-qdisc_reduce_truesize.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-fq_codel_keep_dropped_stats.patch │ │ │ ├── 662-use_fq_codel_by_default.patch │ │ │ ├── 663-remove_pfifo_fast.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 667-ipv6-Fixed-source-specific-default-route-handling.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ ├── 681-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 700-swconfig.patch │ │ │ ├── 701-phy_extension.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-phy-no-genphy-soft-reset.patch │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 720-phy_adm6996.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 722-phy_mvswitch.patch │ │ │ ├── 723-phy_ip175c.patch │ │ │ ├── 724-phy_ar8216.patch │ │ │ ├── 725-phy_rtl8306.patch │ │ │ ├── 726-phy_rtl8366.patch │ │ │ ├── 727-phy-rtl8367.patch │ │ │ ├── 728-phy-rtl8367b.patch │ │ │ ├── 729-phy-tantos.patch │ │ │ ├── 730-phy_b53.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 733-phy_mvsw61xx.patch │ │ │ ├── 734-net-phy-at803x-allow-to-configure-via-pdata.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.patch │ │ │ ├── 760-8139cp-fixes-from-4.3.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 785-hso-support-0af0-9300.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 821-usb-dwc2-dualrole.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 840-rtc7301.patch │ │ │ ├── 841-rtc_pt7c4338.patch │ │ │ ├── 861-04_spi_gpio_implement_spi_delay.patch │ │ │ ├── 862-gpio_spi_driver.patch │ │ │ ├── 870-hifn795x_byteswap.patch │ │ │ ├── 890-8250_optional_sysrq.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ ├── 910-kobject_uevent.patch │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ ├── 921-use_preinit_as_init.patch │ │ │ ├── 922-always-create-console-node-in-initramfs.patch │ │ │ ├── 930-crashlog.patch │ │ │ ├── 970-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 980-arm_openwrt_machtypes.patch │ │ │ ├── 990-gpio_wdt.patch │ │ │ ├── 995-mangle_bootargs.patch │ │ │ ├── 997-device_tree_cmdline.patch │ │ │ ├── 998-enable_wilink_platform_without_drivers.patch │ │ │ └── 999-seccomp_log.patch │ │ ├── pending-4.4 │ │ │ ├── 001-mtdsplit_backport.patch │ │ │ ├── 002-phy_drivers_backport.patch │ │ │ ├── 003-myloader_backport.patch │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 020-bcma-from-4.5.patch │ │ │ ├── 021-bcma-from-4.6.patch │ │ │ ├── 022-bcma-from-4.8.patch │ │ │ ├── 023-bcma-from-4.9.patch │ │ │ ├── 025-bcma-from-4.11.patch │ │ │ ├── 026-bcma-from-4.12.patch │ │ │ ├── 030-1-smsc95xx-Use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 030-2-smsc75xx-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 030-3-cx82310_eth-use-skb_cow_head-to-deal-with-cloned-skb.patch │ │ │ ├── 030-4-sr9700-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 030-5-lan78xx-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 030-6-ch9200-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 030-7-kaweth-use-skb_cow_head-to-deal-with-cloned-skbs.patch │ │ │ ├── 032-fq_codel-add-batch-ability-to-fq_codel_drop.patch │ │ │ ├── 033-fq_codel-add-memory-limitation-per-queue.patch │ │ │ ├── 034-fq_codel-fix-memory-limitation-drift.patch │ │ │ ├── 035-fq_codel-fix-NET_XMIT_CN-behavior.patch │ │ │ ├── 041-mtd-spi-nor-include-mtd.h-header-for-struct-mtd_info.patch │ │ │ ├── 042-0001-mtd-bcm47xxsflash-use-ioremap_cache-instead-of-KSEG0.patch │ │ │ ├── 042-0002-mtd-add-arch-dependency-for-MTD_BCM47XXSFLASH-symbol.patch │ │ │ ├── 042-0003-mtd-bcm47xxsflash-use-uncached-MMIO-access-for-BCM53.patch │ │ │ ├── 042-0005-mtd-bcm47xxsflash-use-platform_-set-get-_drvdata.patch │ │ │ ├── 042-0006-mtd-bcm47xxsflash-support-reading-flash-out-of-mappi.patch │ │ │ ├── 042-0007-mtd-bcm47xxpart-move-TRX-parsing-code-to-separated-f.patch │ │ │ ├── 042-0008-mtd-bcm47xxpart-support-layouts-with-multiple-TRX-pa.patch │ │ │ ├── 043-mtd-spi-nor-mx25l3205d-mx25l6405d-append-SECT_4K.patch │ │ │ ├── 045-mtd-devices-m25p80-add-support-for-mmap-read-request.patch │ │ │ ├── 046-ubifs-silence-error-output-if-MS_SILENT-is-set.patch │ │ │ ├── 047-ubifs-silence-early-error-if-MS_SILENT-is-set.patch │ │ │ ├── 048-mtd-spi-nor-backport-SPI_NOR_HAS_LOCK-flag.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 051-0001-ovl-rename-is_merge-to-is_lowest.patch │ │ │ ├── 051-0002-ovl-override-creds-with-the-ones-from-the-superblock.patch │ │ │ ├── 051-0005-ovl-proper-cleanup-of-workdir.patch │ │ │ ├── 052-01-ubifs-Implement-O_TMPFILE.patch │ │ │ ├── 052-02-ubifs-Implement-RENAME_WHITEOUT.patch │ │ │ ├── 052-03-ubifs-Implement-RENAME_EXCHANGE.patch │ │ │ ├── 052-04-ubifs-Use-move-variable-in-ubifs_rename.patch │ │ │ ├── 053-0001-ubifs-Drop-softlimit-and-delta-fields-from-struct-ub.patch │ │ │ ├── 053-0002-ubifs-Use-dirty_writeback_interval-value-for-wbuf-ti.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 061-softirq-let-ksoftirqd-do-its-job.patch │ │ │ ├── 070-v4.5-0003-net-bgmac-clarify-CONFIG_BCMA-dependency.patch │ │ │ ├── 070-v4.6-0001-bgmac-add-helper-checking-for-BCM4707-BCM53018-chip-.patch │ │ │ ├── 070-v4.6-0002-bgmac-support-Ethernet-device-on-BCM47094-SoC.patch │ │ │ ├── 070-v4.6-0004-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 070-v4.8-0001-bgmac-Bind-net_device-with-backing-device-structure.patch │ │ │ ├── 070-v4.8-0002-bgmac-Add-support-for-ethtool-statistics.patch │ │ │ ├── 070-v4.8-0003-bgmac-Maintain-some-netdev-statistics.patch │ │ │ ├── 070-v4.8-0004-net-ethernet-bgmac-use-phydev-from-struct-net_device.patch │ │ │ ├── 071-v4.8-0001-net-ethernet-bgmac-change-bgmac_-prints-to-dev_-prin.patch │ │ │ ├── 071-v4.8-0002-net-ethernet-bgmac-add-dma_dev-pointer.patch │ │ │ ├── 071-v4.8-0003-net-ethernet-bgmac-move-BCMA-MDIO-Phy-code-into-a-se.patch │ │ │ ├── 071-v4.8-0004-net-ethernet-bgmac-convert-to-feature-flags.patch │ │ │ ├── 071-v4.8-0005-net-ethernet-bgmac-Add-platform-device-support.patch │ │ │ ├── 071-v4.8-0006-net-ethernet-bgmac-Fix-return-value-check-in-bgmac_p.patch │ │ │ ├── 071-v4.8-0007-net-ethernet-bgmac-Remove-redundant-dev_err-call-in-.patch │ │ │ ├── 071-v4.8-0009-net-bgmac-fix-reversed-check-for-MII-registration-er.patch │ │ │ ├── 071-v4.9-0001-net-bgmac-support-Ethernet-core-on-BCM53573-SoCs.patch │ │ │ ├── 071-v4.9-0002-net-bgmac-make-it-clear-when-setting-interface-type-.patch │ │ │ ├── 071-v4.9-0003-net-bgmac-Fix-errant-feature-flag-check.patch │ │ │ ├── 071-v4.9-0004-net-bgmac-fix-spelling-mistake-connecton-connection.patch │ │ │ ├── 071-v4.9-0005-net-bgmac-fix-reversed-checks-for-clock-control-flag.patch │ │ │ ├── 072-net-add-devm-version-of-alloc_etherdev_mqs-function.patch │ │ │ ├── 073-v4.10-0001-net-bgmac-allocate-struct-bgmac-just-once-don-t-copy.patch │ │ │ ├── 073-v4.10-0002-net-bgmac-drop-struct-bcma_mdio-we-don-t-need-anymor.patch │ │ │ ├── 073-v4.10-0003-net-bgmac-use-PHY-subsystem-for-initializing-PHY.patch │ │ │ ├── 074-NET-PHY-adds-driver-for-lantiq-PHY11G.patch │ │ │ ├── 078-0001-net-phy-update-Broadcom-drivers-to-v4.5.patch │ │ │ ├── 078-0002-net-phy-update-Broadcom-drivers-to-v4.6.patch │ │ │ ├── 078-0003-net-phy-cherry-pick-Broadcom-drivers-updates-from-v4.patch │ │ │ ├── 078-0004-net-phy-pick-Broadcom-drivers-updates-from-net-next-.patch │ │ │ ├── 080-spi-introduce-accelerated-read-support-for-spi-flash.patch │ │ │ ├── 081-spi-bcm53xx-add-spi_flash_read-callback-for-MMIO-bas.patch │ │ │ ├── 082-0001-USB-core-let-USB-device-know-device-node.patch │ │ │ ├── 082-0002-usb-core-usb_alloc_dev-fix-setting-of-portnum.patch │ │ │ ├── 083-0001-clk-Add-devm_-clk_hw_-register-unregister-APIs.patch │ │ │ ├── 083-0002-clk-Add-clk_hw-OF-clk-providers.patch │ │ │ ├── 084-0001-usb-core-Introduce-a-USB-port-LED-trigger.patch │ │ │ ├── 084-0002-usb-core-usbport-Use-proper-LED-API-to-fix-potential.patch │ │ │ ├── 084-0003-usb-core-read-USB-ports-from-DT-in-the-usbport-LED-t.patch │ │ │ ├── 085-0001-leds-leds-gpio-Set-of_node-for-created-LED-devices.patch │ │ │ ├── 085-0002-leds-gpio-introduce-gpio_blink_set_t.patch │ │ │ ├── 085-0003-leds-gpio-switch-to-managed-version-of-led_classdev_.patch │ │ │ ├── 085-0004-leds-core-add-OF-variants-of-LED-registering-functio.patch │ │ │ ├── 085-0005-leds-gpio-use-OF-variant-of-LED-registering-function.patch │ │ │ ├── 086-0001-thermal-of-thermal-Add-devm-version-of-thermal_zone_.patch │ │ │ ├── 086-0002-thermal-core-export-apis-to-get-slope-and-offset.patch │ │ │ ├── 086-0003-thermal-bcm2835-add-thermal-driver-for-bcm2835-SoC.patch │ │ │ ├── 086-0004-thermal-broadcom-add-Northstar-thermal-driver.patch │ │ │ ├── 086-0005-thermal-broadcom-fix-compilation-of-Northstar-driver.patch │ │ │ ├── 087-regmap-make-LZO-cache-optional.patch │ │ │ ├── 090-MIPS-c-r4k-Use-IPI-calls-for-CM-indexed-cache-ops.patch │ │ │ ├── 091-MIPS-c-r4k-Exclude-sibling-CPUs-in-SMP-calls.patch │ │ │ ├── 092-MIPS-ZBOOT-copy-appended-dtb-to-the-end-of-the-kerne.patch │ │ │ ├── 093-MIPS-store-the-appended-dtb-address-in-a-variable.patch │ │ │ ├── 094-MIPS-c-r4k-Fix-size-calc-when-avoiding-IPIs-for-smal.patch │ │ │ ├── 096-arc-add-model-property-in-dts.patch │ │ │ ├── 097-MIPS-io.h-Define-ioremap_cache.patch │ │ │ ├── 098-usb-dwc2-Remove-unnecessary-kfree.patch │ │ │ ├── 101-MIPS-fix-cache-flushing-for-highmem-pages.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 103-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 105-add-linux-spidev-compatible.patch │ │ │ ├── 106-spi-use-gpio_set_value_cansleep-for-setting-chipsele.patch │ │ │ ├── 110-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 111-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 140-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 150-mtd-spi-nor-add-support-for-ESMT_f25l32qa-and-ESMT_f.patch │ │ │ ├── 160-usb-gadget-udc-net2280-add-usb2380-support.patch │ │ │ ├── 180-Revert-bcma-init-serial-console-directly-from-ChipCo.patch │ │ │ ├── 200-fix_localversion.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 206-mips-disable-vdso.patch │ │ │ ├── 207-mips-vdso-dbg-rebuild-after-genvdso.patch │ │ │ ├── 208-disable-modorder.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-sign-file-libressl.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 222-arm_zimage_none.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 252-mv_cesa_depends.patch │ │ │ ├── 253-ssb_b43_default_on.patch │ │ │ ├── 254-textsearch_kconfig_hacks.patch │ │ │ ├── 255-lib80211_kconfig_hacks.patch │ │ │ ├── 256-crypto_add_kconfig_prompts.patch │ │ │ ├── 257-wireless_ext_kconfig_hack.patch │ │ │ ├── 258-netfilter_netlink_kconfig_hack.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 270-uapi-kernel.h-glibc-specific-inclusion-of-sysinfo.h.patch │ │ │ ├── 271-uapi-libc-compat.h-do-not-rely-on-__GLIBC__.patch │ │ │ ├── 272-uapi-if_ether.h-prevent-redefinition-of-struct-ethhd.patch │ │ │ ├── 280-rfkill-stubs.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.patch │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ ├── 308-mips32r2_tune.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 320-ppc4xx_optimization.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 331-arc-remove-dependency-on-DEVTMPFS.patch │ │ │ ├── 332-arc-add-OWRTDTB-section.patch │ │ │ ├── 333-arc-enable-unaligned-access-in-kernel-mode.patch │ │ │ ├── 400-mtd-add-rootfs-split-support.patch │ │ │ ├── 401-mtd-add-support-for-different-partition-parser-types.patch │ │ │ ├── 402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch │ │ │ ├── 403-mtd-hook-mtdsplit-to-Kbuild.patch │ │ │ ├── 404-mtd-add-more-helper-functions.patch │ │ │ ├── 410-mtd-move-forward-declaration-of-struct-mtd_info.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.patch │ │ │ ├── 450-mtd-nand-allow-to-use-platform-specific-chip-fixup.patch │ │ │ ├── 451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 465-m25p80-mx-disable-software-protection.patch │ │ │ ├── 475-mtd-spi-nor-add-macronix-mx25u25635f.patch │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-add-spi-nor-add-mx25u3235f.patch │ │ │ ├── 479-enable_mtd_has_lock_for_f25l32pa.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch │ │ │ ├── 491-ubi-auto-create-ubiblock-device-for-rootfs.patch │ │ │ ├── 492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch │ │ │ ├── 493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch │ │ │ ├── 494-mtd-ubi-add-EOF-marker-support.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 551-ubifs-fix-default-compression-selection.patch │ │ │ ├── 600-netfilter_conntrack_flush.patch │ │ │ ├── 610-netfilter_match_bypass_default_checks.patch │ │ │ ├── 611-netfilter_match_bypass_default_table.patch │ │ │ ├── 612-netfilter_match_reduce_memory_access.patch │ │ │ ├── 613-netfilter_optional_tcp_window_check.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 640-bridge_no_eap_forward.patch │ │ │ ├── 641-bridge_always_accept_eap.patch │ │ │ ├── 642-bridge_port_isolate.patch │ │ │ ├── 645-bridge_multicast_to_unicast.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 653-disable_netlink_trim.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-fq_codel_keep_dropped_stats.patch │ │ │ ├── 662-use_fq_codel_by_default.patch │ │ │ ├── 663-remove_pfifo_fast.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ ├── 681-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 700-swconfig.patch │ │ │ ├── 701-phy_extension.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-phy-no-genphy-soft-reset.patch │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 720-phy_adm6996.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 722-phy_mvswitch.patch │ │ │ ├── 723-phy_ip175c.patch │ │ │ ├── 724-phy_ar8216.patch │ │ │ ├── 725-phy_rtl8306.patch │ │ │ ├── 726-phy_rtl8366.patch │ │ │ ├── 727-phy-rtl8367.patch │ │ │ ├── 728-phy-rtl8367b.patch │ │ │ ├── 729-phy-tantos.patch │ │ │ ├── 730-phy_b53.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 733-phy_mvsw61xx.patch │ │ │ ├── 734-net-phy-at803x-allow-to-configure-via-pdata.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.patch │ │ │ ├── 736-at803x-fix-reset-handling.patch │ │ │ ├── 737-net-phy-at803x-Request-reset-GPIO-only-for-AT8030-PH.patch │ │ │ ├── 738-net-phy-at803x-only-the-AT8030-needs-a-hardware-rese.patch │ │ │ ├── 739-net-phy-at803x-add-support-for-AT8032.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 821-usb-Remove-annoying-warning-about-bogus-URB.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 835-misc-owl_loader.patch │ │ │ ├── 840-rtc7301.patch │ │ │ ├── 841-rtc_pt7c4338.patch │ │ │ ├── 861-04_spi_gpio_implement_spi_delay.patch │ │ │ ├── 862-gpio_spi_driver.patch │ │ │ ├── 890-uart_optional_sysrq.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ ├── 910-kobject_uevent.patch │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ ├── 921-use_preinit_as_init.patch │ │ │ ├── 922-always-create-console-node-in-initramfs.patch │ │ │ ├── 930-crashlog.patch │ │ │ ├── 970-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 995-mangle_bootargs.patch │ │ │ └── 998-enable_wilink_platform_without_drivers.patch │ │ └── pending-4.9 │ │ │ ├── 100-MIPS-fix-cache-flushing-for-highmem-pages.patch │ │ │ ├── 110-ehci_hcd_ignore_oc.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ ├── 131-spi-use-gpio_set_value_cansleep-for-setting-chipsele.patch │ │ │ ├── 140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 141-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 160-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 170-MIPS-PCI-add-controllers-before-the-specified-head.patch │ │ │ ├── 180-net-phy-at803x-add-support-for-AT8032.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 206-mips-disable-vdso.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 261-enable_wilink_platform_without_drivers.patch │ │ │ ├── 270-uapi-kernel.h-glibc-specific-inclusion-of-sysinfo.h.patch │ │ │ ├── 271-uapi-libc-compat.h-do-not-rely-on-__GLIBC__.patch │ │ │ ├── 272-uapi-if_ether.h-prevent-redefinition-of-struct-ethhd.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 465-m25p80-mx-disable-software-protection.patch │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-add-spi-nor-add-mx25u3235f.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch │ │ │ ├── 491-ubi-auto-create-ubiblock-device-for-rootfs.patch │ │ │ ├── 492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch │ │ │ ├── 493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch │ │ │ ├── 494-mtd-ubi-add-EOF-marker-support.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 551-ubifs-fix-default-compression-selection.patch │ │ │ ├── 600-netfilter_conntrack_flush.patch │ │ │ ├── 610-netfilter_match_bypass_default_checks.patch │ │ │ ├── 611-netfilter_match_bypass_default_table.patch │ │ │ ├── 612-netfilter_match_reduce_memory_access.patch │ │ │ ├── 613-netfilter_optional_tcp_window_check.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ ├── 681-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 701-phy_extension.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-phy-no-genphy-soft-reset.patch │ │ │ ├── 734-net-phy-at803x-allow-to-configure-via-pdata.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 821-usb-Remove-annoying-warning-about-bogus-URB.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 890-uart_optional_sysrq.patch │ │ │ └── 920-mangle_bootargs.patch │ ├── imx6 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── imx6.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── files-4.9 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── imx6dl-gw5904.dts │ │ │ │ ├── imx6q-gw5904.dts │ │ │ │ └── imx6qdl-gw5904.dtsi │ │ ├── image │ │ │ ├── Makefile │ │ │ └── bootscript-ventana │ │ ├── patches-4.9 │ │ │ ├── 0001-arm-dts-imx-add-gateworks-ventana-gw5904-support.patch │ │ │ ├── 100-bootargs.patch │ │ │ ├── 200-disable-msi.patch │ │ │ └── 210-disable-uart-dma.patch │ │ └── profiles │ │ │ └── 100-generic.mk │ ├── ipq806x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ ├── init.d │ │ │ │ │ └── linksys_recovery │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── ipq806x.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_preinit_do_ipq806x.sh │ │ │ │ └── upgrade │ │ │ │ ├── linksys.sh │ │ │ │ ├── platform.sh │ │ │ │ └── zyxel.sh │ │ ├── config-4.9 │ │ ├── files-4.4 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq8064-c2600.dts │ │ │ │ ├── qcom-ipq8064-d7800.dts │ │ │ │ ├── qcom-ipq8064-ea8500.dts │ │ │ │ ├── qcom-ipq8064-r7500.dts │ │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ │ ├── qcom-ipq8064-vr2600v.dts │ │ │ │ ├── qcom-ipq8065-nbg6817.dts │ │ │ │ ├── qcom-ipq8065-r7800.dts │ │ │ │ ├── qcom-ipq8065-v1.0.dtsi │ │ │ │ └── qcom-ipq8065.dtsi │ │ ├── files-4.9 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq4019-bus.dtsi │ │ │ │ ├── qcom-ipq4019-fritz4040.dts │ │ │ │ ├── qcom-ipq4019-nbg6617.dts │ │ │ │ ├── qcom-ipq4019-rt-ac58u.dts │ │ │ │ ├── qcom-ipq8064-ap148.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-vr2600v.dts │ │ │ │ ├── qcom-ipq8064.dtsi │ │ │ │ ├── qcom-ipq8065-nbg6817.dts │ │ │ │ ├── qcom-ipq8065-r7800.dts │ │ │ │ ├── qcom-ipq8065-v1.0.dtsi │ │ │ │ └── qcom-ipq8065.dtsi │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-4.9 │ │ │ ├── 0001-dtbindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 0002-dmaengine-Add-ADM-driver.patch │ │ │ ├── 0003-spi-qup-Make-sure-mode-is-only-determined-once.patch │ │ │ ├── 0004-spi-qup-Fix-transaction-done-signaling.patch │ │ │ ├── 0005-spi-qup-Fix-DMA-mode-to-work-correctly.patch │ │ │ ├── 0006-spi-qup-Fix-block-mode-to-work-correctly.patch │ │ │ ├── 0007-spi-qup-properly-detect-extra-interrupts.patch │ │ │ ├── 0008-spi-qup-don-t-re-read-opflags-to-see-if-transaction-.patch │ │ │ ├── 0009-spi-qup-refactor-spi_qup_io_config-in-two-functions.patch │ │ │ ├── 0010-spi-qup-call-io_config-in-mode-specific-function.patch │ │ │ ├── 0011-spi-qup-allow-block-mode-to-generate-multiple-transa.patch │ │ │ ├── 0012-spi-qup-refactor-spi_qup_prep_sg-to-be-more-take-spe.patch │ │ │ ├── 0013-spi-qup-allow-mulitple-DMA-transactions-per-spi-xfer.patch │ │ │ ├── 0014-spi-qup-Fix-sg-nents-calculation.patch │ │ │ ├── 0015-cpufreq-dt-qcom-ipq4019-Add-compat-for-qcom-ipq4019.patch │ │ │ ├── 0016-clk-ipq4019-report-accurate-fixed-clock-rates.patch │ │ │ ├── 0017-qcom-ipq4019-add-cpu-operating-points-for-cpufreq-su.patch │ │ │ ├── 0018-qcom-ipq4019-turn-on-DMA-for-i2c.patch │ │ │ ├── 0019-qcom-ipq4019-use-correct-clock-for-i2c-bus-0.patch │ │ │ ├── 0020-qcom-ipq4019-enable-DMA-for-spi.patch │ │ │ ├── 0022-dts-ipq4019-support-ARMv7-PMU.patch │ │ │ ├── 0026-dts-ipq4019-Add-support-for-IPQ4019-DK04-board.patch │ │ │ ├── 0027-clk-qcom-Add-support-for-SMD-RPM-Clocks.patch │ │ │ ├── 0028-clk-qcom-Add-support-for-RPM-Clocks.patch │ │ │ ├── 0029-clk-qcom-clk-rpm-Fix-clk_hw-references.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 │ │ │ ├── 0036-clk-Avoid-sending-high-rates-to-downstream-clocks-du.patch │ │ │ ├── 0037-clk-Add-safe-switch-hook.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-qcom-krait-Remove-CLK_IS_ROOT.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 │ │ │ ├── 0050-OPP-Allow-notifiers-to-call-dev_pm_opp_get_-voltage-.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-clk-qcom-Add-regmap-mux-div-clocks-support.patch │ │ │ ├── 0058-clk-qcom-Always-add-factor-clock-for-xo-clocks.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 │ │ │ ├── 0066-GPIO-add-named-gpio-exports.patch │ │ │ ├── 0067-generic-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 0068-spi-add-gpio-cs-support.patch │ │ │ ├── 0069-arm-boot-add-dts-files.patch │ │ │ ├── 0070-qcom-spm-fix-probe-order.patch │ │ │ ├── 0071-pcie-qcom-fixes.patch │ │ │ ├── 0072-ipq-scm-TZ-don-t-need-clock-to-be-enabled-disabled-for-ipq.patch │ │ │ ├── 0073-pinctrl-qom-use-scm_call-to-route-GPIO-irq-to-Apps.patch │ │ │ ├── 104-mtd-nand-add-Winbond-manufacturer-and-chip.patch │ │ │ ├── 105-mtd-nor-add-mx25l25635f.patch │ │ │ ├── 305-qcom-ipq4019-use-v2-of-the-kpss-bringup-mechanism.patch │ │ │ ├── 306-qcom-ipq4019-add-USB-nodes-to-ipq4019-SoC-device-tre.patch │ │ │ ├── 307-ARM-qcom-Add-IPQ4019-SoC-support.patch │ │ │ ├── 308-dts-ipq4019-add-both-IPQ4019-wifi-block-definitions.patch │ │ │ ├── 309-dts-ipq4019-add-pseudo-random-number-generator.patch │ │ │ ├── 310-msm-adhoc-bus-support.patch │ │ │ ├── 400-mtd-ubi-add-quirk-to-autoload-ubi-on-rt-ac58u.patch │ │ │ ├── 605-net-IPQ4019-needs-rfs-vlan_tag-callbacks-in.patch │ │ │ ├── 700-net-add-qualcomm-mdio-and-phy.patch │ │ │ ├── 701-dts-ipq4019-add-mdio-node.patch │ │ │ ├── 702-dts-ipq4019-add-PHY-switch-nodes.patch │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ ├── 820-qcom-ipq4019-Add-IPQ4019-USB-HS-SS-PHY-drivers.patch │ │ │ ├── 830-usb-dwc3-register-qca-ipq4019-dwc3-in-dwc3-of-simple.patch │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ ├── 852-ipq4019-pinctrl-Updated-various-Pin-definitions.patch │ │ │ ├── 859-msm-pinctrl-Add-support-to-configure-ipq40xx-GPIO_PU.patch │ │ │ ├── 860-qcom-mtd-nand-Add-bam_dma-support-in-qcom_nand-drive.patch │ │ │ ├── 861-qcom-mtd-nand-Added-bam-transaction-and-support-addi.patch │ │ │ ├── 862-dmaengine-qcom-bam_dma-Add-custom-data-mapping.patch │ │ │ └── 863-dts-ipq4019-add-nand-and-qpic-bam-dma-node.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── ixp4xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ixp4xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ └── 05_set_ether_mac_ixp4xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ ├── 100-Default.mk │ │ │ │ ├── 105-Atheros-ath5k.mk │ │ │ │ ├── 200-NSLU2.mk │ │ │ │ ├── 300-NAS100d.mk │ │ │ │ ├── 400-DSMG600RevA.mk │ │ │ │ └── 500-USR8200.mk │ │ │ └── target.mk │ │ ├── harddisk │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 100-FSG3.mk │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-4.4 │ │ │ ├── 001-arm-ixp4xx-set-cohorent_dma_mask-for-ethernet-platfo.patch │ │ │ ├── 002-ixp4xx_eth-use-parent-device-for-dma-allocations.patch │ │ │ ├── 020-gateworks_i2c_pld.patch │ │ │ ├── 030-gpio_line_config.patch │ │ │ ├── 040-arm_mach_types.patch │ │ │ ├── 090-increase_entropy_pools.patch │ │ │ ├── 100-wg302v2_gateway7001_mac_plat_info.patch │ │ │ ├── 105-wg302v1_support.patch │ │ │ ├── 110-pronghorn_series_support.patch │ │ │ ├── 111-pronghorn_swap_uarts.patch │ │ │ ├── 115-sidewinder_support.patch │ │ │ ├── 116-sidewinder_fis_location.patch │ │ │ ├── 120-compex_support.patch │ │ │ ├── 130-wrt300nv2_support.patch │ │ │ ├── 131-wrt300nv2_mac_plat_info.patch │ │ │ ├── 132-wrt300nv2_mac_fix.patch │ │ │ ├── 150-lanready_ap1000_support.patch │ │ │ ├── 151-lanready_ap1000_mac_plat_info.patch │ │ │ ├── 160-delayed_uart_io.patch │ │ │ ├── 162-wg302v1_mem_fixup.patch │ │ │ ├── 170-ixdpg425_mac_plat_info.patch │ │ │ ├── 175-avila_hss_audio_support.patch │ │ │ ├── 180-tw5334_support.patch │ │ │ ├── 185-mi424wr_support.patch │ │ │ ├── 190-cambria_support.patch │ │ │ ├── 201-npe_driver_print_license_location.patch │ │ │ ├── 203-npe_driver_mask_phy_features.patch │ │ │ ├── 205-npe_driver_separate_phy_functions.patch │ │ │ ├── 206-npe_driver_add_update_link_function.patch │ │ │ ├── 207-npe_driver_multiphy_support.patch │ │ │ ├── 295-latch_led_driver.patch │ │ │ ├── 300-avila_support.patch │ │ │ ├── 304-ixp4xx_eth_jumboframe.patch │ │ │ ├── 310-gtwx5717_spi_bus.patch │ │ │ ├── 311-gtwx5717_mac_plat_info.patch │ │ │ ├── 312-ixp4xx_pata_optimization.patch │ │ │ ├── 500-usr8200_support.patch │ │ │ ├── 520-tw2662_support.patch │ │ │ ├── 530-ap42x_support.patch │ │ │ ├── 600-skb_avoid_dmabounce.patch │ │ │ ├── 900-ixp4xx-crypto-include-module.h.patch │ │ │ └── 910-ixp4xx-nr_irq_lines.patch │ ├── kirkwood │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── init.d │ │ │ │ │ ├── linksys_recovery │ │ │ │ │ └── nsa310_fancontrol │ │ │ └── lib │ │ │ │ ├── kirkwood.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ ├── linksys.sh │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.9 │ │ │ ├── 100-ib62x0.patch │ │ │ ├── 101-iconnect.patch │ │ │ ├── 102-dockstar.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 │ │ │ ├── 107-03-nsa310s.patch │ │ │ ├── 108-on100.patch │ │ │ ├── 200-disable-tso.patch │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ └── 202-linksys-find-active-root.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── lantiq │ │ ├── Makefile │ │ ├── ase │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── dsl │ │ │ │ │ │ ├── led_dsl.sh │ │ │ │ │ │ └── pppoa.sh │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 11-ath10k-caldata │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 01_led_migration │ │ │ ├── lib │ │ │ │ ├── functions │ │ │ │ │ ├── lantiq.sh │ │ │ │ │ └── lantiq_dsl.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 01_preinit_board.sh │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── dsl_notify.sh │ │ ├── config-4.4 │ │ ├── config-4.9 │ │ ├── dts │ │ │ ├── ACMP252.dts │ │ │ ├── ALL0333CJ.dts │ │ │ ├── ARV4510PW.dts │ │ │ ├── ARV4518PWR01.dts │ │ │ ├── ARV4518PWR01.dtsi │ │ │ ├── ARV4518PWR01A.dts │ │ │ ├── ARV4519PW.dts │ │ │ ├── ARV4520PW.dts │ │ │ ├── ARV4525PW.dts │ │ │ ├── ARV452CQW.dts │ │ │ ├── ARV7506PW11.dts │ │ │ ├── ARV7510PW22.dts │ │ │ ├── ARV7518PW.dts │ │ │ ├── ARV7519PW.dts │ │ │ ├── ARV7519RW22.dts │ │ │ ├── ARV7525PW.dts │ │ │ ├── ARV752DPW.dts │ │ │ ├── ARV752DPW22.dts │ │ │ ├── ARV8539PW22.dts │ │ │ ├── ASL56026.dts │ │ │ ├── BTHOMEHUBV2B.dts │ │ │ ├── BTHOMEHUBV3A.dts │ │ │ ├── BTHOMEHUBV5A.dts │ │ │ ├── DGN1000B.dts │ │ │ ├── DGN3500.dts │ │ │ ├── DGN3500.dtsi │ │ │ ├── DGN3500B.dts │ │ │ ├── DM200.dts │ │ │ ├── EASY50712.dts │ │ │ ├── EASY50810.dts │ │ │ ├── EASY80920.dtsi │ │ │ ├── EASY80920NAND.dts │ │ │ ├── EASY80920NOR.dts │ │ │ ├── EASY88388.dts │ │ │ ├── EASY88444.dts │ │ │ ├── EASY98000-base.dtsi │ │ │ ├── EASY98000NAND.dts │ │ │ ├── EASY98000NOR.dts │ │ │ ├── EASY98000SFLASH.dts │ │ │ ├── EASY98020.dts │ │ │ ├── EASY98020V18.dts │ │ │ ├── EASY98021.dts │ │ │ ├── EASY98035SYNCE.dts │ │ │ ├── EASY98035SYNCE1588.dts │ │ │ ├── FALCON-MDU.dts │ │ │ ├── FALCON-SFP.dts │ │ │ ├── FRITZ3370.dts │ │ │ ├── FRITZ7320.dts │ │ │ ├── FRITZ7360SL.dts │ │ │ ├── GIGASX76X.dts │ │ │ ├── H201L.dts │ │ │ ├── P2601HNFX.dts │ │ │ ├── P2812HNUF1.dts │ │ │ ├── P2812HNUF3.dts │ │ │ ├── P2812HNUFX.dtsi │ │ │ ├── TDW8970.dts │ │ │ ├── TDW8980.dts │ │ │ ├── TDW89X0.dtsi │ │ │ ├── VG3503J.dts │ │ │ ├── VGV7510KW22.dtsi │ │ │ ├── VGV7510KW22BRN.dts │ │ │ ├── VGV7510KW22NOR.dts │ │ │ ├── VGV7519.dtsi │ │ │ ├── VGV7519BRN.dts │ │ │ ├── VGV7519NOR.dts │ │ │ ├── VR200v.dts │ │ │ ├── WBMR.dts │ │ │ ├── WBMR300.dts │ │ │ ├── amazonse.dtsi │ │ │ ├── ar9.dtsi │ │ │ ├── danube.dtsi │ │ │ ├── falcon-sflash-16M.dtsi │ │ │ ├── falcon.dtsi │ │ │ └── vr9.dtsi │ │ ├── falcon │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── files │ │ │ └── firmware │ │ │ │ └── lantiq │ │ │ │ ├── vr9_phy11g_a1x.bin │ │ │ │ ├── vr9_phy11g_a2x.bin │ │ │ │ ├── vr9_phy22f_a1x.bin │ │ │ │ └── vr9_phy22f_a2x.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── eva.dummy.squashfs │ │ │ ├── tp-link.mk │ │ │ ├── ubinize-overlay.cfg │ │ │ └── ubinize.cfg │ │ ├── modules.mk │ │ ├── patches-4.4 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0004-MIPS-lantiq-add-atm-hack.patch │ │ │ ├── 0008-MIPS-lantiq-backport-old-timer-code.patch │ │ │ ├── 0012-pinctrl-lantiq-fix-up-pinmux.patch │ │ │ ├── 0013-MTD-lantiq-xway-fix-invalid-operator.patch │ │ │ ├── 0014-MTD-lantiq-xway-the-latched-command-should-be-persis.patch │ │ │ ├── 0015-MTD-lantiq-xway-remove-endless-loop.patch │ │ │ ├── 0016-MTD-lantiq-xway-add-missing-write_buf-and-read_buf-t.patch │ │ │ ├── 0017-MTD-xway-fix-nand-locking.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 │ │ │ ├── 0024-NET-lantiq-adds-PHY11G-firmware-blobs.patch │ │ │ ├── 0025-NET-MIPS-lantiq-adds-xrx200-net.patch │ │ │ ├── 0026-NET-multi-phy-support.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 │ │ │ ├── 0040-USB-DWC2-enable-usb-power-gpio.patch │ │ │ ├── 0042-arch-mips-increase-io_space_limit.patch │ │ │ ├── 0044-pinctrl-lantiq-introduce-new-dedicated-devicetree-bi.patch │ │ │ ├── 0045-pinctrl-lantiq-Fix-GPIO-Setup-of-GPIO-Port3.patch │ │ │ ├── 0046-pinctrl-lantiq-2-pins-have-the-wrong-mux-list.patch │ │ │ ├── 0047-irq-fixes.patch │ │ │ ├── 0047-mtd-plat-nand-pass-of-node.patch │ │ │ ├── 0047-poweroff.patch │ │ │ ├── 0050-MIPS-Lantiq-Fix-cascaded-IRQ-setup.patch │ │ │ ├── 0060-usb-dwc2-Add-support-for-Lantiq-ARX-and-XRX-SoCs.patch │ │ │ ├── 0061-USB-DWC2-make-the-lantiq-settings-match-vendor-drive.patch │ │ │ ├── 0065-MIPS-lantiq-improve-USB-initialization.patch │ │ │ ├── 0100-spi-add-support-for-Lantiq-SPI-controller.patch │ │ │ ├── 0101-find_active_root.patch │ │ │ ├── 0120-MIPS-lantiq-add-support-for-device-tree-file-from-bo.patch │ │ │ ├── 0121-MIPS-lantiq-make-it-possible-to-build-in-no-device-t.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 │ │ │ ├── 0170-MIPS-lantiq-lock-DMA-register-accesses-for-SMP.patch │ │ │ ├── 0300-MTD-cfi-cmdset-0001-disable-buffered-writes.patch │ │ │ ├── 0301-xrx200-add-gphy-clk-src-device-tree-binding.patch │ │ │ ├── 0302-xrx200-add-sensors-driver.patch │ │ │ └── 122-MIPS-store-the-appended-dtb-address-in-a-variable.patch │ │ ├── patches-4.9 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0004-MIPS-lantiq-add-atm-hack.patch │ │ │ ├── 0008-MIPS-lantiq-backport-old-timer-code.patch │ │ │ ├── 0018-MTD-nand-lots-of-xrx200-fixes.patch │ │ │ ├── 0020-MTD-lantiq-handle-NO_XIP-on-cfi0001-flash.patch │ │ │ ├── 0022-MTD-m25p80-allow-loading-mtd-name-from-OF.patch │ │ │ ├── 0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch │ │ │ ├── 0024-NET-lantiq-adds-PHY11G-firmware-blobs.patch │ │ │ ├── 0025-NET-MIPS-lantiq-adds-xrx200-net.patch │ │ │ ├── 0026-NET-multi-phy-support.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 │ │ │ ├── 0040-USB-DWC2-enable-usb-power-gpio.patch │ │ │ ├── 0042-arch-mips-increase-io_space_limit.patch │ │ │ ├── 0044-pinctrl-xway-fix-copy-paste-error-in-xrx200_grps.patch │ │ │ ├── 0047-poweroff.patch │ │ │ ├── 0050-MIPS-Lantiq-Fix-cascaded-IRQ-setup.patch │ │ │ ├── 0061-USB-DWC2-make-the-lantiq-settings-match-vendor-drive.patch │ │ │ ├── 0065-MIPS-lantiq-improve-USB-initialization.patch │ │ │ ├── 0090-spi-lantiq-ssc-add-support-for-Lantiq-SSC-SPI-contro.patch │ │ │ ├── 0091-spi-lantiq-ssc-fix-platform_no_drv_owner.cocci-warni.patch │ │ │ ├── 0092-spi-lantiq-ssc-add-LTQ_-prefix-to-defines.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 │ │ │ ├── 0170-MIPS-lantiq-lock-DMA-register-accesses-for-SMP.patch │ │ │ ├── 0300-MTD-cfi-cmdset-0001-disable-buffered-writes.patch │ │ │ ├── 0301-xrx200-add-gphy-clk-src-device-tree-binding.patch │ │ │ └── 0302-xrx200-add-sensors-driver.patch │ │ ├── xrx200 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── xway │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── xway_legacy │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── layerscape │ │ ├── 32b │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── 64b │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── rc.local │ │ ├── config-4.4 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-4.4 │ │ │ ├── 0051-PCI-designware-Ensure-ATU-is-enabled-before-IO-conf-.patch │ │ │ ├── 0052-PCI-designware-Simplify-control-flow.patch │ │ │ ├── 0053-PCI-designware-Make-config-accessor-override-checkin.patch │ │ │ ├── 0054-PCI-designware-Explain-why-we-don-t-program-ATU-for-.patch │ │ │ ├── 0055-PCI-designware-Remove-PCI_PROBE_ONLY-handling.patch │ │ │ ├── 0056-PCI-designware-Add-generic-dw_pcie_wait_for_link.patch │ │ │ ├── 0057-PCI-designware-Add-default-link-up-check-if-sub-driv.patch │ │ │ ├── 0058-PCI-designware-Move-Root-Complex-setup-code-to-dw_pc.patch │ │ │ ├── 0059-PCI-designware-Remove-incorrect-RC-memory-base-limit.patch │ │ │ ├── 0140-config-add-freescale-config-for-amr64.patch │ │ │ ├── 0238-arm64-disable-CONFIG_EEPROM_AT24-for-freescale.confi.patch │ │ │ ├── 0239-ARM-dts-ls1021a-add-PCIe-dts-node.patch │ │ │ ├── 0240-ARM-dts-ls1021a-add-SCFG-MSI-dts-node.patch │ │ │ ├── 0241-dt-bindings-Add-bindings-for-Layerscape-SCFG-MSI.patch │ │ │ ├── 1074-mtd-nand-spi-nor-assign-MTD-of_node.patch │ │ │ ├── 1075-mtd-spi-nor-convert-to-spi_nor_-get-set-_flash_node.patch │ │ │ ├── 1076-mtd-spi-nor-drop-unnecessary-partition-parser-data.patch │ │ │ ├── 1077-mtd-add-get-set-of_node-flash_node-helpers.patch │ │ │ ├── 1078-mtd-spi-nor-drop-flash_node-field.patch │ │ │ ├── 1079-mtd-spi-nor-remove-unnecessary-leading-space-from-db.patch │ │ │ ├── 1080-mtd-fsl-quadspi-possible-NULL-dereference.patch │ │ │ ├── 1081-mtd-spi-nor-provide-default-erase_sector-implementat.patch │ │ │ ├── 1083-mtd-spi-nor-Fix-error-message-with-unrecognized-JEDE.patch │ │ │ ├── 1084-mtd-spi-nor-fix-error-handling-in-spi_nor_erase.patch │ │ │ ├── 1085-mtd-spi-nor-Check-the-return-value-from-read_sr.patch │ │ │ ├── 1086-mtd-spi-nor-wait-until-lock-unlock-operations-are-re.patch │ │ │ ├── 1087-mtd-spi-nor-fsl-quadspi-add-big-endian-support.patch │ │ │ ├── 1088-mtd-spi-nor-fsl-quadspi-add-support-for-ls1021a.patch │ │ │ ├── 1089-mtd-spi-nor-fsl-quadspi-add-support-for-layerscape.patch │ │ │ ├── 1090-mtd-spi-nor-Add-SPI-NOR-layer-PM-support.patch │ │ │ ├── 1091-mtd-spi-nor-change-return-value-of-read-write.patch │ │ │ ├── 1092-mtd-fsl-quadspi-return-amount-of-data-read-written-o.patch │ │ │ ├── 1093-mtd-spi-nor-check-return-value-from-read-write.patch │ │ │ ├── 1094-mtd-spi-nor-stop-passing-around-retlen.patch │ │ │ ├── 1095-mtd-spi-nor-simplify-write-loop.patch │ │ │ ├── 1096-mtd-spi-nor-add-read-loop.patch │ │ │ ├── 1097-mtd-fsl-quadspi-use-the-property-fields-of-SPI-NOR.patch │ │ │ ├── 1098-mtd-fsl-quadspi-Rename-SEQID_QUAD_READ-to-SEQID_READ.patch │ │ │ ├── 1099-mtd-spi-nor-fsl-quadspi-Add-fast-read-mode-support.patch │ │ │ ├── 1100-mtd-spi_nor-Disable-Micron-flash-HW-protection.patch │ │ │ ├── 1101-mtd-spi-nor-fsl-quadspi-extend-support-for-some-spec.patch │ │ │ ├── 1102-mtd-spi-nor-fsl-quadspi-Support-qspi-for-ls2080a.patch │ │ │ ├── 1103-mtd-spi-nor-Support-R-W-for-S25FS-S-family-flash.patch │ │ │ ├── 1104-mtd-fsl-quadspi-Add-quad-mode-for-flash-n25q128.patch │ │ │ ├── 1105-mtd-spi-nor-add-DDR-quad-read-support.patch │ │ │ ├── 1106-mtd-fsl-quadspi-add-DDR-quad-read-for-Spansion.patch │ │ │ ├── 1107-mtd-fsl-quadspi-disable-AHB-buffer-prefetch.patch │ │ │ ├── 1108-mtd-fsl-quadspi-add-multi-flash-chip-R-W-on-ls2080a.patch │ │ │ ├── 1109-drivers-mtd-spi-nor-Enable-QSPI-Flash-in-Kernel.patch │ │ │ ├── 1110-mtd-spi-nor-fsl-quad-add-flash-S25FS-extra-support.patch │ │ │ ├── 1111-mtd-spi-nor-disable-4kb-sector-erase-for-s25fl128.patch │ │ │ ├── 1112-driver-spi-fsl-quad-Hang-memcpy-Unhandled-fault-alig.patch │ │ │ ├── 1113-mtd-spi-nor-fsl-quad-move-mtd_device_register-to-the.patch │ │ │ ├── 1239-mtd-extend-physmap_of-to-let-the-device-tree-specify.patch │ │ │ ├── 2006-armv8-aarch32-Add-the-default-config-ls_aarch32_defc.patch │ │ │ ├── 2027-armv8-aarch32-update-defconfig-for-LayerScape-SoC.patch │ │ │ ├── 2119-armv8-aarch32-defconfig-Enable-CAAM-support.patch │ │ │ ├── 2120-armv8-aarch32-defconfig-Enable-firmware-loading.patch │ │ │ ├── 2121-armv8-aarch32-defconfig-Enable-support-for-AHCI-SATA.patch │ │ │ ├── 2122-armv8-aarch32-defconfig-Enable-USB-and-related-confi.patch │ │ │ ├── 2123-armv8-aarch32-defconfig-Enable-KVM-related-configura.patch │ │ │ ├── 2124-armv8-aarch32-defconfig-Enable-FTM-alarm-support.patch │ │ │ ├── 3001-arm64-ls1043a-add-DTS-for-Freescale-LS1043A-SoC.patch │ │ │ ├── 3002-dts-ls1043a-add-LS1043ARDB-board-support.patch │ │ │ ├── 3003-arm64-dts-Update-address-cells-and-reg-properties-of.patch │ │ │ ├── 3004-armv8-aarch32-Add-ITS-file-for-AArch32-Linux-on-LS10.patch │ │ │ ├── 3005-armv8-aarch32-change-FS-file-name-in-ITS.patch │ │ │ ├── 3007-armv8-aarch32-Run-32-bit-Linux-in-AArch32-execution-.patch │ │ │ ├── 3008-armv8-aarch32-Add-SMP-support-for-32-bit-Linux.patch │ │ │ ├── 3009-armv8-aarch32-Allow-RAM-to-be-mapped-for-LayerScape-.patch │ │ │ ├── 3010-arm-add-pgprot_cached-and-pgprot_cached_ns-support.patch │ │ │ ├── 3011-arm-add-new-non-shareable-ioremap.patch │ │ │ ├── 3012-dts-ls1043a-add-fman-bman-qman-ethernet-nodes.patch │ │ │ ├── 3013-dts-ls1043ardb-add-mdio-phy-nodes.patch │ │ │ ├── 3022-dt-move-guts-devicetree-doc-out-of-powerpc-directory.patch │ │ │ ├── 3023-powerpc-fsl-move-mpc85xx.h-to-include-linux-fsl.patch │ │ │ ├── 3025-arm64-dts-align-to-the-new-clocking-model.patch │ │ │ ├── 3028-dts-ls1043-update-dts-for-ls1043.patch │ │ │ ├── 3032-arm64-Add-pdev_archdata-for-dmamask.patch │ │ │ ├── 3033-arm64-add-ioremap-for-normal-cacheable-non-shareable.patch │ │ │ ├── 3034-arm64-add-support-to-remap-kernel-cacheable-memory-t.patch │ │ │ ├── 3035-arm64-pgtable-add-support-to-map-cacheable-and-non-s.patch │ │ │ ├── 3039-arch-arm-add-ARM-specific-fucntions-required-for-ehc.patch │ │ │ ├── 3063-arm64-add-NO_IRQ-macro.patch │ │ │ ├── 3071-arm64-dts-add-device-tree-for-ls1012a-SoC-and-boards.patch │ │ │ ├── 3117-armv8-aarch32-Run-32-bit-Linux-for-LayerScape-SoCs.patch │ │ │ ├── 3118-armv8-aarch32-Add-KVM-support-for-AArch32-on-ARMv8.patch │ │ │ ├── 3131-arm64-ls1046a-add-DTS-for-Freescale-LS1046A-SoC.patch │ │ │ ├── 3132-dts-ls1046a-add-LS1046ARDB-board-support.patch │ │ │ ├── 3133-ls1046ardb-add-ITS-file.patch │ │ │ ├── 3135-arm64-Add-DTS-support-for-FSL-s-LS1088ARDB.patch │ │ │ ├── 3139-ls1088ardb-add-ITS-file.patch │ │ │ ├── 3141-caam-add-caam-node-for-ls1088a.patch │ │ │ ├── 3143-armv8-aarch32-Execute-32-bit-Linux-for-ls1046a.patch │ │ │ ├── 3226-mtd-spi-nor-fsl-quadspi-Enable-fast-read-for-LS1088A.patch │ │ │ ├── 3227-ls2088a-dts-add-ls2088a-dts.patch │ │ │ ├── 3228-ls2088a-add-ls2088a-its.patch │ │ │ ├── 3229-arm-dts-ls1021a-fix-typo-of-MSI-compatible-string.patch │ │ │ ├── 3230-arm64-dts-ls1043a-fix-typo-of-MSI-compatible-string.patch │ │ │ ├── 3231-arm-dts-ls1021a-share-all-MSIs.patch │ │ │ ├── 3232-arm64-dts-ls1043a-share-all-MSIs.patch │ │ │ ├── 3233-arm64-dts-ls1046a-update-MSI-dts-node.patch │ │ │ ├── 3234-dts-ls1043a-change-GIC-register-for-rev1.1.patch │ │ │ ├── 4043-driver-memory-Removal-of-deprecated-NO_IRQ.patch │ │ │ ├── 4044-drivers-memory-Add-deep-sleep-support-for-IFC.patch │ │ │ ├── 4045-driver-memory-Update-dependency-of-IFC-for-Layerscap.patch │ │ │ ├── 4046-mtd-ifc-Segregate-IFC-fcm-and-runtime-registers.patch │ │ │ ├── 4047-drivers-memory-Fix-build-error-for-arm64.patch │ │ │ ├── 4234-fsl-ifc-fix-compilation-error-when-COMPAT-not-enable.patch │ │ │ ├── 7014-temp-QE-headers-are-needed-by-FMD.patch │ │ │ ├── 7015-fmd-add-fman-driver.patch │ │ │ ├── 7016-dpa-add-dpaa_eth-driver.patch │ │ │ ├── 7017-fsl_qbman-add-qbman-driver.patch │ │ │ ├── 7018-devres-add-devm_alloc_percpu.patch │ │ │ ├── 7019-net-readd-skb_recycle.patch │ │ │ ├── 7020-net-add-custom-NETIF-flags.patch │ │ │ ├── 7021-net-Make-the-netdev-watchdog-aware-of-hardware-multi.patch │ │ │ ├── 7024-Add-APIs-to-setup-HugeTLB-mappings-for-USDPAA.patch │ │ │ ├── 7029-fmd-SGMII-PCS-needs-to-be-reprogrammed-after-sleep.patch │ │ │ ├── 7030-fmd-use-kernel-api-for-64bit-division.patch │ │ │ ├── 7031-fsl_qbman-Enable-DPAA1-QBMan-for-ARM64-platforms.patch │ │ │ ├── 7064-dpaa_eth-repair-issue-introduced-with-2.5G-support.patch │ │ │ ├── 7065-dpaa_eth-replace-sgmii-2500-with-qsgmii.patch │ │ │ ├── 7066-fmd-add-2.5G-SGMII-mode-suport.patch │ │ │ ├── 7067-net-phy-add-SGMII-2500-PHY.patch │ │ │ ├── 7068-dpaa_ethernet-fix-link-state-detect-for-10G-interfac.patch │ │ │ ├── 7072-LS1012-Add-PPFE-driver-in-Linux.patch │ │ │ ├── 7126-net-phy-add-driver-for-aquantia-AQR106-107-phy.patch │ │ │ ├── 7144-dpaa-call-arch_setup_dma_ops-before-using-dma_ops.patch │ │ │ ├── 7145-staging-fsl-mc-Added-generic-MSI-support-for-FSL-MC-.patch │ │ │ ├── 7146-staging-fsl-mc-Added-GICv3-ITS-support-for-FSL-MC-MS.patch │ │ │ ├── 7147-staging-fsl-mc-Extended-MC-bus-allocator-to-include-.patch │ │ │ ├── 7148-staging-fsl-mc-Changed-DPRC-built-in-portal-s-mc_io-.patch │ │ │ ├── 7149-staging-fsl-mc-Populate-the-IRQ-pool-for-an-MC-bus-i.patch │ │ │ ├── 7150-staging-fsl-mc-set-MSI-domain-for-DPRC-objects.patch │ │ │ ├── 7151-staging-fsl-mc-Fixed-bug-in-dprc_probe-error-path.patch │ │ │ ├── 7152-staging-fsl-mc-Added-DPRC-interrupt-handler.patch │ │ │ ├── 7153-staging-fsl-mc-Added-MSI-support-to-the-MC-bus-drive.patch │ │ │ ├── 7154-staging-fsl-mc-Remove-unneeded-parentheses.patch │ │ │ ├── 7155-staging-fsl-mc-Do-not-allow-building-as-a-module.patch │ │ │ ├── 7156-staging-fsl-mc-Avoid-section-mismatch.patch │ │ │ ├── 7157-staging-fsl-mc-Remove-unneeded-else-following-a-retu.patch │ │ │ ├── 7158-staging-fsl-mc-Drop-unneeded-void-pointer-cast.patch │ │ │ ├── 7159-staging-fsl-mc-bus-Eliminate-double-function-call.patch │ │ │ ├── 7160-Staging-fsl-mc-Replace-pr_debug-with-dev_dbg.patch │ │ │ ├── 7161-Staging-fsl-mc-Replace-pr_err-with-dev_err.patch │ │ │ ├── 7162-staging-fsl-mc-fix-incorrect-type-passed-to-dev_dbg-.patch │ │ │ ├── 7163-staging-fsl-mc-fix-incorrect-type-passed-to-dev_err-.patch │ │ │ ├── 7164-staging-fsl-mc-get-rid-of-mutex_locked-variables.patch │ │ │ ├── 7165-staging-fsl-mc-TODO-updates.patch │ │ │ ├── 7166-staging-fsl-mc-DPAA2-overview-readme-update.patch │ │ │ ├── 7167-staging-fsl-mc-update-dpmcp-binary-interface-to-v3.0.patch │ │ │ ├── 7168-staging-fsl-mc-update-dpbp-binary-interface-to-v2.2.patch │ │ │ ├── 7169-staging-fsl-mc-update-dprc-binary-interface-to-v5.1.patch │ │ │ ├── 7170-staging-fsl-mc-don-t-use-object-versions-to-make-bin.patch │ │ │ ├── 7171-staging-fsl-mc-set-up-coherent-dma-ops-for-added-dev.patch │ │ │ ├── 7172-staging-fsl-mc-set-cacheable-flag-for-added-devices-.patch │ │ │ ├── 7173-staging-fsl-mc-get-version-of-root-dprc-from-MC-hard.patch │ │ │ ├── 7174-staging-fsl-mc-add-dprc-version-check.patch │ │ │ ├── 7175-staging-fsl-mc-add-quirk-handling-for-dpseci-objects.patch │ │ │ ├── 7176-staging-fsl-mc-add-dpmcp-version-check.patch │ │ │ ├── 7177-staging-fsl-mc-return-EINVAL-for-all-fsl_mc_portal_a.patch │ │ │ ├── 7178-staging-fsl-mc-bus-Drop-warning.patch │ │ │ ├── 7179-staging-fsl-mc-add-support-for-the-modalias-sysfs-at.patch │ │ │ ├── 7180-staging-fsl-mc-implement-uevent-callback-and-set-the.patch │ │ │ ├── 7181-staging-fsl-mc-clean-up-the-device-id-struct.patch │ │ │ ├── 7182-staging-fsl-mc-add-support-for-device-table-matching.patch │ │ │ ├── 7183-staging-fsl-mc-export-mc_get_version.patch │ │ │ ├── 7184-staging-fsl-mc-make-fsl_mc_is_root_dprc-global.patch │ │ │ ├── 7185-staging-fsl-mc-fix-asymmetry-in-destroy-of-mc_io.patch │ │ │ ├── 7186-staging-fsl-mc-dprc-add-missing-irq-free.patch │ │ │ ├── 7187-staging-fsl-mc-dprc-fix-ordering-problem-freeing-res.patch │ │ │ ├── 7188-staging-fsl-mc-properly-set-hwirq-in-msi-set_desc.patch │ │ │ ├── 7189-staging-fsl-mc-update-dpcon-binary-interface-to-v2.2.patch │ │ │ ├── 7190-staging-fsl-mc-root-dprc-rescan-attribute-to-sync-ke.patch │ │ │ ├── 7191-staging-fsl-mc-bus-rescan-attribute-to-sync-kernel-w.patch │ │ │ ├── 7192-staging-fsl-mc-Propagate-driver_override-for-a-child.patch │ │ │ ├── 7193-staging-fsl-mc-add-device-binding-path-driver_overri.patch │ │ │ ├── 7194-staging-fsl-mc-export-irq-cleanup-for-vfio-to-use.patch │ │ │ ├── 7195-increment-MC_CMD_COMPLETION_TIMEOUT_MS.patch │ │ │ ├── 7196-staging-fsl-mc-make-fsl_mc_get_root_dprc-public.patch │ │ │ ├── 7197-staging-fsl-mc-Management-Complex-restool-driver.patch │ │ │ ├── 7198-staging-fsl-mc-dpio-services-driver.patch │ │ │ ├── 7199-dpaa2-dpio-Cosmetic-cleanup.patch │ │ │ ├── 7200-staging-fsl-mc-dpio-driver-match-id-cleanup.patch │ │ │ ├── 7201-staging-dpaa2-eth-initial-commit-of-dpaa2-eth-driver.patch │ │ │ ├── 7202-staging-fsl-dpaa2-eth-code-cleanup-for-upstreaming.patch │ │ │ ├── 7203-fsl-dpaa2-eth-Update-description-of-DPNI-counters.patch │ │ │ ├── 7204-fsl-dpaa2-eth-dpni-Clear-compiler-warnings.patch │ │ │ ├── 7205-fsl-dpaa2-eth-sanitize-supported-private-flags.patch │ │ │ ├── 7206-fsl-dpaa2-eth-match-id-cleanup.patch │ │ │ ├── 7207-fsl-dpaa2-eth-add-device-table-to-driver.patch │ │ │ ├── 7208-staging-fsl-dpaa2-mac-Added-MAC-PHY-interface-driver.patch │ │ │ ├── 7209-staging-fsl-dpaa2-mac-Interrupt-code-cleanup.patch │ │ │ ├── 7210-staging-fsl-dpaa2-mac-Fix-unregister_netdev-issue.patch │ │ │ ├── 7211-staging-fsl-dpaa2-mac-Don-t-call-devm_free_irq.patch │ │ │ ├── 7212-staging-fsl-dpaa2-mac-Use-of_property_read_32.patch │ │ │ ├── 7213-staging-fsl-dpaa2-mac-Remove-version-checks.patch │ │ │ ├── 7214-staging-fsl-dpaa2-mac-match-id-cleanup.patch │ │ │ ├── 7215-dpaa2-evb-Added-Edge-Virtual-Bridge-driver.patch │ │ │ ├── 7216-dpaa2-evb-Fix-interrupt-handling.patch │ │ │ ├── 7217-dpaa2-evb-Add-object-version-check.patch │ │ │ ├── 7218-dpaa2-evb-Cosmetic-cleanup.patch │ │ │ ├── 7219-dpaa2-evb-match-id-cleanup.patch │ │ │ ├── 7220-dpaa2-ethsw-Ethernet-Switch-driver.patch │ │ │ ├── 7221-dpaa2-ethsw-match-id-cleanup.patch │ │ │ ├── 7222-dpaa2-ethsw-fix-compile-error-on-backport-to-4.4.patch │ │ │ ├── 7223-irqdomain-Added-domain-bus-token-DOMAIN_BUS_FSL_MC_M.patch │ │ │ ├── 7224-fsl-mc-msi-Added-FSL-MC-specific-member-to-the-msi_d.patch │ │ │ ├── 7225-dpaa2-evb-fix-4.4-backport-compile-error.patch │ │ │ ├── 7226-dpaa_eth-fix-adjust_link-for-10G-2.5G.patch │ │ │ ├── 8026-cpufreq-qoriq-Don-t-look-at-clock-implementation-det.patch │ │ │ ├── 8036-ls2085a-Add-support-for-reset.patch │ │ │ ├── 8037-ls1043a-Add-support-for-reset.patch │ │ │ ├── 8038-reset-driver-Kconfig-Change-define-to-ARCH_LAYERSCAP.patch │ │ │ ├── 8042-drivers-gpio-Port-gpio-driver-to-support-layerscape-.patch │ │ │ ├── 8048-mmc-sdhci-of-esdhc-add-remove-some-quirks-according-.patch │ │ │ ├── 8049-PCI-layerscape-Add-fsl-ls2085a-pcie-compatible-ID.patch │ │ │ ├── 8050-PCI-layerscape-Fix-MSG-TLP-drop-setting.patch │ │ │ ├── 8060-irqchip-Add-Layerscape-SCFG-MSI-controller-support.patch │ │ │ ├── 8061-arm64-layerscape-Enable-PCIe-for-Layerscape.patch │ │ │ ├── 8062-armv8-aarch32-enable-pci_domains-for-armv8-32bit.patch │ │ │ ├── 8073-ls1012a-added-clock-configuration.patch │ │ │ ├── 8114-drivers-PCIE-enable-for-Linux.patch │ │ │ ├── 8115-PCI-layerscape-call-dw_pcie_setup_rc-in-host-initial.patch │ │ │ ├── 8125-rtc-pcf2127-add-pcf2129-device-id.patch │ │ │ ├── 8127-ls1046a-msi-Add-LS1046A-MSI-support.patch │ │ │ ├── 8128-pci-layerscape-add-LS1046A-support.patch │ │ │ ├── 8129-clk-qoriq-add-ls1046a-support.patch │ │ │ ├── 8130-ls1046a-sata-Add-LS1046A-sata-support.patch │ │ │ ├── 8134-pci-layerscape-add-LUT-DBG-reigster-offset-member.patch │ │ │ ├── 8136-drivers-mmc-Add-compatible-string-for-LS1088A.patch │ │ │ ├── 8137-armv8-ls1088a-Add-PCIe-compatible.patch │ │ │ ├── 8138-pci-layerscape-add-MSI-interrupt-support.patch │ │ │ ├── 8142-drivers-mmc-Add-compatible-string-for-LS1046A.patch │ │ │ ├── 8229-drivers-clk-qoriq-Add-ls2088a-key-to-chipinfo-table.patch │ │ │ ├── 8230-layerscape-pci-fix-linkup-issue.patch │ │ │ ├── 8231-driver-clk-qoriq-Add-ls2088a-clk-support.patch │ │ │ ├── 8233-i2c-pca954x-Add-option-to-skip-disabling-PCA954x-Mux.patch │ │ │ ├── 8235-pci-layerscape-fix-pci-lut-offset-issue.patch │ │ │ ├── 8236-clk-add-API-of-clks.patch │ │ │ ├── 8237-pcie-ls208x-use-unified-compatible-fsl-ls2080a-pcie-.patch │ │ │ ├── 8238-irqchip-ls-scfg-msi-fix-typo-of-MSI-compatible-strin.patch │ │ │ ├── 8239-irqchip-ls-scfg-msi-add-LS1046a-MSI-support.patch │ │ │ ├── 8240-irqchip-ls-scfg-msi-add-LS1043a-v1.1-MSI-support.patch │ │ │ ├── 8241-irqchip-ls-scfg-msi-add-MSI-affinity-support.patch │ │ │ ├── 9069-Revert-arm64-simplify-dma_get_ops.patch │ │ │ └── 9070-Revert-arm64-use-fixmap-region-for-permanent-FDT-map.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.4 │ │ ├── image │ │ │ └── Makefile │ │ ├── le │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── le64 │ │ │ ├── config-default │ │ │ └── target.mk │ ├── mcs814x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mcs814x.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_do_mcs814x.sh │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ ├── boot │ │ │ │ │ └── dts │ │ │ │ │ │ ├── dlan-usb-extender.dts │ │ │ │ │ │ ├── mcs8140.dtsi │ │ │ │ │ │ └── rbt-832.dts │ │ │ │ │ └── mach-mcs814x │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.boot │ │ │ │ │ ├── board-mcs8140-dt.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── debug-macro.S │ │ │ │ │ │ ├── entry-macro.S │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irqs.h │ │ │ │ │ │ ├── mcs814x.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ └── uncompress.h │ │ │ │ │ ├── irq.c │ │ │ │ │ └── timer.c │ │ │ └── drivers │ │ │ │ ├── char │ │ │ │ └── hw_random │ │ │ │ │ └── mcs814x-rng.c │ │ │ │ ├── gpio │ │ │ │ └── gpio-mcs814x.c │ │ │ │ ├── net │ │ │ │ ├── ethernet │ │ │ │ │ └── mcs8140 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nuport_mac.c │ │ │ │ └── phy │ │ │ │ │ └── mcs814x.c │ │ │ │ ├── usb │ │ │ │ └── host │ │ │ │ │ ├── ehci-mcs814x.c │ │ │ │ │ └── ohci-mcs814x.c │ │ │ │ └── watchdog │ │ │ │ └── mcs814x_wdt.c │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-platform.patch │ │ │ ├── 003-ethernet.patch │ │ │ ├── 004-usb.patch │ │ │ ├── 005-mcs814x_rng.patch │ │ │ ├── 006-mcs814x_wdt.patch │ │ │ ├── 008-mcs814x_gpio.patch │ │ │ ├── 011-mcs814x_internal_phy.patch │ │ │ ├── 012-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 013-ohci_workarounds.patch │ │ │ └── 014-debuguart.patch │ │ └── profiles │ │ │ ├── 000-Generic.mk │ │ │ └── 100-dLAN-USB-Extender.mk │ ├── mediatek │ │ ├── 32 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_set_preinit_iface │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── _mt7623.dtsi │ │ │ │ ├── mt7623-NAND-ePHY.dts │ │ │ │ ├── mt7623-NAND.dts │ │ │ │ ├── mt7623-eMMC.dts │ │ │ │ └── mt7623-evb.dts │ │ ├── image │ │ │ ├── 32.mk │ │ │ └── Makefile │ │ └── patches-4.9 │ │ │ ├── 0000-pinctrl-esw.patch │ │ │ ├── 0001-NET-multi-phy-support.patch │ │ │ ├── 00013-soc-mediatek-Add-MT2701-power-dt-bindings.patch │ │ │ ├── 0009-clk-mediatek-Add-MT2701-clock-support.patch │ │ │ ├── 0011-reset-mediatek-mt2701-reset-driver.patch │ │ │ ├── 0012-ARM-mediatek-Add-MT2701-config-options-for-mediatek-.patch │ │ │ ├── 0014-soc-mediatek-Refine-scpsys-to-support-multiple-platf.patch │ │ │ ├── 0015-soc-mediatek-Add-MT2701-scpsys-driver.patch │ │ │ ├── 0017-clk-add-hifsys-reset.patch │ │ │ ├── 0024-dt-bindings-add-MediaTek-PCIe-binding-documentation.patch │ │ │ ├── 0025-PCI-mediatek-add-support-for-PCIe-found-on-MT7623-MT.patch │ │ │ ├── 0026-scpsys-various-fixes.patch │ │ │ ├── 0052-clk-dont-disable-unused-clocks.patch │ │ │ ├── 0053-clk-mediatek-enable-critical-clocks.patch │ │ │ ├── 0054-clk-mediatek-Export-CPU-mux-clocks-for-CPU-frequency.patch │ │ │ ├── 0055-cpufreq-mediatek-add-driver.patch │ │ │ ├── 0071-pwm-add-pwm-mediatek.patch │ │ │ ├── 0083-mfd-led3.patch │ │ │ ├── 0085-pmic-led0.patch │ │ │ ├── 0086-pmic-led1.patch │ │ │ ├── 0087-pmic-led2.patch │ │ │ ├── 0088-pmic-led3.patch │ │ │ ├── 0091-dsa1.patch │ │ │ ├── 0091-net-next-mediatek-fix-DQL-support.patch │ │ │ ├── 0092-dsa2.patch │ │ │ ├── 0092-dsa3.patch │ │ │ ├── 0092-dsa4.patch │ │ │ ├── 0092-dsa5.patch │ │ │ ├── 0093-dsa-compat.patch │ │ │ ├── 0094-net-affinity.patch │ │ │ ├── 0095-ephy.patch │ │ │ ├── 0096-dsa-multi-cpu.patch │ │ │ ├── 0097-dsa-mt7530.patch │ │ │ ├── 0103-nand_fixes.patch │ │ │ ├── 0200-devicetree.patch │ │ │ └── 0201-block2mtd.patch │ ├── mpc85xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ └── lib │ │ │ │ ├── mpc85xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_mpc85xx.sh │ │ │ │ └── 05_set_preinit_iface_mpc85xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── files │ │ │ └── arch │ │ │ │ └── powerpc │ │ │ │ ├── boot │ │ │ │ ├── cuboot-tl-wdr4900-v1.c │ │ │ │ └── dts │ │ │ │ │ └── tl-wdr4900-v1.dts │ │ │ │ └── platforms │ │ │ │ └── 85xx │ │ │ │ └── tl_wdr4900_v1.c │ │ ├── generic │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── p1020 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── patches-4.9 │ │ │ ├── 001-powerpc-85xx-add-gpio-keys-to-of-match-table.patch │ │ │ └── 100-powerpc-85xx-tl-wdr4900-v1-support.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── tp-link.mk │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── init.d │ │ │ │ │ └── linksys_recovery │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_wireless │ │ │ │ │ └── 04_mambafan │ │ │ ├── lib │ │ │ │ ├── mvebu.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 01_sysinfo │ │ │ │ │ ├── 06_set_iface_mac │ │ │ │ │ ├── 79_move_config │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ └── upgrade │ │ │ │ │ ├── clearfog.sh │ │ │ │ │ ├── linksys.sh │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── fan_ctrl.sh │ │ ├── config-4.4 │ │ ├── config-4.9 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── armada-385-linksys-rango.dts │ │ │ │ └── armada-385-linksys-shelby.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── cfbase-boot.script │ │ │ ├── cfpro-boot.script │ │ │ └── gen_mvebu_sdcard_img.sh │ │ ├── patches-4.4 │ │ │ ├── 002-add_powertables.patch │ │ │ ├── 003-add_switch_nodes.patch │ │ │ ├── 010-build_new_dtbs.patch │ │ │ ├── 020-mtd-nand-pxa3xx_nand-add-support-for-partial-chunks.patch │ │ │ ├── 021-mtd-pxa3xx_nand-Increase-the-initial-chunk-size.patch │ │ │ ├── 022-mtd-pxa3xx_nand-Fix-initial-controller-configuration.patch │ │ │ ├── 023-bus-mvebu-mbus-provide-api-for-obtaining-IO-and-DRAM.patch │ │ │ ├── 030-mvneta-consolidate-autoneg-enabling.patch │ │ │ ├── 031-mvneta-implement-ethtool-autonegotiation-control.patch │ │ │ ├── 032-net-mvneta-Make-the-default-queue-related-for-each-p.patch │ │ │ ├── 033-net-mvneta-Associate-RX-queues-with-each-CPU.patch │ │ │ ├── 034-net-mvneta-Add-naive-RSS-support.patch │ │ │ ├── 035-net-mvneta-Configure-XPS-support.patch │ │ │ ├── 036-net-mvneta-fix-trivial-cut-off-issue-in-mvneta_ethto.patch │ │ │ ├── 038-net-mvneta-Fix-the-CPU-choice-in-mvneta_percpu_elect.patch │ │ │ ├── 039-net-mvneta-Use-on_each_cpu-when-possible.patch │ │ │ ├── 040-net-mvneta-Modify-the-queue-related-fields-from-each.patch │ │ │ ├── 041-net-mvneta-The-mvneta_percpu_elect-function-should-b.patch │ │ │ ├── 042-net-mvneta-Fix-race-condition-during-stopping.patch │ │ │ ├── 043-net-mvneta-sort-the-headers-in-alphabetic-order.patch │ │ │ ├── 044-net-add-a-hardware-buffer-management-helper-API.patch │ │ │ ├── 045-net-mvneta-bm-add-support-for-hardware-buffer-manage.patch │ │ │ ├── 046-net-mvneta-Use-the-new-hwbm-framework.patch │ │ │ ├── 047-net-mvneta-Fix-spinlock-usage.patch │ │ │ ├── 048-net-mvneta-fix-error-messages-in-mvneta_port_down-fu.patch │ │ │ ├── 049-net-mvneta-replace-MVNETA_CPU_D_CACHE_LINE_SIZE-with.patch │ │ │ ├── 050-net-mvneta-fix-changing-MTU-when-using-per-cpu-proce.patch │ │ │ ├── 051-ARM-dts-armada-38x-add-buffer-manager-nodes.patch │ │ │ ├── 052-ARM-dts-armada-xp-add-buffer-manager-nodes.patch │ │ │ ├── 053-ARM-dts-Add-SolidRun-Armada-388-Clearfog-A1-DT-file.patch │ │ │ ├── 054-ARM-dts-armada-38x-enable-buffer-manager-support-on-.patch │ │ │ ├── 055-ARM-dts-armada-388-clearfog-remove-duplicate-mdio-en.patch │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 102-revert_i2c_delay.patch │ │ │ ├── 103-remove-nand-driver-bug.patch │ │ │ ├── 104-linksys_mamba_disable_keep_config.patch │ │ │ ├── 106-enable-bm-on-linksys-devices.patch │ │ │ ├── 110-pxa3xxx_revert_irq_thread.patch │ │ │ ├── 120-phy-move-fixed_phy-MII-register-generation-to-a-libr.patch │ │ │ ├── 121-phy-convert-swphy-register-generation-to-tabular-for.patch │ │ │ ├── 122-phy-separate-swphy-state-validation-from-register-ge.patch │ │ │ ├── 123-phy-generate-swphy-registers-on-the-fly.patch │ │ │ ├── 124-phy-improve-safety-of-fixed-phy-MII-register-reading.patch │ │ │ ├── 125-phy-provide-a-hook-for-link-up-link-down-events.patch │ │ │ ├── 126-phy-marvell-88E1512-add-flow-control-support.patch │ │ │ ├── 127-phy-export-phy_start_machine-for-phylink.patch │ │ │ ├── 128-phy-export-phy_speed_to_str-for-phylink.patch │ │ │ ├── 129-phy-add-I2C-mdio-bus.patch │ │ │ ├── 130-phylink-add-phylink-infrastructure.patch │ │ │ ├── 131-phylink-add-hooks-for-SFP-support.patch │ │ │ ├── 132-sfp-add-phylink-based-SFP-module-support.patch │ │ │ ├── 133-sfp-display-SFP-module-information.patch │ │ │ ├── 134-net-mvneta-convert-to-phylink.patch │ │ │ ├── 135-phy-fixed-phy-remove-fixed_phy_update_state.patch │ │ │ ├── 136-phylink-add-ethtool-nway_reset-support.patch │ │ │ ├── 137-net-mvneta-add-nway_reset-support.patch │ │ │ ├── 138-phylink-add-flow-control-support.patch │ │ │ ├── 139-net-mvneta-add-flow-control-support-via-phylink.patch │ │ │ ├── 140-net-mvneta-enable-flow-control-for-PHY-connections.patch │ │ │ ├── 141-net-mvneta-enable-flow-control-for-fixed-connections.patch │ │ │ ├── 142-phylink-add-EEE-support.patch │ │ │ ├── 143-net-mvneta-add-EEE-support.patch │ │ │ ├── 144-phylink-add-module-EEPROM-support.patch │ │ │ ├── 145-net-mvneta-add-module-EEPROM-reading-support.patch │ │ │ ├── 146-sfp-phylink-hook-up-eeprom-functions.patch │ │ │ ├── 147-net-mvneta-add-BQL-support.patch │ │ │ ├── 202-gpio_mvebu_add_limited_pwm_support.patch │ │ │ ├── 203-dt_bindings_extend_mvebu_gpio_documentation_with_pwm.patch │ │ │ ├── 204-mvebu_xp_add_pwm_properties_to_dtsi_files.patch │ │ │ ├── 205-arm_mvebu_enable_pwm_in_defconfig.patch │ │ │ ├── 206-mvebu_wrt1900ac_use_pwm-fan_rather_than_gpio-fan.patch │ │ │ ├── 207-armada-385-rd-mtd-partitions.patch │ │ │ ├── 208-ARM-mvebu-385-ap-Add-partitions.patch │ │ │ ├── 209-clearfog_switch_node.patch │ │ │ ├── 210-ARM-dts-armada388-clearfog-add-SFP-module-support.patch │ │ │ ├── 300-reprobe_sfp_phy.patch │ │ │ └── 400-mvneta-tx-queue-workaround.patch │ │ ├── patches-4.9 │ │ │ ├── 002-add_powertables.patch │ │ │ ├── 003-add_switch_nodes.patch │ │ │ ├── 004-add_sata_disk_activity_trigger.patch │ │ │ ├── 010-build_new_dtbs.patch │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 102-revert_i2c_delay.patch │ │ │ ├── 103-remove-nand-driver-bug.patch │ │ │ ├── 104-linksys_mamba_disable_keep_config.patch │ │ │ ├── 106-enable-bm-on-linksys-devices.patch │ │ │ ├── 110-pxa3xxx_revert_irq_thread.patch │ │ │ ├── 120-net-mvneta-add-BQL-support.patch │ │ │ ├── 200-gpio_mvebu_add_limited_pwm_support.patch │ │ │ ├── 201-dt_bindings_extend_mvebu_gpio_documentation_with_pwm.patch │ │ │ ├── 202-mvebu_xp_add_pwm_properties_to_dtsi_files.patch │ │ │ ├── 203-arm_mvebu_enable_pwm_in_defconfig.patch │ │ │ ├── 204-mvebu_wrt1900ac_use_pwm-fan_rather_than_gpio-fan.patch │ │ │ ├── 205-armada-385-rd-mtd-partitions.patch │ │ │ ├── 206-ARM-mvebu-385-ap-Add-partitions.patch │ │ │ ├── 210-clearfog_switch_node.patch │ │ │ ├── 220-ARM-dts-armada388-clearfog-add-SFP-module-support.patch │ │ │ ├── 300-mvneta-tx-queue-workaround.patch │ │ │ ├── 400-phy-provide-a-hook-for-link-up-link-down-events.patch │ │ │ ├── 401-net-phy-move-phy-MMD-accessors-to-phy-core.c.patch │ │ │ ├── 402-net-phy-make-phy_-read-write-_mmd-generic-MMD-access.patch │ │ │ ├── 403-net-phy-avoid-setting-unsupported-EEE-advertisments.patch │ │ │ ├── 404-net-phy-restart-phy-autonegotiation-after-EEE-advert.patch │ │ │ ├── 405-net-phy-allow-EEE-with-SGMII-interface-modes.patch │ │ │ ├── 406-net-phy-improve-phylib-correctness-for-non-autoneg-s.patch │ │ │ ├── 407-net-phy-add-802.3-clause-45-support-to-phylib.patch │ │ │ ├── 408-net-phy-hook-up-clause-45-autonegotiation-restart.patch │ │ │ ├── 409-net-phy-don-t-double-read-clause-45-status-register.patch │ │ │ ├── 410-net-phy-allow-settings-table-to-support-more-than-32.patch │ │ │ ├── 411-net-phy-split-out-PHY-speed-and-duplex-string-genera.patch │ │ │ ├── 412-net-phy-move-phy_lookup_setting-and-guts-of-phy_supp.patch │ │ │ ├── 413-phy-export-phy_start_machine-for-phylink.patch │ │ │ ├── 414-phy-add-I2C-mdio-bus.patch │ │ │ ├── 415-phylink-add-phylink-infrastructure.patch │ │ │ ├── 416-phylink-add-hooks-for-SFP-support.patch │ │ │ ├── 417-sfp-add-phylink-based-SFP-module-support.patch │ │ │ ├── 418-sfp-display-SFP-module-information.patch │ │ │ ├── 419-net-mvneta-convert-to-phylink.patch │ │ │ ├── 420-net-mvneta-disable-MVNETA_CAUSE_PSC_SYNC_CHANGE-inte.patch │ │ │ ├── 421-phylink-add-ethtool-nway_reset-support.patch │ │ │ ├── 422-net-mvneta-add-nway_reset-support.patch │ │ │ ├── 423-phylink-add-flow-control-support.patch │ │ │ ├── 424-net-mvneta-add-flow-control-support-via-phylink.patch │ │ │ ├── 425-net-mvneta-enable-flow-control-for-PHY-connections.patch │ │ │ ├── 426-net-mvneta-enable-flow-control-for-fixed-connections.patch │ │ │ ├── 427-phylink-add-EEE-support.patch │ │ │ ├── 428-net-mvneta-add-EEE-support.patch │ │ │ ├── 429-phylink-add-module-EEPROM-support.patch │ │ │ ├── 430-net-mvneta-add-module-EEPROM-reading-support.patch │ │ │ ├── 431-sfp-phylink-hook-up-eeprom-functions.patch │ │ │ ├── 432-phy-marvell-88E1512-add-flow-control-support.patch │ │ │ ├── 433-phy-marvell-88E1111-add-flow-control-support.patch │ │ │ ├── 434-phy-marvell-88E1540-add-flow-control-support.patch │ │ │ ├── 436-phylink-propagate-PHY-interface-mode-to-MAC-driver.patch │ │ │ ├── 437-phylink-ensure-link-drops-are-reported.patch │ │ │ ├── 450-reprobe_sfp_phy.patch │ │ │ ├── 470-ClearFog-renamed-upstream.patch │ │ │ ├── 471-add-ClearFog-Base-device-tree-files.patch │ │ │ ├── 472-armada-solidrun-microsom-backport-improvements.patch │ │ │ └── 473-fix-marvell-phy-initialization-issues.patch │ │ └── profiles │ │ │ └── 000-Default.mk │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── mxs.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_do_mxs.sh │ │ ├── config-4.9 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── imx28-duckbill.dts │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_sdcard_ext4_ext4.sh │ │ │ └── gen_sdcard_vfat_ext4.sh │ │ ├── patches-4.9 │ │ │ └── 110-crypto-mxsdcp-provide-importexport.patch │ │ └── profiles │ │ │ ├── 01-duckbill.mk │ │ │ ├── 02-olinuxino-maxi.mk │ │ │ └── 03-olinuxino-micro.mk │ ├── octeon │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 01_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.9 │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ ├── 150-mmc-octeon-add-host-driver-for-octeon-mmc-controller.patch │ │ │ ├── 160-cmdline-hack.patch │ │ │ └── 170-cisco-hack.patch │ │ └── profiles │ │ │ └── 000-Generic.mk │ ├── omap │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-4.4 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_omap_sdcard_img.sh │ │ │ └── ubinize.cfg │ │ ├── patches-4.4 │ │ │ └── 001-omap4_pandaboard-wlan_fix.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── omap24xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ ├── fstab │ │ │ │ │ ├── network │ │ │ │ │ └── wireless │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 10-bme-pmm-image │ │ │ │ │ │ └── 20-p54spi-eeprom │ │ │ │ ├── init.d │ │ │ │ │ └── watchdog │ │ │ │ ├── inittab │ │ │ │ └── pointercal │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── bc4fw.bin │ │ ├── config-4.1 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── profiles │ │ │ ├── 100-n810.mk │ │ │ └── 110-n810-gui.mk │ ├── orion │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── hotplug.d │ │ │ │ │ └── usb │ │ │ │ │ └── 10-usb │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 01_sysinfo │ │ ├── config-4.4 │ │ ├── generic │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 09_hardware │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── target.mk │ │ ├── harddisk │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── generic.mk │ │ │ └── harddisk.mk │ │ └── patches-4.4 │ │ │ ├── 000-arm_openwrt_machtypes.patch │ │ │ ├── 100-wrt350nv2_openwrt_partition_map.patch │ │ │ ├── 101-wnr854t_partition_map.patch │ │ │ ├── 200-dt2_board_support.patch │ │ │ └── 210-wn802t_support.patch │ ├── oxnas │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── diag.sh │ │ │ ├── init.d │ │ │ │ └── set-irq-affinity │ │ │ └── lib │ │ │ │ ├── oxnas.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_preinit_do_oxnas.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ ├── boot │ │ │ │ │ └── dts │ │ │ │ │ │ ├── ox820-akitio.dts │ │ │ │ │ │ ├── ox820-kd20.dts │ │ │ │ │ │ ├── ox820-pogoplug-pro.dts │ │ │ │ │ │ ├── ox820-pogoplug-v3.dts │ │ │ │ │ │ ├── ox820-stg212.dts │ │ │ │ │ │ └── ox820.dtsi │ │ │ │ │ ├── configs │ │ │ │ │ └── ox820_defconfig │ │ │ │ │ └── mach-oxnas │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.boot │ │ │ │ │ ├── fiq.S │ │ │ │ │ ├── headsmp.S │ │ │ │ │ ├── hotplug.c │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ ├── irqs.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── uncompress.h │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── mach-ox820.c │ │ │ │ │ └── platsmp.c │ │ │ └── drivers │ │ │ │ ├── ata │ │ │ │ └── sata_oxnas.c │ │ │ │ ├── clk │ │ │ │ └── clk-oxnas.c │ │ │ │ ├── clocksource │ │ │ │ └── oxnas_rps_timer.c │ │ │ │ ├── irqchip │ │ │ │ └── irq-rps.c │ │ │ │ ├── mtd │ │ │ │ └── nand │ │ │ │ │ └── oxnas_nand.c │ │ │ │ ├── net │ │ │ │ └── ethernet │ │ │ │ │ └── stmicro │ │ │ │ │ └── stmmac │ │ │ │ │ └── dwmac-oxnas.c │ │ │ │ ├── pci │ │ │ │ └── host │ │ │ │ │ └── pcie-oxnas.c │ │ │ │ ├── pinctrl │ │ │ │ └── pinctrl-oxnas.c │ │ │ │ ├── reset │ │ │ │ └── reset-ox820.c │ │ │ │ └── usb │ │ │ │ └── host │ │ │ │ └── ehci-oxnas.c │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-4.4 │ │ │ ├── 0072-mtd-backport-v4.7-0day-patches-from-Boris.patch │ │ │ ├── 0073-of-mtd-prepare-helper-reading-NAND-ECC-algo-from-DT.patch │ │ │ ├── 0074-mtd-nand-import-nand_hw_control_init.patch │ │ │ ├── 010-arm_introduce-dma-fiq-irq-broadcast.patch │ │ │ ├── 250-add-plxtech-vendor-prefix.patch │ │ │ ├── 300-introduce-oxnas-platform.patch │ │ │ ├── 310-oxnas-clocksource.patch │ │ │ ├── 320-oxnas-irqchip.patch │ │ │ ├── 330-oxnas-pinctrl.patch │ │ │ ├── 340-oxnas-pcie.patch │ │ │ ├── 350-oxnas-reset.patch │ │ │ ├── 400-oxnas-nand.patch │ │ │ ├── 500-oxnas-sata.patch │ │ │ ├── 700-oxnas-dwmac.patch │ │ │ ├── 800-oxnas-ehci.patch │ │ │ ├── 900-more-boards.patch │ │ │ ├── 996-ATAG_DTB_COMPAT_CMDLINE_MANGLE.patch │ │ │ └── 999-libata-hacks.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── pistachio │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.9 │ │ │ ├── 001-MIPS-DTS-Add-base-device-tree-for-Pistachio-SoC.patch │ │ │ ├── 002-MIPS-DTS-img-add-device-tree-for-Marduk-board.patch │ │ │ ├── 003-MIPS-DTS-add-img-directory-to-Makefile.patch │ │ │ ├── 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 │ │ │ ├── 701-net-micrel-Disable-PME.patch │ │ │ ├── 901-MIPS-DTS-img-marduk-add-nor-partition-name.patch │ │ │ └── 902-MIPS-DTS-img-marduk-add-nand-device-support.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── ppc40x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.18 │ │ │ ├── 003-powerpc-add-EBC_BXCR-defines.patch │ │ │ ├── 004-magicbox.patch │ │ │ ├── 005-openrb.patch │ │ │ ├── 101-pata-magicbox-cf-driver.patch │ │ │ ├── 110-kilauea_openwrt_flashmap.patch │ │ │ ├── 120-usb-isp116x-hcd-add-of-binding.patch │ │ │ └── 121-usb-isp116x-hcd-ppc405-register-access.patch │ ├── ppc44x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.18 │ │ │ ├── 001-crypto-amcc-remove-incorrect-__init-__exit-markups.patch │ │ │ ├── 100-openwrt_flashmap.patch │ │ │ ├── 110-openwrt_dts_cmdline.patch │ │ │ └── 900-bootwrapper-parallel-make-fix.patch │ ├── ramips │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ └── usb │ │ │ │ │ │ └── 10-motion │ │ │ │ ├── init.d │ │ │ │ │ └── bootcount │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix-seama-header │ │ │ ├── lib │ │ │ │ ├── preinit │ │ │ │ │ ├── 01_preinit_do_ramips.sh │ │ │ │ │ ├── 04_handle_checksumming │ │ │ │ │ └── 07_set_preinit_iface_ramips │ │ │ │ ├── ramips.sh │ │ │ │ └── upgrade │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── ubnt.sh │ │ │ └── sbin │ │ │ │ └── fixup-mac-address │ │ ├── dts │ │ │ ├── 11ACNAS.dts │ │ │ ├── 3G-6200N.dts │ │ │ ├── 3G-6200NL.dts │ │ │ ├── 3G150B.dts │ │ │ ├── 3G300M.dts │ │ │ ├── A5-V11.dts │ │ │ ├── AI-BR100.dts │ │ │ ├── AIR3GII.dts │ │ │ ├── ALL0239-3G.dts │ │ │ ├── ALL0256N-4M.dts │ │ │ ├── ALL0256N-8M.dts │ │ │ ├── ALL0256N.dtsi │ │ │ ├── ALL5002.dts │ │ │ ├── ALL5003.dts │ │ │ ├── AR670W.dts │ │ │ ├── AR725W.dts │ │ │ ├── ASL26555-16M.dts │ │ │ ├── ASL26555-8M.dts │ │ │ ├── ASL26555.dtsi │ │ │ ├── ATP-52B.dts │ │ │ ├── AWAPN2403.dts │ │ │ ├── AWM002-EVB-4M.dts │ │ │ ├── AWM002-EVB-8M.dts │ │ │ ├── AWM002-EVB.dtsi │ │ │ ├── ArcherC20i.dts │ │ │ ├── ArcherC50.dts │ │ │ ├── ArcherMR200.dts │ │ │ ├── BC2.dts │ │ │ ├── BR-6475ND.dts │ │ │ ├── BROADWAY.dts │ │ │ ├── CARAMBOLA.dts │ │ │ ├── CF-WR800N.dts │ │ │ ├── CS-QR10.dts │ │ │ ├── CY-SWR1100.dts │ │ │ ├── D105.dts │ │ │ ├── D240.dts │ │ │ ├── DAP-1350.dts │ │ │ ├── DB-WRT01.dts │ │ │ ├── DCH-M225.dts │ │ │ ├── DCS-930.dts │ │ │ ├── DCS-930L-B1.dts │ │ │ ├── DIR-300-B1.dts │ │ │ ├── DIR-300-B7.dts │ │ │ ├── DIR-320-B1.dts │ │ │ ├── DIR-600-B1.dts │ │ │ ├── DIR-610-A1.dts │ │ │ ├── DIR-615-D.dts │ │ │ ├── DIR-615-H1.dts │ │ │ ├── DIR-620-A1.dts │ │ │ ├── DIR-620-D1.dts │ │ │ ├── DIR-645.dts │ │ │ ├── DIR-810L.dts │ │ │ ├── DIR-860L-B1.dts │ │ │ ├── DUZUN-DM06.dts │ │ │ ├── DWR-512-B.dts │ │ │ ├── E1700.dts │ │ │ ├── ESR-9753.dts │ │ │ ├── EW1200.dts │ │ │ ├── EX2700.dts │ │ │ ├── EX3700.dts │ │ │ ├── F5D8235_V1.dts │ │ │ ├── F5D8235_V2.dts │ │ │ ├── F7C027.dts │ │ │ ├── FIREWRT.dts │ │ │ ├── FONERA20N.dts │ │ │ ├── FREESTATION5.dts │ │ │ ├── GB-PC1.dts │ │ │ ├── GL-MT300A.dts │ │ │ ├── GL-MT300N-V2.dts │ │ │ ├── GL-MT300N.dts │ │ │ ├── GL-MT750.dts │ │ │ ├── HC5661.dts │ │ │ ├── HC5661A.dts │ │ │ ├── HC5761.dts │ │ │ ├── HC5861.dts │ │ │ ├── HC5962.dts │ │ │ ├── HC5X61.dtsi │ │ │ ├── HG255D.dts │ │ │ ├── HLKRM04.dts │ │ │ ├── HPM.dts │ │ │ ├── HT-TM02.dts │ │ │ ├── HW550-3G.dts │ │ │ ├── IP2202.dts │ │ │ ├── JHR-N805R.dts │ │ │ ├── JHR-N825R.dts │ │ │ ├── JHR-N926R.dts │ │ │ ├── K2P.dts │ │ │ ├── LINKIT7688.dts │ │ │ ├── M2M.dts │ │ │ ├── M3.dts │ │ │ ├── M4-4M.dts │ │ │ ├── M4-8M.dts │ │ │ ├── M4.dtsi │ │ │ ├── MAC1200RV2.dts │ │ │ ├── MINIEMBPLUG.dts │ │ │ ├── MINIEMBWIFI.dts │ │ │ ├── MIWIFI-MINI.dts │ │ │ ├── MIWIFI-NANO.dts │ │ │ ├── MLW221.dts │ │ │ ├── MLWG2.dts │ │ │ ├── MOFI3500-3GN.dts │ │ │ ├── MPRA1.dts │ │ │ ├── MPRA2.dts │ │ │ ├── MR-102N.dts │ │ │ ├── MT7620a.dts │ │ │ ├── MT7620a_MT7530.dts │ │ │ ├── MT7620a_MT7610e.dts │ │ │ ├── MT7620a_V22SG.dts │ │ │ ├── MT7621.dts │ │ │ ├── MT7628.dts │ │ │ ├── MZK-750DHP.dts │ │ │ ├── MZK-DP150N.dts │ │ │ ├── MZK-EX300NP.dts │ │ │ ├── MZK-EX750NP.dts │ │ │ ├── MZK-W300NH2.dts │ │ │ ├── MZK-WDPR.dts │ │ │ ├── MicroWRT.dts │ │ │ ├── NA930.dts │ │ │ ├── NBG-419N.dts │ │ │ ├── NBG-419N2.dts │ │ │ ├── NCS601W.dts │ │ │ ├── NIXCORE-16M.dts │ │ │ ├── NIXCORE-8M.dts │ │ │ ├── NIXCORE.dtsi │ │ │ ├── NW718.dts │ │ │ ├── Newifi-D1.dts │ │ │ ├── OMEGA2.dts │ │ │ ├── OMEGA2.dtsi │ │ │ ├── OMEGA2P.dts │ │ │ ├── OY-0001.dts │ │ │ ├── PBR-D1.dts │ │ │ ├── PBR-M1.dts │ │ │ ├── PSG1208.dts │ │ │ ├── PSG1218.dtsi │ │ │ ├── PSG1218A.dts │ │ │ ├── PSG1218B.dts │ │ │ ├── PSR-680W.dts │ │ │ ├── PWH2004.dts │ │ │ ├── PX-4885-4M.dts │ │ │ ├── PX-4885-8M.dts │ │ │ ├── PX-4885.dtsi │ │ │ ├── R6220.dts │ │ │ ├── RB750Gr3.dts │ │ │ ├── RE350.dts │ │ │ ├── RE6500.dts │ │ │ ├── RP-N53.dts │ │ │ ├── RT-AC51U.dts │ │ │ ├── RT-G32-B1.dts │ │ │ ├── RT-N10-PLUS.dts │ │ │ ├── RT-N13U.dts │ │ │ ├── RT-N14U.dts │ │ │ ├── RT-N15.dts │ │ │ ├── RT-N56U.dts │ │ │ ├── RT5350F-OLINUXINO-EVB.dts │ │ │ ├── RT5350F-OLINUXINO.dts │ │ │ ├── RUT5XX.dts │ │ │ ├── SAP-G3200U3.dts │ │ │ ├── SK-WB8.dts │ │ │ ├── SL-R7205.dts │ │ │ ├── TEW-638APB-V2.dts │ │ │ ├── TEW-691GR.dts │ │ │ ├── TEW-692GR.dts │ │ │ ├── TEW-714TRU.dts │ │ │ ├── TINY-AC.dts │ │ │ ├── TL-WR840NV4.dts │ │ │ ├── TL-WR841NV13.dts │ │ │ ├── TL-WR84XN.dtsi │ │ │ ├── Timecloud.dts │ │ │ ├── UBNT-ER-e50.dtsi │ │ │ ├── UBNT-ERX-SFP.dts │ │ │ ├── UBNT-ERX.dts │ │ │ ├── UR-326N4G.dts │ │ │ ├── UR-336UN.dts │ │ │ ├── V11STFE.dts │ │ │ ├── V22RW-2X2.dts │ │ │ ├── VOCORE-16M.dts │ │ │ ├── VOCORE-8M.dts │ │ │ ├── VOCORE.dtsi │ │ │ ├── VOCORE2.dts │ │ │ ├── VOCORE2.dtsi │ │ │ ├── VOCORE2LITE.dts │ │ │ ├── VR500.dts │ │ │ ├── W150M.dts │ │ │ ├── W2914NSV2.dts │ │ │ ├── W2914NSV2.dtsi │ │ │ ├── W306R_V20.dts │ │ │ ├── W502U.dts │ │ │ ├── WCR-1166DS.dts │ │ │ ├── WCR150GN.dts │ │ │ ├── WF-2881.dts │ │ │ ├── WHR-1166D.dts │ │ │ ├── WHR-300HP2.dts │ │ │ ├── WHR-600D.dts │ │ │ ├── WHR-G300N.dts │ │ │ ├── WIDORA-NEO.dts │ │ │ ├── WITI.dts │ │ │ ├── WIZARD8800.dts │ │ │ ├── WIZFI630A.dts │ │ │ ├── WL-330N.dts │ │ │ ├── WL-330N3G.dts │ │ │ ├── WL-341V3.dts │ │ │ ├── WL-351.dts │ │ │ ├── WL-WN575A3.dts │ │ │ ├── WLI-TX4-AG300N.dts │ │ │ ├── WLR-6000.dts │ │ │ ├── WMDR-143N.dts │ │ │ ├── WMR-300.dts │ │ │ ├── WN3000RPV3.dts │ │ │ ├── WNCE2001.dts │ │ │ ├── WNDR3700V5.dts │ │ │ ├── WR512-3GN-4M.dts │ │ │ ├── WR512-3GN-8M.dts │ │ │ ├── WR512-3GN.dtsi │ │ │ ├── WR6202.dts │ │ │ ├── WRH-300CR.dts │ │ │ ├── WRTNODE.dts │ │ │ ├── WRTNODE2.dtsi │ │ │ ├── WRTNODE2P.dts │ │ │ ├── WRTNODE2R.dts │ │ │ ├── WSR-1166.dts │ │ │ ├── WSR-600.dts │ │ │ ├── WT1520-4M.dts │ │ │ ├── WT1520-8M.dts │ │ │ ├── WT1520.dtsi │ │ │ ├── WT3020-4M.dts │ │ │ ├── WT3020-8M.dts │ │ │ ├── WT3020.dtsi │ │ │ ├── WZR-AGL300NH.dts │ │ │ ├── X5.dts │ │ │ ├── X8.dts │ │ │ ├── XDXRN502J.dts │ │ │ ├── Y1.dts │ │ │ ├── Y1.dtsi │ │ │ ├── Y1S.dts │ │ │ ├── YOUKU-YK1.dts │ │ │ ├── ZBT-APE522II.dts │ │ │ ├── ZBT-CPE102.dts │ │ │ ├── ZBT-WA05.dts │ │ │ ├── ZBT-WE1326.dts │ │ │ ├── ZBT-WE2026.dts │ │ │ ├── ZBT-WE826-16M.dts │ │ │ ├── ZBT-WE826-32M.dts │ │ │ ├── ZBT-WE826.dtsi │ │ │ ├── ZBT-WG2626.dts │ │ │ ├── ZBT-WG3526-16M.dts │ │ │ ├── ZBT-WG3526-32M.dts │ │ │ ├── ZBT-WG3526.dtsi │ │ │ ├── ZBT-WR8305RT.dts │ │ │ ├── ZTE-Q7.dts │ │ │ ├── kn.dts │ │ │ ├── kn_rc.dts │ │ │ ├── kn_rf.dts │ │ │ ├── kng_rc.dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620n.dtsi │ │ │ ├── mt7621.dtsi │ │ │ ├── mt7628an.dtsi │ │ │ ├── rt2880.dtsi │ │ │ ├── rt3050.dtsi │ │ │ ├── rt3352.dtsi │ │ │ ├── rt3883.dtsi │ │ │ └── rt5350.dtsi │ │ ├── files-4.9 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── mtk │ │ │ │ ├── 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_eth_soc.c │ │ │ │ ├── mtk_eth_soc.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-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 │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ └── ralink.mk │ │ │ ├── mt7620.mk │ │ │ ├── mt7621.mk │ │ │ ├── mt7628.mk │ │ │ ├── mt7688.mk │ │ │ ├── rt288x.mk │ │ │ ├── rt305x-legacy.mk │ │ │ ├── rt305x.mk │ │ │ └── rt3883.mk │ │ ├── modules.mk │ │ ├── mt7620 │ │ │ ├── config-4.9 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── config-4.9 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7628 │ │ │ ├── config-4.9 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7688 │ │ │ ├── config-4.9 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.9 │ │ │ ├── 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-phy-usb-add-ralink-phy.patch │ │ │ ├── 0031-uvc-add-iPassion-iP2970-support.patch │ │ │ ├── 0032-USB-dwc2-add-device_reset.patch │ │ │ ├── 0034-NET-multi-phy-support.patch │ │ │ ├── 0036-mtd-fix-cfi-cmdset-0002-erase-status-check.patch │ │ │ ├── 0037-mtd-cfi-cmdset-0002-force-word-write.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 │ │ │ ├── 0054-mtd-add-chunked-read-io-to-m25p80.patch │ │ │ ├── 0063-set-CM_GCR_BASE_CMDEFTGT_MEM-according-to-datasheet.patch │ │ │ ├── 0064-add_clk_round_rate.patch │ │ │ ├── 0066-mt7621-enable-highmem.patch │ │ │ ├── 0067-enable-mt7621-xhci.patch │ │ │ ├── 0069-awake-rt305x-dwc2-controller.patch │ │ │ ├── 0085-pinmux-util.patch │ │ │ ├── 0090-ethernet.patch │ │ │ ├── 0098-disable_cm.patch │ │ │ ├── 0099-pci-mt7620.patch │ │ │ ├── 0100-prom_fixes.patch │ │ │ ├── 0101-MIPS-ralink-allow-NULL-clock-for-clk_get_rate.patch │ │ │ ├── 0105-set_mt7621_soc_type.patch │ │ │ ├── 0200-linkit_bootstrap.patch │ │ │ ├── 0700-pinctrl-mt7620-mdio-as-refclk.patch │ │ │ ├── 0720-arch-mips-ralink-add-i2c-clocks.patch │ │ │ ├── 0901-spansion_nand_id_fix.patch │ │ │ ├── 100-mt7621-core-detect-hack.patch │ │ │ ├── 101-mt7621-timer.patch │ │ │ ├── 301-fix-rt3883.patch │ │ │ └── 999-fix-pci-init-mt7620.patch │ │ ├── rt288x │ │ │ ├── config-4.9 │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── config-4.9 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── config-4.9 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── rb532 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── gen_image.sh │ │ ├── modules.mk │ │ └── patches-4.4 │ │ │ ├── 001-cmdline_hack.patch │ │ │ ├── 002-rb532_nand_fixup.patch │ │ │ └── 004-rb532-fix-partition-info.patch │ ├── sunxi │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── firmware │ │ │ │ └── brcm │ │ │ │ │ ├── brcmfmac4329-sdio.txt │ │ │ │ │ └── brcmfmac43362-sdio.txt │ │ │ │ ├── preinit │ │ │ │ ├── 03_b53_hack.sh │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── gen_sunxi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-4.4 │ │ │ ├── 100-clk-sunxi-add-dram-gates-support.patch │ │ │ ├── 101-dt-sun4i-add-dram-gates.patch │ │ │ ├── 102-dt-sun7i-add-dram-gates.patch │ │ │ ├── 103-clk-sunxi-add-h3-clksupport.patch │ │ │ ├── 104-1-dt-sunxi-add-h3-dtsi.patch │ │ │ ├── 104-2-dt-sun8i-add-orangepi-plus.patch │ │ │ ├── 105-phy-use_of_match_node.patch │ │ │ ├── 106-phy-add-h3-usbphys.patch │ │ │ ├── 107-clk-sunxi-add-h3-usbphy-clocks.patch │ │ │ ├── 110-clk-sunxi-add-ve-for-sun457i.patch │ │ │ ├── 111-1-dt-sun4i-add-ve-clock-module.patch │ │ │ ├── 111-2-dt-sun7i-add-ve-clock-module.patch │ │ │ ├── 115-musb-ignore-vbus-errors.patch │ │ │ ├── 130-pinctrl-sunxi-add-h3-pio.patch │ │ │ ├── 131-reset-add-h3-resets.patch │ │ │ ├── 132-dt-sun8i-add-h3-usbclocks.patch │ │ │ ├── 133-dt-sun8i-add-usbphy-usbhost-ctrl-nodes.patch │ │ │ ├── 134-dt-sun8i-orangepiplus-enable-usbhost.patch │ │ │ ├── 135-clk-sunxi-fix-signedness-bug.patch │ │ │ ├── 140-reset-add-of_reset_control_get_by_index.patch │ │ │ ├── 141-reset-fix-of_reset_control_get.patch │ │ │ ├── 142-reset-use-ENOTSUPP-instead-of-ENOSYS.patch │ │ │ ├── 143-reset-add-shared-resetcontrol-asserts.patch │ │ │ ├── 144-usb-ehci-plat-support-multiple-reset-ctrllines.patch │ │ │ ├── 145-usb-ohci-plat-support-multiple-reset-ctrllines.patch │ │ │ ├── 150-dt-sun7i-enable-codec-on-pcduino3.patch │ │ │ └── 200-dt-sun7i-add-lamobo-r1.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── uml │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-4.4 │ │ │ ├── 000-um-Avoid-longjmp-setjmp-symbol-clashes-with-libpthre.patch │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ ├── x86 │ │ ├── 64 │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ ├── 15_essential_fs_x86 │ │ │ │ ├── 20_check_iso │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── generic │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── geode │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 000-Generic.mk │ │ │ │ └── 100-Geos.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── grub-early.cfg │ │ │ ├── grub-iso.cfg │ │ │ └── grub.cfg │ │ ├── legacy │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ └── patches-4.9 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ └── 800-hwmon-w83627ehf-dont-claim-nct677x.patch │ ├── xburst │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 01_system │ │ │ │ └── config │ │ │ │ ├── fstab │ │ │ │ └── network │ │ ├── config-3.18 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-ubi-Read-only-the-vid-header-instead-of-the-whole-pa.patch │ │ │ ├── 002-NAND-Optimize-NAND_ECC_HW_OOB_FIRST-read.patch │ │ │ ├── 003-NAND-Add-support-for-subpage-reads-for-NAND_ECC_HW_O.patch │ │ │ ├── 004-ASoC-JZ4740-delay-activation-of-the-DAC-to-work-arou.patch │ │ │ ├── 005-RTC-JZ4740-Init-the-regulator-register-on-startup.patch │ │ │ ├── 006-Add-ili8960-lcd-driver.patch │ │ │ └── 007-qi_lb60-Don-t-use-3-wire-spi-mode-for-the-display-fo.patch │ │ └── qi_lb60 │ │ │ ├── config-default │ │ │ └── target.mk │ └── zynq │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ └── etc │ │ │ ├── board.d │ │ │ └── 02_network │ │ │ ├── config │ │ │ └── network │ │ │ └── inittab │ │ ├── config-4.4 │ │ └── image │ │ ├── Makefile │ │ └── mkits.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.27 │ │ ├── 001-MIPS_BFD_Remove_EI_ABIVERSION_5.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.28 │ │ ├── 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 │ │ └── arc-2016.09-release │ │ ├── 300-001_ld_makefile_patch.patch │ │ └── 300-012_check_ldrunpath_length.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.4.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 │ │ ├── 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 │ │ ├── 6.3.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 230-musl_libssp.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 │ │ ├── 940-no-clobber-stamp-bits.patch │ │ ├── 950-cpp_file_path_translation.patch │ │ └── 960-fix-ubsan-defref.patch │ │ ├── 7.1.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.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 │ │ ├── 940-no-clobber-stamp-bits.patch │ │ └── 950-cpp_file_path_translation.patch │ │ └── arc-2017.03-release │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 230-musl_libssp.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 │ │ ├── 940-no-clobber-stamp-bits.patch │ │ └── 950-cpp_file_path_translation.patch ├── gdb │ ├── Makefile │ ├── patches-arc │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch │ └── patches │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch ├── glibc │ ├── Makefile │ ├── common.mk │ ├── headers │ │ └── Makefile │ ├── include │ │ └── libintl.h │ └── patches │ │ ├── 100-fix_cross_rpcgen.patch │ │ └── 200-add-dl-search-paths.patch ├── info.mk ├── kernel-headers │ └── Makefile ├── musl │ ├── 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 ├── 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 └── yasm │ └── Makefile └── tools ├── Makefile ├── autoconf ├── Makefile └── patches │ ├── 000-relocatable.patch │ ├── 001-no_emacs_lib.patch │ └── 002-musl_host_fixup.patch ├── automake ├── Makefile ├── files │ └── aclocal └── patches │ ├── 000-relocatable.patch │ ├── 100-aclocal-skip-not-existing-directories.patch │ └── 200-do-not-override-silent-rules.patch ├── b43-tools ├── Makefile ├── files │ └── b43-fwsquash.py └── patches │ ├── 001-fw-dirname.patch │ └── 002-no_libfl.patch ├── bc ├── Makefile └── patches │ └── 001-no_doc.patch ├── bison ├── Makefile ├── patches │ ├── 010-intl-stub-compat.patch │ └── 100-fix-gets-removal.patch └── scripts │ └── yacc ├── ccache ├── Makefile ├── files │ ├── ccache_cc │ └── ccache_cxx └── patches │ └── 100-honour-copts.patch ├── cmake ├── Makefile └── patches │ ├── 100-disable_qt_tests.patch │ ├── 110-freebsd-compat.patch │ ├── 120-alpine_musl-compat.patch │ ├── 130-libarchive-fix-libressl-compat.patch │ ├── 140-curl-fix-libressl-linking.patch │ └── 150-bootstrap_parallel_make_flag.patch ├── coreutils └── Makefile ├── dosfstools ├── Makefile └── patches │ └── 0002-Switch-to-AC_CHECK_LIB-for-iconv-library-linking.patch ├── e2fsprogs ├── Makefile └── patches │ ├── 001-exit_0_on_corrected_errors.patch │ ├── 002-dont-build-e4defrag.patch │ ├── 003-openbsd-compat.patch │ ├── 004-freebsd-compat.patch │ ├── 005-darwin-compat.patch │ └── 010-old-libmagic.patch ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── expat └── Makefile ├── findutils └── Makefile ├── firmware-utils ├── Makefile └── src │ ├── add_header.c │ ├── addpattern.c │ ├── asustrx.c │ ├── bcm_tag.h │ ├── bcmalgo.c │ ├── bcmalgo.h │ ├── buffalo-enc.c │ ├── buffalo-lib.c │ ├── buffalo-lib.h │ ├── buffalo-tag.c │ ├── buffalo-tftp.c │ ├── csysimg.h │ ├── cyg_crc.h │ ├── cyg_crc16.c │ ├── cyg_crc32.c │ ├── dgfirmware.c │ ├── dgn3500sum.c │ ├── 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 │ ├── mkdcs932.c │ ├── mkdhpimg.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 │ ├── mkrtn56uimg.c │ ├── mksenaofw.c │ ├── mktitanimg.c │ ├── mktitanimg.h │ ├── mktplinkfw.c │ ├── mktplinkfw2.c │ ├── mkwrggimg.c │ ├── mkwrgimg.c │ ├── mkzcfw.c │ ├── mkzynfw.c │ ├── motorola-bin.c │ ├── myloader.h │ ├── nand_ecc.c │ ├── osbridge-crc.c │ ├── oseama.c │ ├── pc1crypt.c │ ├── ptgen.c │ ├── seama.c │ ├── seama.h │ ├── sha1.c │ ├── sha1.h │ ├── spw303v.c │ ├── srec2bin.c │ ├── tplink-safeloader.c │ ├── trx.c │ ├── trx2edips.c │ ├── trx2usr.c │ ├── wrt400n.c │ ├── xorimage.c │ ├── zyimage.c │ ├── zynos.h │ └── zyxbcm.c ├── flex ├── Makefile └── patches │ └── 100-disable-tests-docs.patch ├── flock ├── Makefile └── src │ └── flock.c ├── genext2fs ├── Makefile └── patches │ ├── 100-c99_scanf.patch │ ├── 200-autoconf.patch │ ├── 300-blocksize-creator.patch │ └── 400-byteswap_fix.patch ├── gengetopt ├── Makefile └── patches │ ├── 100-dependency_fix.patch │ └── 200-no_docs_tests.patch ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h └── sys │ └── sysmacros.h ├── isl └── Makefile ├── kernel2minor └── Makefile ├── libelf └── Makefile ├── libressl └── Makefile ├── libtool ├── Makefile ├── files │ ├── libtool-v1.5.patch │ ├── libtool-v2.2.patch │ └── libtool-v2.4.patch └── patches │ ├── 000-relocatable.patch │ ├── 001-fix-func_append.patch │ ├── 100-libdir-fixes.patch │ ├── 110-dont-use-target-dir-for-relinking.patch │ ├── 120-strip-unsafe-dirs-for-relinking.patch │ ├── 150-trailingslash.patch │ ├── 160-passthrough-ssp.patch │ └── 200-openwrt-branding.patch ├── lzma-old ├── Makefile └── patches │ ├── 100-lzma_zlib.patch │ └── 110-ranlib.patch ├── 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 ├── 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 │ ├── 010-freebsd-ulong-fix.patch │ ├── 020-include_compile_fix.patch │ ├── 030-allow-to-use-different-magic.patch │ ├── 040-include_order.patch │ ├── 050-image_h_portability.patch │ ├── 060-remove_kernel_includes.patch │ ├── 070-socfpgaimage_portability.patch │ ├── 080-remove_compiler_check.patch │ ├── 090-reproducible-SOURCE_DATE_EPOCH.patch │ ├── 100-freebsd-compat.patch │ ├── 200-compiler-support.patch │ └── 210-openssl-1.1.x-compat.patch ├── mklibs ├── Makefile ├── include │ └── elf.h └── patches │ ├── 001-compile.patch │ ├── 002-disable_symbol_checks.patch │ ├── 003-no_copy.patch │ ├── 004-libpthread_link.patch │ ├── 005-duplicate_syms.patch │ ├── 006-uclibc_init.patch │ ├── 007-gc_sections.patch │ ├── 008-uclibc_libgcc_link.patch │ ├── 009-uclibc_libpthread_symbols.patch │ ├── 010-remove_STT_GNU_IFUNC.patch │ └── 011-remove_multiarch.patch ├── mm-macros └── Makefile ├── mpc └── Makefile ├── mpfr ├── Makefile └── patches │ ├── 001-only_src.patch │ └── 100-freebsd-compat.patch ├── mtd-utils ├── Makefile ├── include │ ├── fls.h │ └── linux │ │ └── types.h └── patches │ ├── 100-sscanf_fix.patch │ ├── 110-portability.patch │ ├── 130-lzma_jffs2.patch │ ├── 134-freebsd_loff_t.patch │ ├── 135-mkubifs_optional_lzo.patch │ ├── 200-libubigen-add-ubigen_write_terminator-function.patch │ ├── 201-ubinize-add-terminator-support.patch │ ├── 310-add-static-linking-option.patch │ └── 320-mkfs.jffs2-SOURCE_DATE_EPOCH.patch ├── mtools ├── Makefile └── patches │ └── 100-compile_fix.patch ├── padjffs2 ├── Makefile └── src │ ├── Makefile │ └── padjffs2.c ├── patch-image ├── Makefile └── src │ ├── patch-cmdline.c │ └── patch-dtb.c ├── patch └── Makefile ├── patchelf └── Makefile ├── pkg-config ├── Makefile └── files │ └── pkg-config ├── qemu └── Makefile ├── quilt ├── Makefile └── patches │ ├── 000-relocatable.patch │ └── 001-fix_compile.patch ├── scons ├── Makefile ├── files │ └── pywrap.sh └── patches │ └── 001-platform_env.patch ├── sdimage └── Makefile ├── sed └── Makefile ├── sparse └── Makefile ├── squashfs ├── Makefile └── patches │ ├── 100-lzma.patch │ ├── 110-no_nonstatic_inline.patch │ └── 120-add-fixed-timestamp-support.patch ├── squashfs4 ├── Makefile └── patches │ ├── 100-portability.patch │ ├── 110-allow_static_liblzma.patch │ ├── 120-cygwin_fixes.patch │ ├── 150-freebsd_fixes.patch │ ├── 160-expose_lzma_xz_options.patch │ ├── 170-add_support_for_LZMA_MAGIC_to_unsqashfs.patch │ ├── 180-openbsd_compat.patch │ ├── 190-no_nonstatic_inline.patch │ └── 200-add-fixed-timestamp-option.patch ├── sstrip ├── Makefile └── src │ └── sstrip.c ├── tar ├── Makefile └── patches │ ├── 100-symlink-force-root-name.patch │ └── 110-symlink-force-permissions.patch ├── upslug2 ├── Makefile └── patches │ ├── 100-libpcap_fix.patch │ └── 110-wrt350nv2_support.patch ├── wrt350nv2-builder ├── Makefile └── src │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── md5.c │ ├── md5.h │ ├── upgrade.h │ └── wrt350nv2-builder.c └── xz └── Makefile /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/issue_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/.github/issue_template -------------------------------------------------------------------------------- /.github/pull_request_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/.github/pull_request_template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/README -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/feeds.mk -------------------------------------------------------------------------------- /include/hardening.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/hardening.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/image-commands.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/image-commands.mk -------------------------------------------------------------------------------- /include/image-legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/image-legacy.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/rootfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/rootfs.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/scons.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/arc -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/u-boot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/u-boot.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /package/base-files/files/etc/diag.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (C) 2006-2009 OpenWrt.org 3 | 4 | set_state() { :; } 5 | -------------------------------------------------------------------------------- /package/base-files/files/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/etc/fstab -------------------------------------------------------------------------------- /package/base-files/files/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/etc/hosts -------------------------------------------------------------------------------- /package/base-files/files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/etc/preinit -------------------------------------------------------------------------------- /package/base-files/files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/etc/profile -------------------------------------------------------------------------------- /package/base-files/files/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/sbin/led.sh -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/apex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/apex/Makefile -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/rbcfg/src/cyg_crc32.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /package/boot/uboot-ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-ar71xx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-at91/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-envtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-envtools/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-kirkwood/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-xburst/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/uboot-zynq/Makefile -------------------------------------------------------------------------------- /package/boot/yamonenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/boot/yamonenv/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb-arc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/gdb-arc/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/perf/musl-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/perf/musl-compat.h -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/firmware/am33x-cm3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/firmware/am33x-cm3/Makefile -------------------------------------------------------------------------------- /package/firmware/fman-ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/firmware/fman-ucode/Makefile -------------------------------------------------------------------------------- /package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /package/firmware/rcw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/firmware/rcw/Makefile -------------------------------------------------------------------------------- /package/kernel/acx-mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/acx-mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/ar7-atm/Config.in -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/ar7-atm/Makefile -------------------------------------------------------------------------------- /package/kernel/ath10k-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/ath10k-ct/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/avila-wdt/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := avila-wdt.o 2 | -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/broadcom-wl/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/src/wlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/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/dissent1/r7800/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/dissent1/r7800/HEAD/package/kernel/leds-apu2/Makefile -------------------------------------------------------------------------------- /package/kernel/leds-apu2/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/can.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/i2c.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/leds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/leds.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/lib.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/nls.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/spi.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/usb.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/virt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/virt.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/wpan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/linux/modules/wpan.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/om-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/om-watchdog/Makefile -------------------------------------------------------------------------------- /package/kernel/rotary-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_ROTARY_GPIO_CUSTOM} += rotary-gpio-custom.o 2 | -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/kernel/rtc-rv5c386a/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/dissent1/r7800/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/dissent1/r7800/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/kernel/wrt55agv2-spidevs/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += wrt55agv2_spidevs.o 2 | -------------------------------------------------------------------------------- /package/libs/cyassl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/cyassl/Config.in -------------------------------------------------------------------------------- /package/libs/cyassl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/cyassl/Makefile -------------------------------------------------------------------------------- /package/libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gettext/src/m4/intl.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libiconv-full/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/attr.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/cache.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/error.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/genl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/msg.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/nl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/object.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/socket.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/unl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl-tiny/src/unl.c -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/librpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/librpc/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libunwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libunwind/Makefile -------------------------------------------------------------------------------- /package/libs/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/readline/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/config/gre/Makefile -------------------------------------------------------------------------------- /package/network/config/ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/config/ipip/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/vti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/config/vti/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/network/utils/comgt/Makefile -------------------------------------------------------------------------------- /package/network/utils/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/curl/Config.in -------------------------------------------------------------------------------- /package/network/utils/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/curl/Makefile -------------------------------------------------------------------------------- /package/network/utils/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/dante/Makefile -------------------------------------------------------------------------------- /package/network/utils/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/iftop/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/iperf/Makefile -------------------------------------------------------------------------------- /package/network/utils/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/ipset/Makefile -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/iwcap/Makefile -------------------------------------------------------------------------------- /package/network/utils/umbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/umbim/Makefile -------------------------------------------------------------------------------- /package/network/utils/uqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/uqmi/Makefile -------------------------------------------------------------------------------- /package/network/utils/wwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/network/utils/wwan/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fstools/files/mount.hotplug: -------------------------------------------------------------------------------- 1 | /sbin/block hotplug 2 | -------------------------------------------------------------------------------- /package/system/fwtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/fwtool/Makefile -------------------------------------------------------------------------------- /package/system/fwtool/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/fwtool/src/crc32.h -------------------------------------------------------------------------------- /package/system/fwtool/src/fwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/fwtool/src/fwimage.h -------------------------------------------------------------------------------- /package/system/fwtool/src/fwtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/fwtool/src/fwtool.c -------------------------------------------------------------------------------- /package/system/fwtool/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/fwtool/src/utils.h -------------------------------------------------------------------------------- /package/system/lede-keyring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/lede-keyring/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/wrgg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/mtd/src/wrgg.h -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/opkg/files/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/opkg/files/opkg.conf -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/procd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/procd/files/procd.sh -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/adb/Makefile -------------------------------------------------------------------------------- /package/utils/admswconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/admswconfig/Makefile -------------------------------------------------------------------------------- /package/utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/utils/busybox/files/sysntpd -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/ct-bugcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/ct-bugcheck/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/utils/f2fs-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fritz-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/fritz-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fritz-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/fritz-tools/README.md -------------------------------------------------------------------------------- /package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/files/mdadm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/mdadm/files/mdadm.init -------------------------------------------------------------------------------- /package/utils/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/mtd-utils/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/files/nvram.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/files/nvram.init -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/nvram/src/sdinitvals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/nvram/src/sdinitvals.h -------------------------------------------------------------------------------- /package/utils/osafeloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/osafeloader/Makefile -------------------------------------------------------------------------------- /package/utils/osafeloader/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/osafeloader/src/md5.c -------------------------------------------------------------------------------- /package/utils/osafeloader/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/osafeloader/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/oseama/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/oseama/src/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/oseama/src/md5.c -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/oseama/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/oseama/src/oseama.c -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/gps.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/ugps/files/gps.config -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /scripts/config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /scripts/config/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/zconf.l -------------------------------------------------------------------------------- /scripts/config/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/config/zconf.y -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/fixup-makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/fixup-makefile.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash-502T.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/flashing/adam2flash-502T.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/gen_image_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/gen_image_generic.sh -------------------------------------------------------------------------------- /scripts/get_source_date_epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/get_source_date_epoch.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/mkhash.c -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/package-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/package-metadata.pl -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/portable_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/portable_date.sh -------------------------------------------------------------------------------- /scripts/qemustart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/qemustart -------------------------------------------------------------------------------- /scripts/redboot-script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/redboot-script.pl -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/sysupgrade-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/sysupgrade-tar.sh -------------------------------------------------------------------------------- /scripts/target-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/target-metadata.pl -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm5120/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm5120/config-3.18 -------------------------------------------------------------------------------- /target/linux/adm5120/files-3.18/arch/mips/adm5120/generic/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_EB_214A) += eb-214a.o 2 | -------------------------------------------------------------------------------- /target/linux/adm5120/files-3.18/arch/mips/adm5120/motorola/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_PMUGW) += pmugw.o 2 | -------------------------------------------------------------------------------- /target/linux/adm5120/files-3.18/arch/mips/adm5120/osbridge/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_5GXI) += 5gxi.o 2 | -------------------------------------------------------------------------------- /target/linux/adm5120/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm5120/image/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/image/rb1xx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm5120/image/rb1xx.mk -------------------------------------------------------------------------------- /target/linux/adm5120/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm5120/modules.mk -------------------------------------------------------------------------------- /target/linux/adm5120/rb1xx/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm5120/rb1xx/target.mk -------------------------------------------------------------------------------- /target/linux/adm5120/router_le/config-3.8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/adm8668/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm8668/Makefile -------------------------------------------------------------------------------- /target/linux/adm8668/base-files/sbin/hotplug.failsafe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | case "$1" in 3 | button) kill -USR1 1;; 4 | esac 5 | -------------------------------------------------------------------------------- /target/linux/adm8668/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm8668/config-3.18 -------------------------------------------------------------------------------- /target/linux/adm8668/files-3.18/arch/mips/adm8668/Kconfig: -------------------------------------------------------------------------------- 1 | config ARM_AMBA 2 | def_bool y 3 | -------------------------------------------------------------------------------- /target/linux/adm8668/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/adm8668/image/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/config-4.9 -------------------------------------------------------------------------------- /target/linux/apm821xx/dts/MR24.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/dts/MR24.dts -------------------------------------------------------------------------------- /target/linux/apm821xx/dts/MX60.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/dts/MX60.dts -------------------------------------------------------------------------------- /target/linux/apm821xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/apm821xx/sata/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/apm821xx/sata/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/Makefile -------------------------------------------------------------------------------- /target/linux/ar7/ac49x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/ac49x/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/base-files.mk -------------------------------------------------------------------------------- /target/linux/ar7/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/config-3.18 -------------------------------------------------------------------------------- /target/linux/ar7/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/config-4.1 -------------------------------------------------------------------------------- /target/linux/ar7/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/generic/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar7/src/adam2patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar7/src/adam2patcher.c -------------------------------------------------------------------------------- /target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/ar71xx/generic/config-default: -------------------------------------------------------------------------------- 1 | CONFIG_CMDLINE="rootfstype=squashfs,jffs2 noinitrd" 2 | -------------------------------------------------------------------------------- /target/linux/ar71xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/generic.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/senao.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/senao.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/tp-link.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/tp-link.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/ubnt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/image/ubnt.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ar71xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/arc770/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/arc770/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/arc770/config-4.9 -------------------------------------------------------------------------------- /target/linux/arc770/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/arc770/image/Config.in -------------------------------------------------------------------------------- /target/linux/arc770/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/arc770/image/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/arc770/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/archs38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/archs38/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/archs38/config-4.9 -------------------------------------------------------------------------------- /target/linux/archs38/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/archs38/image/Config.in -------------------------------------------------------------------------------- /target/linux/archs38/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/archs38/image/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/archs38/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/armvirt/32/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/armvirt/32/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/armvirt/64/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/armvirt/Makefile -------------------------------------------------------------------------------- /target/linux/armvirt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/armvirt/README -------------------------------------------------------------------------------- /target/linux/armvirt/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/armvirt/config-4.9 -------------------------------------------------------------------------------- /target/linux/armvirt/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/armvirt/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/config-4.4 -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5d3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/image/sama5d3.mk -------------------------------------------------------------------------------- /target/linux/at91/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5d3/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/at91/sama5d3/target.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ath25/config-4.9 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/au1000/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/au1500/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/au1000/au1500/target.mk -------------------------------------------------------------------------------- /target/linux/au1000/au1550/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/au1000/au1550/target.mk -------------------------------------------------------------------------------- /target/linux/au1000/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/au1000/config-3.18 -------------------------------------------------------------------------------- /target/linux/au1000/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/au1000/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/au1000/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/bcm53xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/bcm53xx/config-4.9 -------------------------------------------------------------------------------- /target/linux/bcm53xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/bcm53xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/bcm53xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm2708/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm2708/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm2708/image/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm2708/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm47xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm47xx/config-4.9 -------------------------------------------------------------------------------- /target/linux/brcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm63xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/vg50.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm63xx/dts/vg50.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/brcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/cns3xxx/config-4.9 -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/gemini/config-4.4 -------------------------------------------------------------------------------- /target/linux/gemini/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/gemini/image/Makefile -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/generic/config-3.18 -------------------------------------------------------------------------------- /target/linux/generic/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/generic/config-4.4 -------------------------------------------------------------------------------- /target/linux/generic/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/generic/config-4.9 -------------------------------------------------------------------------------- /target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/imx6/config-4.9 -------------------------------------------------------------------------------- /target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ipq806x/config-4.9 -------------------------------------------------------------------------------- /target/linux/ipq806x/files-4.4/arch/arm/boot/dts/qcom-ipq8065-v1.0.dtsi: -------------------------------------------------------------------------------- 1 | #include "qcom-ipq8065.dtsi" 2 | -------------------------------------------------------------------------------- /target/linux/ipq806x/files-4.9/arch/arm/boot/dts/qcom-ipq8065-v1.0.dtsi: -------------------------------------------------------------------------------- 1 | #include "qcom-ipq8065.dtsi" 2 | -------------------------------------------------------------------------------- /target/linux/ipq806x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ipq806x/modules.mk -------------------------------------------------------------------------------- /target/linux/ixp4xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ixp4xx/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ixp4xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/ixp4xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ixp4xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ixp4xx/modules.mk -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/kirkwood/config-4.9 -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/ase/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/ase/target.mk -------------------------------------------------------------------------------- /target/linux/lantiq/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/config-4.4 -------------------------------------------------------------------------------- /target/linux/lantiq/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/config-4.9 -------------------------------------------------------------------------------- /target/linux/lantiq/dts/DM200.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/dts/DM200.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/H201L.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/dts/H201L.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/VR200v.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/dts/VR200v.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/WBMR.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/dts/WBMR.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/ar9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/dts/ar9.dtsi -------------------------------------------------------------------------------- /target/linux/lantiq/dts/vr9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/dts/vr9.dtsi -------------------------------------------------------------------------------- /target/linux/lantiq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/image/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/lantiq/xway/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/lantiq/xway/target.mk -------------------------------------------------------------------------------- /target/linux/layerscape/32b/profiles/00-default.mk: -------------------------------------------------------------------------------- 1 | ../../64b/profiles/00-default.mk -------------------------------------------------------------------------------- /target/linux/layerscape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/layerscape/Makefile -------------------------------------------------------------------------------- /target/linux/layerscape/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/layerscape/config-4.4 -------------------------------------------------------------------------------- /target/linux/layerscape/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/layerscape/modules.mk -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/be64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/be64/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/config-4.4 -------------------------------------------------------------------------------- /target/linux/malta/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/image/Makefile -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/malta/le64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/malta/le64/target.mk -------------------------------------------------------------------------------- /target/linux/mcs814x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mcs814x/Makefile -------------------------------------------------------------------------------- /target/linux/mcs814x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mcs814x/config-3.18 -------------------------------------------------------------------------------- /target/linux/mcs814x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mcs814x/modules.mk -------------------------------------------------------------------------------- /target/linux/mediatek/32/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mediatek/32/target.mk -------------------------------------------------------------------------------- /target/linux/mediatek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mediatek/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mediatek/config-4.9 -------------------------------------------------------------------------------- /target/linux/mediatek/image/32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mediatek/image/32.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mpc85xx/config-4.9 -------------------------------------------------------------------------------- /target/linux/mpc85xx/generic/config-default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mvebu/config-4.4 -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mvebu/config-4.9 -------------------------------------------------------------------------------- /target/linux/mvebu/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mvebu/image/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mxs/config-4.9 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/octeon/config-4.9 -------------------------------------------------------------------------------- /target/linux/octeon/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/octeon/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap/config-4.4 -------------------------------------------------------------------------------- /target/linux/omap/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap/image/Config.in -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap24xx/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap24xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/omap24xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/omap24xx/modules.mk -------------------------------------------------------------------------------- /target/linux/orion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/orion/Makefile -------------------------------------------------------------------------------- /target/linux/orion/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/orion/config-4.4 -------------------------------------------------------------------------------- /target/linux/orion/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/orion/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/oxnas/config-4.4 -------------------------------------------------------------------------------- /target/linux/oxnas/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/oxnas/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/oxnas/modules.mk -------------------------------------------------------------------------------- /target/linux/pistachio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/pistachio/Makefile -------------------------------------------------------------------------------- /target/linux/pistachio/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/pistachio/config-4.9 -------------------------------------------------------------------------------- /target/linux/ppc40x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc40x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc40x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc40x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc40x/image/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc40x/modules.mk -------------------------------------------------------------------------------- /target/linux/ppc44x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc44x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc44x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc44x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc44x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ppc44x/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/dts/3G150B.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/3G150B.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/3G300M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/3G300M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/A5-V11.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/A5-V11.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/AR670W.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/AR670W.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/AR725W.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/AR725W.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/BC2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/BC2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/D105.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/D105.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/D240.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/D240.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/E1700.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/E1700.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/EW1200.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/EW1200.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/EX2700.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/EX2700.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/EX3700.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/EX3700.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/F7C027.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/F7C027.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/GB-PC1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/GB-PC1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5661.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/HC5661.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5761.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/HC5761.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5861.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/HC5861.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5962.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/HC5962.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HG255D.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/HG255D.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HPM.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/HPM.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/IP2202.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/IP2202.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/K2P.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/K2P.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M2M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/M2M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/M3.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4-4M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/M4-4M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4-8M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/M4-8M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/M4.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/MLW221.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/MLW221.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MLWG2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/MLWG2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MPRA1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/MPRA1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MPRA2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/MPRA2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MT7621.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/MT7621.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MT7628.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/MT7628.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/NA930.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/NA930.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/NW718.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/NW718.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/OMEGA2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/OMEGA2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/PBR-D1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/PBR-D1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/PBR-M1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/PBR-M1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/R6220.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/R6220.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RE350.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/RE350.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RE6500.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/RE6500.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RP-N53.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/RP-N53.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RT-N15.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/RT-N15.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RUT5XX.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/RUT5XX.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/SK-WB8.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/SK-WB8.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/VR500.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/VR500.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/W150M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/W150M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/W502U.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/W502U.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WITI.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/WITI.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WL-351.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/WL-351.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WR6202.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/WR6202.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/X5.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X8.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/X8.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/Y1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/Y1.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1S.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/Y1S.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/ZTE-Q7.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/ZTE-Q7.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/kn.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/kn.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/kn_rc.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/kn_rc.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/kn_rf.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/kn_rf.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/kng_rc.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/dts/kng_rc.dts -------------------------------------------------------------------------------- /target/linux/ramips/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/rb532/config-4.4 -------------------------------------------------------------------------------- /target/linux/rb532/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/rb532/image/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/sunxi/config-4.4 -------------------------------------------------------------------------------- /target/linux/sunxi/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/sunxi/image/Config.in -------------------------------------------------------------------------------- /target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/64/config-default -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/config-4.9 -------------------------------------------------------------------------------- /target/linux/x86/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/generic/target.mk -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/image/grub.cfg -------------------------------------------------------------------------------- /target/linux/x86/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/xburst/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/xburst/config-3.18 -------------------------------------------------------------------------------- /target/linux/xburst/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/xburst/image/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/xburst/modules.mk -------------------------------------------------------------------------------- /target/linux/xburst/qi_lb60/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=QI Ben Nanonote (qi_lb60) 2 | -------------------------------------------------------------------------------- /target/linux/zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/zynq/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/zynq/base-files.mk -------------------------------------------------------------------------------- /target/linux/zynq/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/zynq/config-4.4 -------------------------------------------------------------------------------- /target/linux/zynq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/zynq/image/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/image/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/linux/zynq/image/mkits.sh -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/binutils/Config.version -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/fortify-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/fortify-headers/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /toolchain/gcc/exclude-testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/glibc/include/libintl.h -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/musl/include/sys/cdefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/musl/include/sys/queue.h -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/config/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/arc -------------------------------------------------------------------------------- /toolchain/uClibc/config/archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/archs -------------------------------------------------------------------------------- /toolchain/uClibc/config/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/arm -------------------------------------------------------------------------------- /toolchain/uClibc/config/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/armeb -------------------------------------------------------------------------------- /toolchain/uClibc/config/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/common -------------------------------------------------------------------------------- /toolchain/uClibc/config/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/debug -------------------------------------------------------------------------------- /toolchain/uClibc/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/i386 -------------------------------------------------------------------------------- /toolchain/uClibc/config/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/i686 -------------------------------------------------------------------------------- /toolchain/uClibc/config/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/m68k -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mips -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mips64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mips64.32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mips64.64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.n32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mips64.n32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mips64el -------------------------------------------------------------------------------- /toolchain/uClibc/config/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/mipsel -------------------------------------------------------------------------------- /toolchain/uClibc/config/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/powerpc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/sparc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc.leon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/sparc.leon -------------------------------------------------------------------------------- /toolchain/uClibc/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/config/x86_64 -------------------------------------------------------------------------------- /toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /toolchain/yasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/toolchain/yasm/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bc/patches/001-no_doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/bc/patches/001-no_doc.patch -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/bison/scripts/yacc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec bison -y "$@" 3 | -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/coreutils/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/expat/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/asustrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/asustrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/bcm_tag.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/bcmalgo.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/bcmalgo.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/csysimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/csysimg.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/cyg_crc.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcasfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/mkcasfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/mkzcfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzynfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/mkzynfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/oseama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/spw303v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/spw303v.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx2usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/trx2usr.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/wrt400n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/wrt400n.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/zyimage.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyxbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/firmware-utils/src/zyxbcm.c -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/genext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/genext2fs/Makefile -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/isl/Makefile -------------------------------------------------------------------------------- /tools/kernel2minor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/kernel2minor/Makefile -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libressl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/libressl/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzma/patches/002-lzmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/lzma/patches/002-lzmp.patch -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/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/dissent1/r7800/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch-image/src/patch-dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/patch-image/src/patch-dtb.c -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/pkg-config/files/pkg-config -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/scons/Makefile -------------------------------------------------------------------------------- /tools/scons/files/pywrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/scons/files/pywrap.sh -------------------------------------------------------------------------------- /tools/sdimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/sdimage/Makefile -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfs4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/squashfs4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/tar/Makefile -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/wrt350nv2-builder/src/md5.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/wrt350nv2-builder/src/md5.h -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dissent1/r7800/HEAD/tools/xz/Makefile --------------------------------------------------------------------------------