├── .gitattributes ├── .gitignore ├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README ├── cfg ├── 360 ├── ar71xx-16m ├── ar71xx-360 ├── ar71xx-8m-lite ├── ar71xx-generic-8m ├── ar71xx-generic-8m-2 ├── ar71xx-nand ├── brcm2835 ├── mt7620-16m ├── mt7620-8m └── rt3x5x-16m ├── config ├── Config-build.in ├── Config-devel.in ├── Config-images.in └── Config-kernel.in ├── docs ├── .gitignore ├── Makefile ├── adding.tex ├── bugs.tex ├── build.tex ├── config.tex ├── debugging.tex ├── init-scripts.tex ├── network-scripts.tex ├── network.tex ├── openwrt.sty ├── openwrt.tex ├── submitting-patches.tex ├── wireless.tex └── working.tex ├── feeds.conf.981213 ├── feeds.conf.default ├── include ├── autotools.mk ├── cmake.mk ├── debug.mk ├── depends.mk ├── device_table.txt ├── download.mk ├── feeds.mk ├── hardening.mk ├── host-build.mk ├── host.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 ├── 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 ├── uclibc++.mk ├── unpack.mk ├── verbose.mk └── version.mk ├── package ├── Makefile ├── base-files │ ├── Makefile │ ├── files │ │ ├── bin │ │ │ ├── board_detect │ │ │ ├── config_generate │ │ │ ├── ipcalc.sh │ │ │ └── login.sh │ │ ├── etc │ │ │ ├── banner │ │ │ ├── banner.failsafe │ │ │ ├── board.d │ │ │ │ └── 99-default_network │ │ │ ├── config │ │ │ │ └── system │ │ │ ├── device_info │ │ │ ├── diag.sh │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── hotplug.d │ │ │ │ └── net │ │ │ │ │ └── 00-sysctl │ │ │ ├── init.d │ │ │ │ ├── boot │ │ │ │ ├── done │ │ │ │ ├── gpio_switch │ │ │ │ ├── led │ │ │ │ ├── sysctl │ │ │ │ ├── sysfixtime │ │ │ │ ├── system │ │ │ │ └── umount │ │ │ ├── inittab │ │ │ ├── iproute2 │ │ │ │ └── rt_tables │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── opkg │ │ │ │ └── keys │ │ │ │ │ └── af22f7a88858c8e9 │ │ │ ├── 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 │ │ ├── lib │ │ │ ├── functions.sh │ │ │ ├── functions │ │ │ │ ├── leds.sh │ │ │ │ ├── network.sh │ │ │ │ ├── preinit.sh │ │ │ │ ├── service.sh │ │ │ │ ├── system.sh │ │ │ │ └── uci-defaults.sh │ │ │ ├── preinit │ │ │ │ ├── 02_default_set_state │ │ │ │ ├── 10_indicate_failsafe │ │ │ │ ├── 10_indicate_preinit │ │ │ │ ├── 10_sysinfo │ │ │ │ ├── 30_failsafe_wait │ │ │ │ ├── 40_run_failsafe_hook │ │ │ │ ├── 50_indicate_regular_preinit │ │ │ │ ├── 70_initramfs_test │ │ │ │ ├── 80_mount_root │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ └── 99_10_run_init │ │ │ └── upgrade │ │ │ │ ├── common.sh │ │ │ │ └── keep.d │ │ │ │ └── base-files-essential │ │ ├── rom │ │ │ └── note │ │ └── sbin │ │ │ ├── firstboot │ │ │ ├── hotplug-call │ │ │ ├── led.sh │ │ │ ├── sysupgrade │ │ │ └── wifi │ └── 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 │ │ │ ├── 100-musl-compat.patch │ │ │ ├── 200-fix-gets-removal.patch │ │ │ └── 210-fix_serial_rtscts.patch │ ├── imx-bootlets │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-skip_sb_generation.patch │ │ │ ├── 002-set_elftosb_config.patch │ │ │ └── 003-add-olinuxino.patch │ ├── kexec-tools │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Fix-zlib-lzma-decompression.patch │ │ │ ├── 0002-configure.ac-apply-necessary-quotes-to-result-of-mac.patch │ │ │ ├── 0003-mips-fix-compiler-warning-on-printing-64-bit-integer.patch │ │ │ ├── 0004-mips-remove-unused-variable.patch │ │ │ └── 0005-mips-fix-warning-about-implicit-type-conversion.patch │ ├── kobs-ng │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix-mtd-defines.patch │ │ │ ├── 002-add-init-size-param.patch │ │ │ ├── 003-missing_include.patch │ │ │ └── 004-gnu_source.patch │ ├── rbcfg │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── cyg_crc.h │ │ │ ├── cyg_crc32.c │ │ │ ├── main.c │ │ │ └── rbcfg.h │ ├── uboot-ar71xx │ │ ├── Makefile │ │ ├── files │ │ │ ├── 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 │ │ └── patches │ │ │ ├── 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 │ ├── uboot-envtools │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── ar71xx │ │ │ ├── cns3xxx │ │ │ ├── imx6 │ │ │ ├── kirkwood │ │ │ ├── lantiq │ │ │ ├── mvebu │ │ │ ├── mxs │ │ │ ├── oxnas │ │ │ ├── ramips │ │ │ └── uboot-envtools.sh │ │ └── patches │ │ │ ├── 001-compile.patch │ │ │ ├── 200-fw_env_no_aes.patch │ │ │ └── 300-support-env-in-ubivol-chardev.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 │ │ │ ├── 0001-cosmetic-kirkwood-style-fixes-in-kwbimage.cfg-files.patch │ │ │ ├── 0002-kirkwood-define-empty-CONFIG_MVGBE_PORTS-by-default.patch │ │ │ ├── 0003-ARM-kirkwood-fix-cpu-info-for-6282-device-id.patch │ │ │ ├── 0004-kirkwood-ib62x0-add-CONFIG_SYS_GENERIC_BOARD-define.patch │ │ │ ├── 0005-kirkwood-dockstar-add-CONFIG_SYS_GENERIC_BOARD-defin.patch │ │ │ ├── 0006-kirkwood-goflexhome-add-CONFIG_SYS_GENERIC_BOARD-def.patch │ │ │ ├── 0007-kirkwood-iconnect-add-CONFIG_SYS_GENERIC_BOARD-defin.patch │ │ │ ├── 0008-kirkwood-pogo_e02-add-CONFIG_SYS_GENERIC_BOARD-defin.patch │ │ │ ├── 0009-kirkwood-sheevaplug-add-CONFIG_SYS_GENERIC_BOARD-def.patch │ │ │ ├── 110-dockstar.patch │ │ │ ├── 120-iconnect.patch │ │ │ ├── 130-ib62x0.patch │ │ │ ├── 140-pogoplug_e02.patch │ │ │ ├── 150-goflexhome.patch │ │ │ ├── 200-openwrt-config.patch │ │ │ └── 400-gcc-5-compiler.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-easy80920-add-support-for-NAND-SPL.patch │ │ │ ├── 0023-MIPS-lantiq-add-default-openwrt-config.patch │ │ │ ├── 0024-MIPS-lantiq-easy50712-add-openwrt-lantiq-common.h.patch │ │ │ ├── 0025-MIPS-lantiq-easy80920-add-openwrt-lantiq-common.h.patch │ │ │ ├── 0026-MIPS-add-board-support-for-Arcadyan-ARV4519.patch │ │ │ ├── 0027-MIPS-add-board-support-for-Arcadyan-ARV7518.patch │ │ │ ├── 0028-MIPS-add-board-support-for-AudioCodes-MP-252.patch │ │ │ ├── 0029-MIPS-add-board-support-for-AVM-FritzBox-3370.patch │ │ │ ├── 0030-MIPS-add-board-support-for-Gigaset-SX76X.patch │ │ │ ├── 0031-MIPS-add-board-support-for-ZTE-ZXHN-H367N.patch │ │ │ ├── 0032-MIPS-add-board-support-for-ZTE-ZXV10-H201L.patch │ │ │ ├── 0033-MIPS-add-board-support-for-ZyXEL-P-661HNU-Fx.patch │ │ │ ├── 0034-MIPS-add-board-support-for-ZyXEL-P-2601HN-Fx.patch │ │ │ ├── 0035-MIPS-add-board-support-for-ZyXEL-P-2812HNU-Fx.patch │ │ │ ├── 0036-MIPS-add-board-support-for-Arcadyan-Easybox-904.patch │ │ │ ├── 0037-MIPS-add-board-support-for-Arcadyan-ARV752DPW.patch │ │ │ ├── 0038-MIPS-add-board-support-for-Arcadyan-ARV752DPW22.patch │ │ │ ├── 0039-MIPS-add-board-support-for-Arcadyan-ARV7510.patch │ │ │ ├── 0041-MIPS-add-board-support-for-Arcadyan-ARV7510PW22.patch │ │ │ ├── 0041-Makefile-prepare-u-boot-lantiq-v2013.10-openwrt4.patch │ │ │ ├── 0041-lzma-fixup.patch │ │ │ ├── 0042-arx100-cgu-fixes.patch │ │ │ ├── 0043-MIPS-add-board-support-for-Arcadyan-VGV7510KW22.patch │ │ │ ├── 0044-MIPS-add-board-support-for-Arcadyan-ARV8539PW22.patch │ │ │ ├── 0045-no_extern_inline.patch │ │ │ ├── 0046-no_weak_alias.patch │ │ │ └── 0047-add-gcc5-support.patch │ ├── uboot-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-use-dtc-in-kernel.patch │ ├── uboot-mxs │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-add-i2se-duckbill.patch │ ├── uboot-omap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-backport_upstream_image_c_fix_non_android_booting.patch │ │ │ ├── 100-disable_thumb_unknown_errata.patch │ │ │ └── 101-disable_ext.patch │ ├── uboot-oxnas │ │ ├── Makefile │ │ ├── files │ │ │ ├── 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 │ │ └── patches │ │ │ ├── 010-capacity-is-unsigned.patch │ │ │ ├── 150-spl-block.patch │ │ │ ├── 200-icplus-phy.patch │ │ │ ├── 300-oxnas-target.patch │ │ │ ├── 400-gcc-5-compiler.patch │ │ │ └── 800-fix-bootm-assertion.patch │ ├── uboot-pxa │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-squashfs_rootfstype_cmdline.patch │ ├── uboot-sunxi │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 001-use-dtc-in-kernel.patch │ │ │ ├── 002-add-olimex-a13-som.diff │ │ │ ├── 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 │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gdb-pr14523-mips-signal-number.patch │ │ │ └── 100-musl_fix.patch │ ├── perf │ │ ├── Makefile │ │ ├── musl-compat.h │ │ └── musl-include │ │ │ └── string.h │ ├── strace │ │ └── Makefile │ ├── trace-cmd │ │ ├── Makefile │ │ └── patches │ │ │ └── 110-mac80211_tracepoint.patch │ └── valgrind │ │ ├── Makefile │ │ ├── files │ │ └── default.supp │ │ ├── patches │ │ ├── 100-fix_configure_check.patch │ │ ├── 110-add_a_out_h.patch │ │ ├── 120-Fix-configure-for-Linux-kernel-4.0-rc1.patch │ │ ├── 130-mips_fix_soft_float.patch │ │ └── 200-musl_fix.patch │ │ └── src │ │ └── abort.c ├── firmware │ ├── am33x-cm3 │ │ └── Makefile │ ├── ath10k-firmware │ │ └── Makefile │ ├── b43legacy-firmware │ │ └── Makefile │ ├── brcmfmac43430-firmware │ │ └── Makefile │ ├── ixp4xx-microcode │ │ ├── Makefile │ │ └── src │ │ │ ├── IxNpeMicrocode.h │ │ │ └── LICENSE.IPL │ ├── lantiq │ │ └── dsl-vrx200-firmware-xdsl │ │ │ └── Makefile │ ├── linux-firmware │ │ ├── Makefile │ │ ├── broadcom.mk │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── mediatek.mk │ │ ├── qca.mk │ │ ├── realtek.mk │ │ └── ti.mk │ └── vsc73x5-ucode │ │ ├── Makefile │ │ └── files │ │ └── Makefile ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-initial-macaddr.patch │ │ │ └── 300-kernel_4_2.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 │ ├── avila-wdt │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── avila-wdt.c │ ├── brcm2708-gpu-fw │ │ └── Makefile │ ├── broadcom-wl │ │ ├── Makefile │ │ ├── files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── net │ │ │ │ │ │ └── 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 │ ├── ep80579-drivers │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-igbe_update.patch │ │ │ ├── 002-cflags_cleanup.patch │ │ │ ├── 003-new_irqf_constants.patch │ │ │ ├── 100-iegbe_netdev_ops.patch │ │ │ ├── 101-iegbe_fix_napi_interface.patch │ │ │ ├── 102-iegbe_nuke_polling_netdev.patch │ │ │ ├── 103-iegbe_convert_unicast_addr_list.patch │ │ │ ├── 104-iegbe_group_address_list_and_its_count.patch │ │ │ ├── 105-iegbe_new_dma_masks.patch │ │ │ ├── 106-iegbe_new_irqf_constant.patch │ │ │ ├── 150-ocracoke_island.patch │ │ │ ├── 200-can_fix_ioctl_numbers.patch │ │ │ ├── 210-can_include_linux_fs_h.patch │ │ │ ├── 220-can_fix_irq_request.patch │ │ │ ├── 230-can_remove_driver_data_direct_access.patch │ │ │ ├── 300-wdt_compile_fix.patch │ │ │ ├── 400-edma_fix_irq_request_warning.patch │ │ │ ├── 500-1588_fix_irq_request_warning.patch │ │ │ ├── 600-2.6.27_includes.patch │ │ │ ├── 601-2.6.32_includes.patch │ │ │ ├── 700-iegbe_kcompat_2.6.30.patch │ │ │ ├── 701-iegbe_poll_dev.patch │ │ │ ├── 710-3.3-fix-generated-header-locations.patch │ │ │ ├── 711-3.3-gbe-fixes.patch │ │ │ ├── 712-3.3-can-fixes.patch │ │ │ ├── 713-3.3-gpio-fixes.patch │ │ │ ├── 714-3.3-wdt-fixes.patch │ │ │ └── 715-3.3-1588-fixes.patch │ ├── gpio-button-hotplug │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gpio-button-hotplug.c │ ├── hostap-driver │ │ ├── Makefile │ │ ├── files │ │ │ └── lib │ │ │ │ └── wifi │ │ │ │ └── hostap.sh │ │ └── patches │ │ │ └── 001-fix-txpower.patch │ ├── i2c-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── i2c-gpio-custom.c │ ├── lantiq │ │ ├── ltq-adsl-fw │ │ │ └── Makefile │ │ ├── ltq-adsl-mei │ │ │ ├── Makefile │ │ │ ├── patches │ │ │ │ └── 100_no-date-time.patch │ │ │ └── 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-hcd │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ifxhcd.c │ │ │ │ ├── ifxhcd.h │ │ │ │ ├── ifxhcd_es.c │ │ │ │ ├── ifxhcd_intr.c │ │ │ │ ├── ifxhcd_queue.c │ │ │ │ ├── ifxusb_cif.c │ │ │ │ ├── ifxusb_cif.h │ │ │ │ ├── ifxusb_cif_d.c │ │ │ │ ├── ifxusb_cif_h.c │ │ │ │ ├── ifxusb_ctl.c │ │ │ │ ├── ifxusb_driver.c │ │ │ │ ├── ifxusb_plat.h │ │ │ │ ├── ifxusb_regs.h │ │ │ │ └── ifxusb_version.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 │ ├── linux │ │ ├── Makefile │ │ └── modules │ │ │ ├── 001-depends.mk │ │ │ ├── block.mk │ │ │ ├── can.mk │ │ │ ├── crypto.mk │ │ │ ├── dsa.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 │ │ │ ├── virtual.mk │ │ │ ├── w1.mk │ │ │ ├── wireless.mk │ │ │ └── wpan.mk │ ├── mac80211 │ │ ├── Makefile │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ └── regdb.txt │ │ ├── patches │ │ │ ├── 000-fix_kconfig.patch │ │ │ ├── 001-fix_build.patch │ │ │ ├── 002-change_allconfig.patch │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ ├── 004-backports-add-skb_free_frag.patch │ │ │ ├── 005-backports-add-napi_alloc_frag.patch │ │ │ ├── 010-disable_rfkill.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-disable_clk_backport.patch │ │ │ ├── 100-remove-cryptoapi-dependencies.patch │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ ├── 210-ap_scan.patch │ │ │ ├── 300-ath9k-force-rx_clear-when-disabling-rx.patch │ │ │ ├── 301-ath9k-limit-retries-for-powersave-response-frames.patch │ │ │ ├── 302-ath9k_hw-add-low-power-tx-gain-table-for-AR953x.patch │ │ │ ├── 303-rt2x00-fix-monitor-mode-regression.patch │ │ │ ├── 304-ath9k-avoid-ANI-restart-if-no-trigger.patch │ │ │ ├── 305-ath9k-clean-up-ANI-per-channel-pointer-checking.patch │ │ │ ├── 306-ath9k-do-not-reset-while-BB-panic-0x4000409-on-ar956.patch │ │ │ ├── 307-ath9k-fix-inconsistent-use-of-tab-and-space-in-inden.patch │ │ │ ├── 308-ath9k-fix-data-bus-error-on-ar9300-and-ar9580.patch │ │ │ ├── 309-01-brcmfmac-add-missing-include.patch │ │ │ ├── 309-02-brcmfmac-fix-sdio-sg-table-alloc-crash.patch │ │ │ ├── 310-ath9k_hw-ignore-eeprom-magic-mismatch-on-flash-based.patch │ │ │ ├── 311-ath9k-do-not-limit-the-number-of-DFS-interfaces-to-1.patch │ │ │ ├── 312-mac80211-fix-txq-queue-related-crashes.patch │ │ │ ├── 313-mac80211-fix-unnecessary-frame-drops-in-mesh-fwding.patch │ │ │ ├── 314-mac80211-Requeue-work-after-scan-complete-for-all-VI.patch │ │ │ ├── 315-mac80211-fix-ibss-scan-parameters.patch │ │ │ ├── 316-net-mac80211-agg-rx.c-fix-use-of-uninitialised-value.patch │ │ │ ├── 317-mac80211-minstrel_ht-fix-out-of-bound-in-minstrel_ht.patch │ │ │ ├── 318-mac80211-move-A-MSDU-skb_linearize-call-to-ieee80211.patch │ │ │ ├── 319-cfg80211-add-function-for-802.3-conversion-with-sepa.patch │ │ │ ├── 320-cfg80211-add-support-for-non-linear-skbs-in-ieee8021.patch │ │ │ ├── 321-mac80211-Parse-legacy-and-HT-rate-in-injected-frames.patch │ │ │ ├── 322-mac80211-add-A-MSDU-tx-support.patch │ │ │ ├── 323-0000-brcmfmac-fix-setting-primary-channel-for-80-MHz-widt.patch │ │ │ ├── 323-0001-brcmfmac-analyze-descriptors-of-current-component-on.patch │ │ │ ├── 323-0002-brcmfmac-allow-storing-PMU-core-without-wrapper-addr.patch │ │ │ ├── 323-0003-brcmfmac-read-extended-capabilities-of-ChipCommon-co.patch │ │ │ ├── 323-0004-brcmfmac-access-PMU-registers-using-standalone-PMU-c.patch │ │ │ ├── 323-0005-brcmfmac-add-support-for-14e4-4365-PCI-ID-with-BCM43.patch │ │ │ ├── 324-brcmfmac-treat-NULL-character-in-NVRAM-as-separator.patch │ │ │ ├── 325-brcmfmac-sdio-Increase-the-default-timeouts-a-bit.patch │ │ │ ├── 326-ath9k-make-NF-load-complete-quickly-and-reliably.patch │ │ │ ├── 327-mac80211-Remove-MPP-table-entries-with-MPath.patch │ │ │ ├── 328-mac80211-let-unused-MPP-table-entries-timeout.patch │ │ │ ├── 329-mac80211-Unify-mesh-and-mpp-path-removal-function.patch │ │ │ ├── 330-mac80211-minstrel-Change-expected-throughput-unit-ba.patch │ │ │ ├── 331-brcmfmac-Increase-nr-of-supported-flowrings.patch │ │ │ ├── 332-cfg80211-fix-faulty-variable-initialization-in-ieee8.patch │ │ │ ├── 333-cfg80211-reuse-existing-page-fragments-in-A-MSDU-rx.patch │ │ │ ├── 334-mac80211-fix-wiphy-supported_band-access.patch │ │ │ ├── 335-mac80211-minstrel_ht-set-A-MSDU-tx-limits-based-on-s.patch │ │ │ ├── 336-mac80211-minstrel_ht-set-default-tx-aggregation-time.patch │ │ │ ├── 337-mac80211-minstrel_ht-fix-a-logic-error-in-RTS-CTS-ha.patch │ │ │ ├── 338-mac80211-Fix-Public-Action-frame-RX-in-AP-mode.patch │ │ │ ├── 339-cfg80211-add-radiotap-VHT-info-to-rtap_namespace_siz.patch │ │ │ ├── 340-mac80211-fix-parsing-of-40Mhz-in-injected-radiotap-h.patch │ │ │ ├── 341-mac80211-parse-VHT-info-in-injected-frames.patch │ │ │ ├── 342-mac80211-do-not-pass-injected-frames-without-a-valid.patch │ │ │ ├── 343-mac80211-minstrel_ht-improve-sample-rate-skip-logic.patch │ │ │ ├── 344-0001-brcmfmac-change-function-name-for-brcmf_cfg80211_wai.patch │ │ │ ├── 344-0002-brcmfmac-Limit-memory-allocs-to-64K.patch │ │ │ ├── 344-0003-brcmfmac-check-for-wowl-support-before-enumerating-f.patch │ │ │ ├── 344-0004-brcmfmac-Configure-country-code-using-device-specifi.patch │ │ │ ├── 344-0005-brcmfmac-Add-length-checks-on-firmware-events.patch │ │ │ ├── 344-0006-brcmfmac-add-neighbor-discovery-offload-ip-address-t.patch │ │ │ ├── 344-0007-brcmfmac-check-return-for-ARP-ip-setting-iovar.patch │ │ │ ├── 344-0008-brcmfmac-use-device-memsize-config-from-fw-if-define.patch │ │ │ ├── 344-0009-brcmfmac-use-bar1-window-size-as-provided-by-pci-sub.patch │ │ │ ├── 344-0010-brcmfmac-add-support-for-the-PCIE-4366c0-chip.patch │ │ │ ├── 344-0011-brcmfmac-remove-pcie-gen1-support.patch │ │ │ ├── 344-0012-brcmfmac-increase-timeout-for-tx-eapol.patch │ │ │ ├── 344-0013-brcmfmac-move-module-init-and-exit-to-common.patch │ │ │ ├── 344-0014-brcmfmac-add-wowl-gtk-rekeying-offload-support.patch │ │ │ ├── 344-0015-brcmfmac-move-platform-data-retrieval-code-to-common.patch │ │ │ ├── 344-0016-brcmfmac-keep-ARP-and-ND-offload-enabled-during-WOWL.patch │ │ │ ├── 344-0017-brcmfmac-switch-to-new-platform-data.patch │ │ │ ├── 344-0018-brcmfmac-merge-platform-data-and-module-paramaters.patch │ │ │ ├── 344-0019-brcmfmac-integrate-add_keyext-in-add_key.patch │ │ │ ├── 344-0020-brcmfmac-add-802.11w-management-frame-protection-sup.patch │ │ │ ├── 345-brcmfmac-Remove-waitqueue_active-check.patch │ │ │ ├── 346-brcmfmac-uninitialized-ret-variable.patch │ │ │ ├── 347-brcmfmac-sdio-remove-unused-variable-retry_limit.patch │ │ │ ├── 348-brcmfmac-Delete-unnecessary-variable-initialisation.patch │ │ │ ├── 349-0001-brcmfmac-clear-eventmask-array-before-using-it.patch │ │ │ ├── 349-0002-brcmfmac-fix-clearing-wowl-wake-indicators.patch │ │ │ ├── 349-0003-brcmfmac-insert-default-boardrev-in-nvram-data-if-mi.patch │ │ │ ├── 349-0004-brcmfmac-fix-p2p-scan-abort-null-pointer-exception.patch │ │ │ ├── 349-0005-brcmfmac-screening-firmware-event-packet.patch │ │ │ ├── 349-0006-brcmfmac-cleanup-ampdu-rx-host-reorder-code.patch │ │ │ ├── 349-0007-brcmfmac-revise-handling-events-in-receive-path.patch │ │ │ ├── 349-0008-brcmfmac-create-common-function-for-handling-brcmf_p.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 │ │ │ ├── 532-ath9k_get_led_polarity_from_platform_data.patch │ │ │ ├── 540-ath9k_reduce_ani_interval.patch │ │ │ ├── 541-ath9k_rx_dma_stop_check.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 │ │ │ ├── 546-ath9k_platform_led_name.patch │ │ │ ├── 547-ath9k_led_defstate_fix.patch │ │ │ ├── 548-ath9k_enable_gpio_chip.patch │ │ │ ├── 549-ath9k_enable_gpio_buttons.patch │ │ │ ├── 550-ath9k_add_ar9280_gpio_chip.patch │ │ │ ├── 600-0001-rt2x00-rt2800lib-move-rt2800_drv_data-declaration-in.patch │ │ │ ├── 600-0002-rt2x00-rt2800lib-introduce-RT2800_HAS_HIGH_SHARED_ME.patch │ │ │ ├── 600-0003-rt2x00-rt2800-serialize-shared-memory-access.patch │ │ │ ├── 600-0004-rt2x00-rt2800lib-fix-beacon-generation-on-RT3593.patch │ │ │ ├── 600-0005-rt2x00-rt2800lib-add-hw_beacon_count-field-to-struct.patch │ │ │ ├── 600-0006-rt2x00-rt2800lib-init-additional-beacon-offset-regis.patch │ │ │ ├── 600-0007-rt2x00-rt2800lib-fix-max-supported-beacon-count-for-.patch │ │ │ ├── 600-0008-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ ├── 600-0009-rt2x00-rt2800lib-enable-support-for-RT3883.patch │ │ │ ├── 600-0010-rt2x00-rt2800lib-add-rf_vals-for-RF3853.patch │ │ │ ├── 600-0011-rt2x00-rt2800lib-enable-VCO-calibration-for-RF3853.patch │ │ │ ├── 600-0012-rt2x00-rt2800lib-add-channel-configuration-function-.patch │ │ │ ├── 600-0013-rt2x00-rt2800lib-enable-RF3853-support.patch │ │ │ ├── 600-0014-rt2x00-rt2800lib-add-MAC-register-initialization-for.patch │ │ │ ├── 600-0015-rt2x00-rt2800soc-fix-rt2800soc_disable_radio-for-RT3.patch │ │ │ ├── 600-0016-rt2x00-rt2800lib-add-BBP-register-initialization-for.patch │ │ │ ├── 600-0017-rt2x00-rt2800lib-add-RFCSR-initialization-for-RT3883.patch │ │ │ ├── 600-0018-rt2x00-rt2800lib-use-the-extended-EEPROM-map-for-RT3.patch │ │ │ ├── 600-0019-rt2x00-rt2800lib-force-rf-type-to-RF3853-on-RT3883.patch │ │ │ ├── 600-0020-rt2x00-rt2800lib-add-channel-configuration-code-for-.patch │ │ │ ├── 600-0021-rt2x00-rt2800lib-fix-txpower_to_dev-function-for-RT3.patch │ │ │ ├── 600-0022-rt2x00-rt2800lib-use-correct-txpower-calculation-fun.patch │ │ │ ├── 600-0023-rt2x00-rt2800lib-hardcode-txmixer-gain-values-to-zer.patch │ │ │ ├── 600-0024-rt2x00-rt2800lib-use-correct-RT-XWI-size-for-RT3883.patch │ │ │ ├── 600-0025-rt2x00-rt2800lib-use-correct-beacon-base-for-RT3883.patch │ │ │ ├── 600-0026-rt2x00-rt2800lib-use-correct-beacon-count-for-RT3883.patch │ │ │ ├── 600-0027-rt2x00-rt2800lib-fix-antenna-configuration-for-RT388.patch │ │ │ ├── 600-0028-rt2x00-rt2800lib-fix-LNA-gain-configuration-for-RT38.patch │ │ │ ├── 600-0029-rt2x00-rt2800lib-fix-VGC-setup-for-RT3883.patch │ │ │ ├── 600-0030-rt2x00-rt2800lib-fix-EEPROM-LNA-validation-for-RT388.patch │ │ │ ├── 600-0031-rt2x00-rt2800lib-fix-txpower-compensation-for-RT3883.patch │ │ │ ├── 600-0032-rt2x00-rt2800lib-enable-RT2800_HAS_HIGH_SHARED_MEM-f.patch │ │ │ ├── 600-0033-rt2x00-rt2800lib-use-high-memory-for-beacons-on-RT38.patch │ │ │ ├── 600-0034-rt2x00-rt2800mmio-add-a-workaround-for-spurious-TX_F.patch │ │ │ ├── 601-rt2x00-set_pci_mwi.patch │ │ │ ├── 602-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ ├── 603-rt2x00-introduce-rt2x00eeprom.patch │ │ │ ├── 604-rt2x00-of_load_eeprom_filename.patch │ │ │ ├── 605-rt2x00-load-eeprom-on-SoC-from-a-mtd-device-defines-.patch │ │ │ ├── 607-rt2x00-allow_disabling_bands_through_platform_data.patch │ │ │ ├── 608-add_platform_data_mac_addr.patch │ │ │ ├── 609-rt2x00-allow_disabling_bands_through_dts.patch │ │ │ ├── 610-rt2x00-fix-rt3352-ext-pa.patch │ │ │ ├── 611-rt2x00-rf_vals-rt3352-xtal20.patch │ │ │ ├── 612-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch │ │ │ ├── 615-rt2x00-fix_20mhz_clk.patch │ │ │ ├── 616-rt2x00-support-rt5350.patch │ │ │ ├── 619-rt2x00-change-led-polarity-from-OF.patch │ │ │ ├── 620-rt2x00-add-AP+STA-support.patch │ │ │ ├── 620-rt2x00-rt3352-rf-id.patch │ │ │ ├── 621-rt2x00-ht20_40_fix.patch │ │ │ ├── 622-rt2x00-fix-beacon-bit-balance.patch │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ ├── 802-libertas-set-wireless-macaddr.patch │ │ │ ├── 804-b43-sync-with-bcma.patch │ │ │ ├── 805-b43-gpio-mask-module-option.patch │ │ │ ├── 810-b43_no_pio.patch │ │ │ ├── 820-b43-add-antenna-control.patch │ │ │ ├── 841-b43-reduce-number-of-RX-slots.patch │ │ │ ├── 845-b43-only-use-gpio-0-1-for-led.patch │ │ │ ├── 847-b43-always-take-overlapping-devs.patch │ │ │ ├── 850-brcmsmac-remove-extra-regulation-restriction.patch │ │ │ ├── 860-brcmfmac-add-missing-eth_type_trans-call.patch │ │ │ ├── 861-brcmfmac-register-wiphy-s-during-module_init.patch │ │ │ ├── 862-brcmfmac-workaround-bug-with-some-inconsistent-BSSes.patch │ │ │ ├── 863-brcmfmac-Disable-power-management.patch │ │ │ ├── 910-00-rt2x00-enable-rt2800soc-for-mt7620.patch │ │ │ ├── 910-01-add-support-for-mt7620.patch │ │ │ ├── 910-02-add-mt7620-elna-support.patch │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ ├── 930-ath10k_add_tpt_led_trigger.patch │ │ │ ├── 940-mwl8k_init_devices_synchronously.patch │ │ │ └── 998-allow-sta-bridge.patch │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mmc_over_gpio │ │ ├── Makefile │ │ └── files │ │ │ ├── mmc_over_gpio.config │ │ │ └── mmc_over_gpio.init │ ├── mt76 │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-uninitialized.patch │ ├── mwlwifi │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-drop_old_api.patch │ │ │ └── 110-api_sync.patch │ ├── 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 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 300-SSL_set_tlsext_host_name.patch │ │ │ └── 400-additional_compatibility.patch │ ├── elfutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-argp_standalone.patch │ │ │ ├── 003-libint-stub.patch │ │ │ ├── 004-maybe-uninitialized.patch │ │ │ ├── 004-memcpy_def.patch │ │ │ ├── 005-build_only_libs.patch │ │ │ ├── 006-libdw_LIBS.patch │ │ │ ├── 100-musl-compat.patch │ │ │ ├── 101-no-fts.patch │ │ │ └── 110-elf_compressed_header_support.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 │ │ │ └── 001-backport_compile_fix.patch │ ├── libmnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-upstream-fixes.patch │ ├── 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 │ ├── 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 │ │ │ ├── linux │ │ │ │ ├── gen_stats.h │ │ │ │ ├── genetlink.h │ │ │ │ ├── if.h │ │ │ │ ├── if_addr.h │ │ │ │ └── netlink.h │ │ │ ├── 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 │ │ │ └── 001-fix-poll-h-include-warning-on-musl.h │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 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 │ ├── libreadline │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-install_perm.patch │ ├── libroxml │ │ └── Makefile │ ├── librpc │ │ └── Makefile │ ├── libtool │ │ ├── Makefile │ │ └── patches │ │ │ └── 160-passthrough-ssp.patch │ ├── libubox │ │ └── Makefile │ ├── libusb-compat │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-musl-stdint.patch │ ├── libusb │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-timerfd.patch │ ├── 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 │ ├── ocf-crypto-headers │ │ ├── Makefile │ │ └── src │ │ │ └── cryptodev.h │ ├── openssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── 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 │ ├── polarssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable_sslv3.patch │ │ │ └── 200-reduce_config.patch │ ├── popt │ │ └── Makefile │ ├── 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 │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ └── zlib │ │ └── Makefile ├── my_package │ ├── 6relayd │ │ ├── Makefile │ │ └── files │ │ │ ├── 6relayd-update │ │ │ ├── 6relayd.config │ │ │ ├── 6relayd.hotplug │ │ │ └── 6relayd.init │ ├── adkill │ │ ├── Makefile │ │ └── files │ │ │ ├── conffile │ │ │ └── init │ ├── agentx1 │ │ └── Makefile │ ├── chinadns │ │ ├── Makefile │ │ ├── files │ │ │ ├── chinadns.config │ │ │ └── chinadns.init │ │ └── patches │ │ │ ├── 0001-refine-chnroute-list.patch │ │ │ └── 0002-Use-to-define-trusted-DNS.patch │ ├── cpulimit-ng │ │ ├── .svn │ │ │ ├── entries │ │ │ ├── format │ │ │ ├── pristine │ │ │ │ ├── 85 │ │ │ │ │ └── 850938d5ba6ec8875e3b72738e1b7ef6f79b27d8.svn-base │ │ │ │ ├── 90 │ │ │ │ │ └── 90187d65d9aec8d579f1c275122c039d0274fd2f.svn-base │ │ │ │ ├── 92 │ │ │ │ │ └── 9235e0e0ddbf58512ac7e37d5abe866bf9b2758b.svn-base │ │ │ │ ├── 01 │ │ │ │ │ ├── 014cc3b5249ab85b7f736854b13720614236af95.svn-base │ │ │ │ │ └── 017cd9106dc291766b7865b51bf3dac4a1e3ffdf.svn-base │ │ │ │ ├── 08 │ │ │ │ │ └── 082e091b43bc5c084d5eb04ef6a61b06223a84f8.svn-base │ │ │ │ ├── 2a │ │ │ │ │ └── 2a189807283be6e6944114df69ca13f8f52bb434.svn-base │ │ │ │ ├── 9b │ │ │ │ │ └── 9bf53bde6f0b946a5c3f2abb79b5e3724ef909bc.svn-base │ │ │ │ ├── ab │ │ │ │ │ └── ab83effc7cea777dff780ce210a467da64228e2c.svn-base │ │ │ │ ├── b1 │ │ │ │ │ └── b1aea664a1b0881a70c715488fb183ed9f172b4b.svn-base │ │ │ │ └── d2 │ │ │ │ │ └── d219ad87853a6ceb541df6edae8ac0d500efe25f.svn-base │ │ │ └── wc.db │ │ ├── Makefile │ │ ├── readme-ng.txt │ │ └── src │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cpulimit.c │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── process.c │ │ │ ├── process.h │ │ │ ├── procutils.c │ │ │ └── procutils.h │ ├── cpulimit │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── cpulimit.c │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── memrchr.c │ │ │ ├── process_group.c │ │ │ ├── process_group.h │ │ │ ├── process_iterator.c │ │ │ ├── process_iterator.h │ │ │ ├── process_iterator_apple.c │ │ │ ├── process_iterator_freebsd.c │ │ │ └── process_iterator_linux.c │ ├── dns2socks │ │ ├── Makefile │ │ └── src │ │ │ ├── DNS2SOCKS.c │ │ │ └── stdafx.h │ ├── exfat-fuse │ │ ├── Makefile │ │ └── files │ │ │ └── Makefile │ ├── ipip-chnroute │ │ └── Makefile │ ├── libc-ver-compat │ │ └── Makefile │ ├── luci-default-chinese │ │ ├── Makefile │ │ └── files │ │ │ └── ucidef.sh │ ├── n2n_v2 │ │ ├── Makefile │ │ └── files │ │ │ ├── n2n_v2.config │ │ │ └── n2n_v2.init │ ├── ngrok-c │ │ └── Makefile │ ├── pcd8544-gpio │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── pcd8544-gpio.c │ ├── qos-guoguo │ │ ├── Makefile │ │ ├── files │ │ │ ├── qos_guoguo.conf │ │ │ ├── qos_guoguo.hotplug │ │ │ └── qos_guoguo.init │ │ └── src │ │ │ ├── Makefile │ │ │ └── qosmon.c │ ├── redsocks2 │ │ └── Makefile │ ├── rtl8188eu │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-makefile.patch │ ├── samba-hotplug │ │ ├── Makefile │ │ └── files │ │ │ └── hotplug.sh │ ├── shadowsocks-libev │ │ ├── Makefile │ │ └── files │ │ │ ├── shadowsocks.config │ │ │ └── shadowsocks.init │ ├── shellsync │ │ ├── Makefile │ │ └── src │ │ │ └── shellsync.c │ └── ssocks │ │ └── 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 │ │ │ │ └── 010-eglibc_compile_fix.patch │ │ ├── ltq-vdsl-app │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dsl_control │ │ │ │ ├── dsl_cpe_pipe.sh │ │ │ │ └── vdsl_cpe_control_wrapper │ │ │ └── patches │ │ │ │ ├── 010-warnings.patch │ │ │ │ ├── 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 │ ├── 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 │ │ │ └── 100-no-ssl.patch │ ├── services │ │ ├── authsae │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── lib │ │ │ │ │ └── wifi │ │ │ │ │ └── authsae.sh │ │ │ └── patches │ │ │ │ └── 100-musl_fix.patch │ │ ├── dnsmasq │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.hotplug │ │ │ │ └── dnsmasq.init │ │ │ └── patches │ │ │ │ ├── 100-fix-dhcp-no-address-warning.patch │ │ │ │ ├── 110-ipset-remove-old-kernel-support.patch │ │ │ │ ├── 210-dnssec-improve-timestamp-heuristic.patch │ │ │ │ └── 500-dnsmasq-routefilter.patch │ │ ├── dropbear │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dropbear.config │ │ │ │ └── dropbear.init │ │ │ └── patches │ │ │ │ ├── 100-pubkey_path.patch │ │ │ │ ├── 110-change_user.patch │ │ │ │ ├── 120-openwrt_options.patch │ │ │ │ ├── 130-ssh_ignore_o_and_x_args.patch │ │ │ │ ├── 140-disable_assert.patch │ │ │ │ ├── 150-dbconvert_standalone.patch │ │ │ │ ├── 500-set-default-path.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 │ │ │ │ ├── hostapd_wps_led.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── netifd.sh │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ ├── wpa_supplicant.sh │ │ │ │ └── wps-hotplug.sh │ │ │ └── patches │ │ │ │ ├── 100-mesh_mode_fix.patch │ │ │ │ ├── 120-daemonize_fix.patch │ │ │ │ ├── 130-no_eapol_fix.patch │ │ │ │ ├── 140-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 │ │ │ │ ├── 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 │ │ │ │ ├── 600-ubus_support.patch │ │ │ │ └── 800-Add-QCA-athr-driver.patch │ │ ├── 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 │ │ │ └── patches │ │ │ │ └── 100-os-release.patch │ │ ├── mdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── mdns.config │ │ │ │ ├── mdns.init │ │ │ │ └── mdns.json │ │ ├── odhcpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.init │ │ ├── omcproxy │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── omcproxy.config │ │ │ │ └── omcproxy.init │ │ ├── openvpn-easy-rsa │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── easy-rsa.index │ │ │ │ └── easy-rsa.serial │ │ │ └── patches │ │ │ │ └── 100-run-ootb.patch │ │ ├── openvpn │ │ │ ├── Config-nossl.in │ │ │ ├── Config-openssl.in │ │ │ ├── Config-polarssl.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── openvpn.config │ │ │ │ ├── openvpn.init │ │ │ │ └── openvpn.upgrade │ │ │ └── patches │ │ │ │ ├── 001-reproducible-remove_DATE.patch │ │ │ │ ├── 100-polarssl-disable-runtime-version-check.patch │ │ │ │ └── 200-small_build_enable_occ.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 │ │ │ │ └── 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 │ │ │ │ ├── 511-syncppp.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.hotplug │ │ │ │ └── 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 │ │ │ │ ├── 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 │ └── utils │ │ ├── arptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-always_optimize.patch │ │ │ └── 200-musl_fixes.patch │ │ ├── comgt │ │ ├── Makefile │ │ ├── files │ │ │ ├── 3g.chat │ │ │ ├── 3g.sh │ │ │ ├── 3g.usb │ │ │ ├── directip-stop.gcom │ │ │ ├── directip.gcom │ │ │ ├── directip.sh │ │ │ ├── evdo.chat │ │ │ ├── getcardinfo.gcom │ │ │ ├── getcarrier.gcom │ │ │ ├── getcnum.gcom │ │ │ ├── getimsi.gcom │ │ │ ├── getstrength.gcom │ │ │ ├── ncm.json │ │ │ ├── ncm.sh │ │ │ ├── runcommand.gcom │ │ │ ├── setmode.gcom │ │ │ └── setpin.gcom │ │ └── 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 │ │ │ ├── 300-fix-disable-crypto-auth.patch │ │ │ └── 310-polarssl-disable-runtime-version-check.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-fix-RTLD_NEXT.patch │ │ ├── ebtables │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-musl_fix.patch │ │ ├── iftop │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-force-ncurses.patch │ │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-set-report-next-time-in-single-thread-mode.patch │ │ │ └── 002-format-security.patch │ │ ├── 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 │ │ │ ├── 010-type_fixes.patch │ │ │ ├── 100-allow_pfifo_fast.patch │ │ │ ├── 110-extra-ccopts.patch │ │ │ ├── 120-libnetlink-pic.patch │ │ │ ├── 130-missing_include.patch │ │ │ ├── 200-add-tc_esfq.patch │ │ │ ├── 300-ip_tiny.patch │ │ │ ├── 900-drop_FAILED_POLICY.patch │ │ │ ├── 910-sanitize_headers_for_musl.patch │ │ │ └── 911-fix_in_h_include.patch │ │ ├── ipset │ │ └── Makefile │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 020-iptables-disable-modprobe.patch │ │ │ ├── 030-no-libnfnetlink.patch │ │ │ ├── 050-optional-xml.patch │ │ │ ├── 100-bash-location.patch │ │ │ ├── 200-configurable_builtin.patch │ │ │ ├── 300-imq.patch │ │ │ ├── 300-musl_fixes.patch │ │ │ ├── 500-add-xt_id-match.patch │ │ │ ├── 600-shared-libext.patch │ │ │ ├── 650-custom_netfilter_match_modules.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 │ │ │ ├── 300-display_interface_TX_power.patch │ │ │ ├── 301-ibss_add_VHT80.patch │ │ │ ├── 302-ibss_use_MHz_instead_MHZ.patch │ │ │ └── 303-mesh_add_VHT80.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-Add-Ralink-RT2860v2-Support.patch │ │ │ └── 001-Add-QCAWIFI-Backend.patch │ │ ├── linux-atm │ │ ├── Makefile │ │ ├── files │ │ │ ├── atm.hotplug │ │ │ ├── br2684-up │ │ │ ├── br2684ctl │ │ │ └── br2684ctl_wrap │ │ └── patches │ │ │ ├── 000-debian_16.patch │ │ │ ├── 200-no_libfl.patch │ │ │ ├── 300-objcopy_path.patch │ │ │ ├── 400-portability_fixes.patch │ │ │ ├── 500-br2684ctl_script.patch │ │ │ └── 600-fix-format-errors.patch │ │ ├── maccalc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── nftables │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-disable-doc-generation.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 │ │ ├── 001-build-fix-configure-compatiblity-with-POSIX-shells.patch │ │ ├── 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 │ │ │ ├── automount.hotplug │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ │ └── patches │ │ │ ├── 001-libblkid-add-exfat-ntfs-support.patch │ │ │ ├── 002-block-add-exfat-ntfs-support.patch │ │ │ ├── 003-block-use-ufsd-first.patch │ │ │ └── 004-dont-config-partitions-when-detect.patch │ ├── mountd │ │ ├── Makefile │ │ └── files │ │ │ ├── mountd.config │ │ │ └── mountd.init │ ├── 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 │ ├── opkg │ │ ├── Makefile │ │ ├── files │ │ │ ├── 20_migrate-feeds │ │ │ ├── customfeeds.conf │ │ │ ├── opkg-key │ │ │ ├── opkg-smime.conf │ │ │ └── opkg.conf │ │ └── patches │ │ │ ├── 001-ship-pkg-m4.patch │ │ │ ├── 002-no-shave.patch │ │ │ ├── 004-host_cpu.patch │ │ │ ├── 007-force_static.patch │ │ │ ├── 009-remove-upgrade-all.patch │ │ │ ├── 011-old-config-location.patch │ │ │ ├── 012-strip-trailing-conffiles-whitespace.patch │ │ │ ├── 014-errors-to-stderr.patch │ │ │ ├── 020-avoid_getline.patch │ │ │ ├── 030-fix-double-free.patch │ │ │ ├── 040-wrap-descriptions-only-on-ttys.patch │ │ │ ├── 050-add-case-insensitive-flag.patch │ │ │ ├── 060-add-find-command.patch │ │ │ ├── 070-use_gzipped_pkg_list.patch │ │ │ ├── 080-suppress-blank-package-fields.patch │ │ │ ├── 090-suppress-blank-provides-field.patch │ │ │ ├── 100-add-force-checksum.patch │ │ │ ├── 110-upgrade.patch │ │ │ ├── 200-usign_support.patch │ │ │ ├── 210-add-force-signature.patch │ │ │ ├── 220-drop-release-support.patch │ │ │ ├── 230-drop_md5_support.patch │ │ │ ├── 240-fix-force-checksum-for-sha256.patch │ │ │ ├── 250-add-lists-dir-switch.patch │ │ │ └── 260-add-print-package-size.patch │ ├── procd │ │ ├── Makefile │ │ └── files │ │ │ ├── hotplug-preinit.json │ │ │ ├── hotplug.json │ │ │ ├── nand-preinit.sh │ │ │ ├── nand.sh │ │ │ ├── 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 │ ├── admswconfig │ ├── Makefile │ ├── files │ │ ├── admswconfig │ │ └── admswswitch.sh │ └── patches │ │ ├── 001-matrix.patch │ │ └── 002-fix-musl.patch │ ├── bsdiff │ ├── Makefile │ └── patches │ │ └── 001-musl.patch │ ├── busybox │ ├── Config-defaults.in │ ├── Config.in │ ├── Makefile │ ├── config │ │ ├── Config.in │ │ ├── archival │ │ │ └── Config.in │ │ ├── console-tools │ │ │ └── Config.in │ │ ├── coreutils │ │ │ └── Config.in │ │ ├── debianutils │ │ │ └── Config.in │ │ ├── e2fsprogs │ │ │ ├── Config.in │ │ │ └── old_e2fsprogs │ │ │ │ └── Config.in │ │ ├── editors │ │ │ └── Config.in │ │ ├── findutils │ │ │ └── Config.in │ │ ├── init │ │ │ └── Config.in │ │ ├── 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 │ │ ├── 010-networking-fix-uninitialized-memory-when-displaying-.patch │ │ ├── 020-networking-libiproute-fix-displaying-route-table-for.patch │ │ ├── 100-trylink_bash.patch │ │ ├── 101-gen_build_files_bash.patch │ │ ├── 102-trylink_mktemp_fix.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 │ │ ├── 204-udhcpc_src_ip_rebind.patch │ │ ├── 210-add_netmsg_util.patch │ │ ├── 220-add_lock_util.patch │ │ ├── 230-ntpd_delayed_resolve.patch │ │ ├── 240-telnetd_intr.patch │ │ ├── 250-date-k-flag.patch │ │ ├── 260-arping_missing_includes.patch │ │ ├── 270-libbb_make_unicode_printable.patch │ │ └── 301-ip-link-fix-netlink-msg-size.patch │ ├── bzip2 │ └── Makefile │ ├── e2fsprogs │ ├── Makefile │ ├── files │ │ ├── e2fsck.conf │ │ └── e2fsck.sh │ └── patches │ │ └── 001-com_err_version.patch │ ├── fbtest │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── fbtest.c │ ├── fuse │ ├── Makefile │ └── patches │ │ ├── 001-fix_exec_environment_for_mount_and_umount.patch │ │ ├── 100-missing_includes.patch │ │ ├── 112-no_break_on_mknod.patch │ │ └── 200-backport_arm64_fuse_kernel_h_clean_includes.patch │ ├── hostap-utils │ └── Makefile │ ├── jsonfilter │ └── Makefile │ ├── lua │ ├── Makefile │ ├── patches-host │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.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 │ │ ├── 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 │ └── patches │ │ ├── 000-compile.patch │ │ ├── 100-cross_compile.patch │ │ └── 200-reduce_size.patch │ ├── mkelfimage │ ├── Makefile │ └── patches │ │ └── no-stack-protector.patch │ ├── nvram │ ├── Makefile │ ├── files │ │ └── nvram.init │ └── src │ │ ├── Makefile │ │ ├── cli.c │ │ ├── crc.c │ │ ├── nvram.c │ │ ├── nvram.h │ │ └── sdinitvals.h │ ├── oseama │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── md5.c │ │ ├── md5.h │ │ └── oseama.c │ ├── otrx │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── otrx.c │ ├── px5g-standalone │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── library │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── timing.c │ │ └── x509write.c │ │ ├── polarssl │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── bn_mul.h │ │ ├── config.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── timing.h │ │ └── x509.h │ │ └── px5g.c │ ├── px5g │ ├── Makefile │ └── px5g.c │ ├── spidev_test │ └── Makefile │ ├── ubi-utils │ ├── Makefile │ └── patches │ │ ├── 010-fix-rpmatch.patch │ │ ├── 100-fix_includes.patch │ │ ├── 110-gcc5-fix.patch │ │ └── 130-lzma_jffs2.patch │ ├── 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 │ ├── 001-automake-compat.patch │ ├── 100-no_aio.patch │ ├── 110-uclibc_no_ustat.patch │ ├── 120-portability.patch │ ├── 130-uclibc_no_xattr.patch │ ├── 140-no_po.patch │ ├── 150-include_fixes.patch │ └── 160-format-security.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 ├── flashing │ ├── adam2flash-502T.pl │ ├── adam2flash-fritzbox.pl │ ├── adam2flash.pl │ ├── adsl2mue_flash.pl │ ├── flash.sh │ └── jungo-image.py ├── freebsd.sh ├── gen-dependencies.sh ├── get_source_date_epoch.sh ├── getver.sh ├── ipkg-build ├── ipkg-make-index.sh ├── kconfig.pl ├── make-ipkg-dir.sh ├── md5sum ├── metadata.pl ├── metadata.pm ├── mkits.sh ├── om-fwupgradecfg-gen.sh ├── openbsd.sh ├── pad_image ├── patch-kernel.sh ├── patch-specs.sh ├── portable_date.sh ├── redboot-script.pl ├── relink-lib.sh ├── remote-gdb ├── rstrip.sh ├── slugimage.pl ├── srecimage.pl ├── strip-kmod.sh ├── symlink-tree.sh ├── sysupgrade-nand.sh ├── timestamp.pl ├── ubinize-image.sh └── update-package-md5sum ├── target ├── Config.in ├── Makefile ├── imagebuilder │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── Makefile │ │ └── repositories.conf ├── linux │ ├── Makefile │ ├── adm5120 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ ├── network │ │ │ │ │ └── system │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── adm5120.sh │ │ │ │ ├── preinit │ │ │ │ ├── 05_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 │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── button │ │ │ │ │ │ └── 00-button │ │ │ │ │ ├── firmware │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── net │ │ │ │ │ │ └── 10-ar922x-led-fix │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_network-switchX-migration │ │ │ │ │ ├── 03_network-vlan-migration │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ ├── 09_fix-seama-header │ │ │ │ │ └── 09_fix-trx-header │ │ │ ├── lib │ │ │ │ ├── ar71xx.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 03_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 │ │ │ └── sbin │ │ │ │ └── wget2nand │ │ ├── config-4.1 │ │ ├── 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-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-ap113.c │ │ │ │ │ ├── mach-ap132.c │ │ │ │ │ ├── mach-ap143.c │ │ │ │ │ ├── mach-ap147.c │ │ │ │ │ ├── mach-ap152.c │ │ │ │ │ ├── mach-ap83.c │ │ │ │ │ ├── mach-ap96.c │ │ │ │ │ ├── mach-archer-c7.c │ │ │ │ │ ├── mach-arduino-yun.c │ │ │ │ │ ├── mach-aw-nr580.c │ │ │ │ │ ├── mach-bhu-bxu2000n2-a.c │ │ │ │ │ ├── mach-bsb.c │ │ │ │ │ ├── mach-c55.c │ │ │ │ │ ├── mach-cap324.c │ │ │ │ │ ├── mach-cap4200ag.c │ │ │ │ │ ├── mach-carambola2.c │ │ │ │ │ ├── mach-cf-e316n-v2.c │ │ │ │ │ ├── mach-cpe510.c │ │ │ │ │ ├── mach-cr3000.c │ │ │ │ │ ├── mach-cr5000.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-dlan-hotspot.c │ │ │ │ │ ├── mach-dlan-pro-1200-ac.c │ │ │ │ │ ├── mach-dlan-pro-500-wp.c │ │ │ │ │ ├── mach-dr344.c │ │ │ │ │ ├── mach-dragino2.c │ │ │ │ │ ├── mach-eap300v2.c │ │ │ │ │ ├── mach-eap7660d.c │ │ │ │ │ ├── mach-el-m150.c │ │ │ │ │ ├── mach-el-mini.c │ │ │ │ │ ├── mach-epg5000.c │ │ │ │ │ ├── mach-esr1750.c │ │ │ │ │ ├── mach-esr900.c │ │ │ │ │ ├── mach-ew-dorin.c │ │ │ │ │ ├── mach-f9k1115v2.c │ │ │ │ │ ├── mach-gl-ar150.c │ │ │ │ │ ├── mach-gl-ar300.c │ │ │ │ │ ├── mach-gl-domino.c │ │ │ │ │ ├── mach-gl-inet.c │ │ │ │ │ ├── mach-gs-minibox-v1.c │ │ │ │ │ ├── mach-gs-oolite.c │ │ │ │ │ ├── mach-hiwifi-hc6361.c │ │ │ │ │ ├── mach-hornet-ub.c │ │ │ │ │ ├── mach-ja76pf.c │ │ │ │ │ ├── mach-jwap003.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-pb92.c │ │ │ │ │ ├── mach-qihoo-c301.c │ │ │ │ │ ├── mach-r6100.c │ │ │ │ │ ├── mach-rb2011.c │ │ │ │ │ ├── mach-rb4xx.c │ │ │ │ │ ├── mach-rb750.c │ │ │ │ │ ├── mach-rb91x.c │ │ │ │ │ ├── mach-rb922.c │ │ │ │ │ ├── mach-rb95x.c │ │ │ │ │ ├── mach-rbsxtlite.c │ │ │ │ │ ├── mach-rw2458n.c │ │ │ │ │ ├── mach-smart-300.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-cus249.c │ │ │ │ │ ├── mach-tl-mr11u.c │ │ │ │ │ ├── mach-tl-mr13u.c │ │ │ │ │ ├── mach-tl-mr3020.c │ │ │ │ │ ├── mach-tl-mr3x20.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-wdr6300.c │ │ │ │ │ ├── mach-tl-wdr6500-v2.c │ │ │ │ │ ├── mach-tl-wr1041n-v2.c │ │ │ │ │ ├── mach-tl-wr1043nd-v2.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-wr841n-v8.c │ │ │ │ │ ├── mach-tl-wr841n-v9.c │ │ │ │ │ ├── mach-tl-wr841n.c │ │ │ │ │ ├── mach-tl-wr941nd-v6.c │ │ │ │ │ ├── mach-tl-wr941nd-v7.c │ │ │ │ │ ├── mach-tl-wr941nd.c │ │ │ │ │ ├── mach-tube2h.c │ │ │ │ │ ├── mach-ubnt-unifiac.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-wrt160nl.c │ │ │ │ │ ├── mach-wrt400n.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-zcn-1523h.c │ │ │ │ │ ├── machtypes.h │ │ │ │ │ ├── nvram.c │ │ │ │ │ ├── nvram.h │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ ├── pci-ath9k-fixup.h │ │ │ │ │ ├── routerboot.c │ │ │ │ │ ├── routerboot.h │ │ │ │ │ ├── tplink-wmac.c │ │ │ │ │ └── tplink-wmac.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-ap83.c │ │ │ │ │ ├── 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 │ │ │ └── net │ │ │ │ └── dsa │ │ │ │ └── mv88e6063.c │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── 01-minimal.mk │ │ │ │ ├── 02-ath5k.mk │ │ │ │ ├── 8devices.mk │ │ │ │ ├── airtight.mk │ │ │ │ ├── alfa.mk │ │ │ │ ├── allnet.mk │ │ │ │ ├── antminer.mk │ │ │ │ ├── arduino.mk │ │ │ │ ├── atheros.mk │ │ │ │ ├── atlantis.mk │ │ │ │ ├── belkin.mk │ │ │ │ ├── bhu.mk │ │ │ │ ├── buffalo.mk │ │ │ │ ├── comfast.mk │ │ │ │ ├── compex.mk │ │ │ │ ├── d-link.mk │ │ │ │ ├── devolo-dlan.mk │ │ │ │ ├── dragino.mk │ │ │ │ ├── easylink.mk │ │ │ │ ├── engenius.mk │ │ │ │ ├── ew.mk │ │ │ │ ├── gainstrong.mk │ │ │ │ ├── gli.mk │ │ │ │ ├── hiwifi.mk │ │ │ │ ├── jjplus.mk │ │ │ │ ├── linksys.mk │ │ │ │ ├── meraki.mk │ │ │ │ ├── mercury.mk │ │ │ │ ├── nclink.mk │ │ │ │ ├── netgear.mk │ │ │ │ ├── omy.mk │ │ │ │ ├── onion.mk │ │ │ │ ├── openmesh.mk │ │ │ │ ├── pcs.mk │ │ │ │ ├── planex.mk │ │ │ │ ├── qihoo.mk │ │ │ │ ├── redwave.mk │ │ │ │ ├── rosewill.mk │ │ │ │ ├── senao.mk │ │ │ │ ├── sitecom.mk │ │ │ │ ├── smartelectronics.mk │ │ │ │ ├── telldus.mk │ │ │ │ ├── tp-link.mk │ │ │ │ ├── trendnet.mk │ │ │ │ ├── ubnt.mk │ │ │ │ ├── wallys.mk │ │ │ │ ├── wd.mk │ │ │ │ ├── weio.mk │ │ │ │ ├── zcomax.mk │ │ │ │ └── zyxel.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── ubinize-nbg6716.ini │ │ │ └── ubinize-wndr4300.ini │ │ ├── mikrotik │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 01-minimal.mk │ │ │ │ └── 02-ath5k.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── meraki.mk │ │ │ │ ├── netgear.mk │ │ │ │ └── zyxel.mk │ │ │ └── target.mk │ │ ├── patches-4.1 │ │ │ ├── 003-MIPS-ath79-make-bootconsole-wait-for-both-THRE-and-T.patch │ │ │ ├── 100-MIPS-ath79-Avoid-using-unitialized-reg-variable.patch │ │ │ ├── 110-export-missing-clk-functions.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 │ │ │ ├── 206-spi-ath79-make-chipselect-logic-more-flexible.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 │ │ │ ├── 422-dsa-trailer-tag-validation-fix.patch │ │ │ ├── 423-dsa-add-88e6063-driver.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ ├── 431-spi-add-various-flags.patch │ │ │ ├── 432-spi-rb4xx-spi-driver.patch │ │ │ ├── 433-spi-rb4xx-cpld-driver.patch │ │ │ ├── 434-spi-ap83_spi_controller.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-spi-bitbang-export-spi_bitbang_bufs.patch │ │ │ ├── 461-spi-add-type-field-to-spi_transfer.patch │ │ │ ├── 462-mtd-m25p80-set-spi-transfer-type.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 │ │ │ ├── 502-MIPS-ath79-export-ath79_gpio_base.patch │ │ │ ├── 503-MIPS-ath79-add-flash-acquire-release.patch │ │ │ ├── 504-MIPS-ath79-add-ath79_device_reset_get.patch │ │ │ ├── 505-MIPS-ath79-add-ath79_gpio_function_select.patch │ │ │ ├── 506-MIPS-ath79-prom-parse-redboot-args.patch │ │ │ ├── 507-MIPS-ath79-prom-add-myloader-support.patch │ │ │ ├── 508-MIPS-ath79-prom-image-command-line-hack.patch │ │ │ ├── 509-MIPS-ath79-process-board-kernel-option.patch │ │ │ ├── 510-MIPS-ath79-init-gpio-pin-of-wmac-device.patch │ │ │ ├── 520-MIPS-ath79-enable-UART-function.patch │ │ │ ├── 521-MIPS-ath79-enable-UART-for-early_serial.patch │ │ │ ├── 522-MIPS-ath79-add-ath79_wmac_register_simple-helper.patch │ │ │ ├── 523-MIPS-ath79-OTP-support.patch │ │ │ ├── 524-MIPS-ath79-add-ath79_wmac_disable_25ghz-helpers.patch │ │ │ ├── 525-MIPS-ath79-enable-qca-usb-quirks.patch │ │ │ ├── 601-MIPS-ath79-add-more-register-defines.patch │ │ │ ├── 602-MIPS-ath79-add-openwrt-stuff.patch │ │ │ ├── 603-MIPS-ath79-ap121-fixes.patch │ │ │ ├── 604-MIPS-ath79-ap81-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 │ │ │ ├── 610-MIPS-ath79-UBNT-add-airGateway-pro-support.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 │ │ │ ├── 615-MIPS-ath79-ap83-remove-mtd-partitions.patch │ │ │ ├── 620-MIPS-ath79-add-support-for-QCA953x-SoC.patch │ │ │ ├── 621-MIPS-ath79-add-support-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 │ │ │ ├── 633-MIPS-ath79-add-gpio-irq-support.patch │ │ │ ├── 634-MIPS-ath79-ar724x-clock-calculation-fixes.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 │ │ │ ├── 910-unaligned_access_hacks.patch │ │ │ ├── 911-0001-ath79-add-tp-link-wmac-register-support.patch │ │ │ ├── 911-0002-ath79-reset-pci-init-order.patch │ │ │ ├── 911-0003-mtd-seama-add-c301-part-name-check.patch │ │ │ └── 911-0004-m25p80-reset-spi-addr-width.patch │ │ └── patches-4.4 │ │ │ ├── 001-revert_spi_device_tree_support.patch │ │ │ ├── 002-add_back_gpio_function_select.patch │ │ │ ├── 003-MIPS-ath79-make-bootconsole-wait-for-both-THRE-and-T.patch │ │ │ ├── 100-MIPS-ath79-Avoid-using-unitialized-reg-variable.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 │ │ │ ├── 206-spi-ath79-make-chipselect-logic-more-flexible.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 │ │ │ ├── 431-spi-add-various-flags.patch │ │ │ ├── 432-spi-rb4xx-spi-driver.patch │ │ │ ├── 433-spi-rb4xx-cpld-driver.patch │ │ │ ├── 434-spi-ap83_spi_controller.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-spi-bitbang-export-spi_bitbang_bufs.patch │ │ │ ├── 461-spi-add-type-field-to-spi_transfer.patch │ │ │ ├── 462-mtd-m25p80-set-spi-transfer-type.patch │ │ │ ├── 463-spi-ath79-add-fast-flash-read.patch │ │ │ ├── 464-spi-ath79-fix-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 │ │ │ ├── 503-MIPS-ath79-add-flash-acquire-release.patch │ │ │ ├── 504-MIPS-ath79-add-ath79_device_reset_get.patch │ │ │ ├── 505-MIPS-ath79-add-ath79_gpio_function_select.patch │ │ │ ├── 506-MIPS-ath79-prom-parse-redboot-args.patch │ │ │ ├── 507-MIPS-ath79-prom-add-myloader-support.patch │ │ │ ├── 508-MIPS-ath79-prom-image-command-line-hack.patch │ │ │ ├── 509-MIPS-ath79-process-board-kernel-option.patch │ │ │ ├── 510-MIPS-ath79-init-gpio-pin-of-wmac-device.patch │ │ │ ├── 520-MIPS-ath79-enable-UART-function.patch │ │ │ ├── 521-MIPS-ath79-enable-UART-for-early_serial.patch │ │ │ ├── 522-MIPS-ath79-add-ath79_wmac_register_simple-helper.patch │ │ │ ├── 523-MIPS-ath79-OTP-support.patch │ │ │ ├── 524-MIPS-ath79-add-ath79_wmac_disable_25ghz-helpers.patch │ │ │ ├── 525-MIPS-ath79-enable-qca-usb-quirks.patch │ │ │ ├── 601-MIPS-ath79-add-more-register-defines.patch │ │ │ ├── 602-MIPS-ath79-add-openwrt-stuff.patch │ │ │ ├── 603-MIPS-ath79-ap121-fixes.patch │ │ │ ├── 604-MIPS-ath79-ap81-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 │ │ │ ├── 610-MIPS-ath79-UBNT-add-airGateway-pro-support.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 │ │ │ ├── 615-MIPS-ath79-ap83-remove-mtd-partitions.patch │ │ │ ├── 620-MIPS-ath79-add-support-for-QCA953x-SoC.patch │ │ │ ├── 621-MIPS-ath79-add-support-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 │ │ │ ├── 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 │ │ │ └── 910-unaligned_access_hacks.patch │ ├── arc770 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── arc.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_arc.sh │ │ ├── config-4.4 │ │ ├── dts │ │ │ ├── axc001.dtsi │ │ │ ├── axs101.dts │ │ │ ├── axs10x_mb.dtsi │ │ │ ├── nsim_700.dts │ │ │ └── skeleton.dtsi │ │ ├── generic │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── 01-minimal.mk │ │ │ │ ├── 02-axs101.mk │ │ │ │ └── 03-nsim_700.mk │ │ │ └── target.mk │ │ └── image │ │ │ └── Makefile │ ├── archs38 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── arc.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_arc.sh │ │ ├── config-4.4 │ │ ├── dts │ │ │ ├── axc003_idu.dtsi │ │ │ ├── axs103_idu.dts │ │ │ ├── axs10x_mb.dtsi │ │ │ ├── nsim_hs_idu.dts │ │ │ └── skeleton.dtsi │ │ ├── generic │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── 01-minimal.mk │ │ │ │ ├── 02-axs103.mk │ │ │ │ └── 03-nsim_hs.mk │ │ │ └── target.mk │ │ └── image │ │ │ └── Makefile │ ├── arm64 │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-default │ │ └── image │ │ │ ├── Makefile │ │ │ └── boot-wrapper │ │ │ └── Makefile │ ├── at91 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── config │ │ │ │ │ ├── firewall │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ ├── at91.sh │ │ │ │ └── preinit │ │ │ │ └── 03_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 │ │ │ ├── u-boot │ │ │ │ ├── Makefile │ │ │ │ ├── patches │ │ │ │ │ ├── 100-netusg20.patch │ │ │ │ │ └── 200-clock.patch │ │ │ │ └── ubclient │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ubpar.c │ │ │ └── ubinize.cfg │ │ ├── legacy │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── atmel.mk │ │ │ │ └── calamp.mk │ │ │ └── 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 │ │ │ ├── profiles │ │ │ └── atmel.mk │ │ │ └── target.mk │ ├── ath25 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── config │ │ │ │ │ └── system │ │ │ │ └── hotplug.d │ │ │ │ │ └── button │ │ │ │ │ └── 00-button │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 15_preinit_iface_atheros │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.18 │ │ │ ├── 010-board.patch │ │ │ ├── 020-early-printk-support.patch │ │ │ ├── 030-ar2315_pci.patch │ │ │ ├── 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 │ ├── 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 │ │ │ ├── 002-openwrt_rootfs.patch │ │ │ ├── 003-au1000_eth_ioctl.patch │ │ │ ├── 004-watchdog_low_init.patch │ │ │ └── 006-codec.patch │ ├── bcm53xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_set_preinit_iface_bcm53xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.1 │ │ ├── config-4.3 │ │ ├── config-4.4 │ │ ├── files-4.1 │ │ │ └── drivers │ │ │ │ └── firmware │ │ │ │ └── broadcom │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ └── bcm47xx_nvram.c │ │ ├── files │ │ │ └── drivers │ │ │ │ ├── firmware │ │ │ │ └── broadcom │ │ │ │ │ └── bcm47xx_sprom.c │ │ │ │ └── mtd │ │ │ │ └── spi-nor │ │ │ │ └── bcm53xxspiflash.c │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-4.1 │ │ │ ├── 020-ARM-BCM5310X-activate-erratas-needed-for-SoC.patch │ │ │ ├── 030-0001-PCI-iproc-Allow-override-of-device-tree-IRQ-mapping-.patch │ │ │ ├── 030-0002-PCI-iproc-Add-BCMA-PCIe-driver.patch │ │ │ ├── 031-0001-PCI-iproc-Directly-add-PCI-resources.patch │ │ │ ├── 031-0002-PCI-iproc-Free-resource-list-after-registration.patch │ │ │ ├── 032-PCI-iproc-Delete-unnecessary-checks-before-phy-calls.patch │ │ │ ├── 033-0001-PCI-iproc-enable-arm64-support-for-iProc-PCIe.patch │ │ │ ├── 033-0002-PCI-iproc-Fix-ARM64-dependency-in-Kconfig.patch │ │ │ ├── 034-PCI-iproc-Fix-BCMA-dependency-in-Kconfig.patch │ │ │ ├── 035-PCI-iproc-Allow-BCMA-bus-driver-to-be-built-as-modul.patch │ │ │ ├── 036-0001-PCI-iproc-Fix-code-comment-to-match-code.patch │ │ │ ├── 036-0002-PCI-iproc-Remove-unused-struct-iproc_pcie.irqs.patch │ │ │ ├── 036-0003-PCI-iproc-Call-pci_fixup_irqs-for-ARM64-as-well-as-A.patch │ │ │ ├── 036-0004-PCI-iproc-Fix-PCIe-reset-logic.patch │ │ │ ├── 036-0005-PCI-iproc-Improve-link-detection-logic.patch │ │ │ ├── 036-0006-PCI-iproc-Update-PCIe-device-tree-bindings.patch │ │ │ ├── 036-0007-PCI-iproc-Add-outbound-mapping-support.patch │ │ │ ├── 037-PCI-iproc-Fix-header-comment-Corporation-misspelling.patch │ │ │ ├── 038-PCI-iproc-Hide-CONFIG_PCIE_IPROC.patch │ │ │ ├── 039-PCI-iproc-Do-not-use-0x-in-front-of-pap.patch │ │ │ ├── 040-0001-PCI-iproc-Update-iProc-PCIe-device-tree-binding.patch │ │ │ ├── 040-0002-PCI-iproc-Add-PAXC-interface-support.patch │ │ │ ├── 040-0003-PCI-iproc-Add-iProc-PCIe-MSI-device-tree-binding.patch │ │ │ ├── 040-0004-PCI-iproc-Add-iProc-PCIe-MSI-support.patch │ │ │ ├── 041-PCI-iproc-Allow-multiple-devices-except-on-PAXC.patch │ │ │ ├── 058-ARM-BCM5301X-Add-USB-LED-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 059-ARM-BCM5301X-Add-DT-for-Buffalo-WXR-1900DHP.patch │ │ │ ├── 060-ARM-BCM5301X-Add-DT-for-SmartRG-SR400ac.patch │ │ │ ├── 061-ARM-BCM5301X-Add-DT-for-Asus-RT-AC68U.patch │ │ │ ├── 062-ARM-BCM5301X-Add-DT-for-Asus-RT-AC56U.patch │ │ │ ├── 063-ARM-BCM5301X-Ignore-another-BCM4709-specific-fault-c.patch │ │ │ ├── 064-ARM-BCM5301X-add-NAND-flash-chip-description.patch │ │ │ ├── 065-ARM-BCM5301X-add-IRQ-numbers-for-PCIe-controller.patch │ │ │ ├── 066-ARM-BCM5301X-Add-DT-for-Asus-RT-AC87U.patch │ │ │ ├── 067-ARM-BCM5301X-add-NAND-flash-chip-description-for-Asu.patch │ │ │ ├── 070-ARM-l2c-restore-the-behaviour-documented-above-l2c_e.patch │ │ │ ├── 071-ARM-l2c-write-auxiliary-control-register-first.patch │ │ │ ├── 072-ARM-l2c-clean-up-l2c_configure.patch │ │ │ ├── 073-ARM-l2c-only-unlock-caches-if-NS_LOCKDOWN-bit-is-set.patch │ │ │ ├── 074-ARM-l2c-avoid-passing-auxiliary-control-register-thr.patch │ │ │ ├── 075-ARM-8391-1-l2c-add-options-to-overwrite-prefetching-.patch │ │ │ ├── 077-ARM-l2c-Add-support-for-the-arm-shared-override-prop.patch │ │ │ ├── 079-ARM-BCM5301X-activate-some-additional-options-in-pl3.patch │ │ │ ├── 080-ARM-BCM5301X-Enable-UART0-on-tested-devices.patch │ │ │ ├── 081-ARM-BCM5301X-Add-profiling-support.patch │ │ │ ├── 082-ARM-BCM5301X-Add-DT-for-Netgear-R7000.patch │ │ │ ├── 083-ARM-dts-bcm5301x-Add-BCM-SVK-DT-files.patch │ │ │ ├── 090-mtd-nand-add-common-DT-init-code.patch │ │ │ ├── 092-Add-Broadcom-STB-NAND.patch │ │ │ ├── 101-use-part-parser.patch │ │ │ ├── 110-firmware-backport-NVRAM-driver.patch │ │ │ ├── 130-dt-bindings-add-SMP-enable-method-for-Broadcom-NSP.patch │ │ │ ├── 131-ARM-BCM-Clean-up-SMP-support-for-Broadcom-Kona.patch │ │ │ ├── 133-ARM-BCM-Add-SMP-support-for-Broadcom-NSP.patch │ │ │ ├── 134-ARM-BCM-Add-SMP-support-for-Broadcom-4708.patch │ │ │ ├── 170-ARM-BCM5301X-Add-missing-Netgear-R8000-LEDs.patch │ │ │ ├── 180-USB-bcma-remove-chip-id-check.patch │ │ │ ├── 181-USB-bcma-replace-numbers-with-constants.patch │ │ │ ├── 182-USB-bcma-use-devm_kzalloc.patch │ │ │ ├── 183-USB-bcma-fix-error-handling-in-bcma_hcd_create_pdev.patch │ │ │ ├── 184-USB-bcma-add-bcm53xx-support.patch │ │ │ ├── 185-USB-bcma-add-support-for-controlling-bus-power-throu.patch │ │ │ ├── 186-USB-bcma-switch-to-GPIO-descriptor-for-power-control.patch │ │ │ ├── 190-usb-xhci-plat-fix-adding-usb3-lpm-capable-quirk.patch │ │ │ ├── 191-usb-xhci-add-Broadcom-specific-fake-doorbell.patch │ │ │ ├── 195-USB-bcma-make-helper-creating-platform-dev-more-gene.patch │ │ │ ├── 196-USB-bcma-use-separated-function-for-USB-2.0-initiali.patch │ │ │ ├── 197-USB-bcma-add-USB-3.0-support.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-for-decompression.patch │ │ │ ├── 305-ARM-BCM5301X-Add-DT-for-Linksys-EA6300-V1.patch │ │ │ ├── 320-ARM-BCM5301X-Add-Buffalo-WXR-1900DHP-clock-and-USB-p.patch │ │ │ ├── 321-ARM-BCM5301X-Set-vcc-gpio-for-USB-controllers.patch │ │ │ ├── 330-ARM-BCM5310X-Enable-earlyprintk-on-tested-devices.patch │ │ │ ├── 331-ARM-BCM5301X-Specify-RAM-on-devices-by-including-HIG.patch │ │ │ ├── 332-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 351-ARM-BCM5301X-Enable-ChipCommon-UART-on-untested-devi.patch │ │ │ ├── 404-mtd-bcm53xxspiflash-new-driver-for-SPI-flahes-on-Bro.patch │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ ├── 700-bgmac-add-support-for-the-3rd-bus-core-device.patch │ │ │ ├── 710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch │ │ │ ├── 810-USB-bcma-use-simpler-devm_gpiod_get.patch │ │ │ ├── 901-mtd-bcm47xxpart-workaround-for-Asus-RT-AC87U-asus-pa.patch │ │ │ └── 902-mtd-bcm47xxpart-print-buffer-used-for-determining-pa.patch │ │ ├── patches-4.3 │ │ │ ├── 020-ARM-BCM5310X-activate-erratas-needed-for-SoC.patch │ │ │ ├── 044-clk-cygnus-Convert-all-macros-to-all-caps.patch │ │ │ ├── 045-clk-iproc-Add-PWRCTRL-support.patch │ │ │ ├── 046-clk-nsp-add-clock-support-for-Broadcom-Northstar-Plu.patch │ │ │ ├── 047-clk-iproc-Add-PLL-base-write-function.patch │ │ │ ├── 048-clk-iproc-Split-off-dig_filter.patch │ │ │ ├── 049-clk-iproc-Separate-status-and-control-variables.patch │ │ │ ├── 050-ARM-dts-enable-clock-support-for-BCM5301X.patch │ │ │ ├── 067-ARM-BCM5301X-add-NAND-flash-chip-description-for-Asu.patch │ │ │ ├── 082-ARM-BCM5301X-Add-DT-for-Netgear-R7000.patch │ │ │ ├── 083-ARM-dts-bcm5301x-Add-BCM-SVK-DT-files.patch │ │ │ ├── 101-use-part-parser.patch │ │ │ ├── 130-dt-bindings-add-SMP-enable-method-for-Broadcom-NSP.patch │ │ │ ├── 131-ARM-BCM-Clean-up-SMP-support-for-Broadcom-Kona.patch │ │ │ ├── 133-ARM-BCM-Add-SMP-support-for-Broadcom-NSP.patch │ │ │ ├── 134-ARM-BCM-Add-SMP-support-for-Broadcom-4708.patch │ │ │ ├── 140-PCI-iproc-Fix-code-comment-to-match-code.patch │ │ │ ├── 141-PCI-iproc-Remove-unused-struct-iproc_pcie.irqs.patch │ │ │ ├── 142-PCI-iproc-Call-pci_fixup_irqs-for-ARM64-as-well-as-A.patch │ │ │ ├── 143-PCI-iproc-Fix-PCIe-reset-logic.patch │ │ │ ├── 144-PCI-iproc-Improve-link-detection-logic.patch │ │ │ ├── 145-PCI-iproc-Update-PCIe-device-tree-bindings.patch │ │ │ ├── 146-PCI-iproc-Add-outbound-mapping-support.patch │ │ │ ├── 147-PCI-iproc-Fix-header-comment-Corporation-misspelling.patch │ │ │ ├── 150-PCI-iproc-Update-iProc-PCIe-device-tree-binding.patch │ │ │ ├── 151-PCI-iproc-Add-PAXC-interface-support.patch │ │ │ ├── 152-PCI-iproc-Add-iProc-PCIe-MSI-device-tree-binding.patch │ │ │ ├── 153-PCI-iproc-Add-iProc-PCIe-MSI-support.patch │ │ │ ├── 154-PCI-iproc-Allow-multiple-devices-except-on-PAXC.patch │ │ │ ├── 170-ARM-BCM5301X-Add-missing-Netgear-R8000-LEDs.patch │ │ │ ├── 186-USB-bcma-switch-to-GPIO-descriptor-for-power-control.patch │ │ │ ├── 190-usb-xhci-plat-fix-adding-usb3-lpm-capable-quirk.patch │ │ │ ├── 191-usb-xhci-add-Broadcom-specific-fake-doorbell.patch │ │ │ ├── 195-USB-bcma-make-helper-creating-platform-dev-more-gene.patch │ │ │ ├── 196-USB-bcma-use-separated-function-for-USB-2.0-initiali.patch │ │ │ ├── 197-USB-bcma-add-USB-3.0-support.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-for-decompression.patch │ │ │ ├── 301-ARM-BCM5301X-Add-SPROM.patch │ │ │ ├── 305-ARM-BCM5301X-Add-DT-for-Linksys-EA6300-V1.patch │ │ │ ├── 320-ARM-BCM5301X-Add-Buffalo-WXR-1900DHP-clock-and-USB-p.patch │ │ │ ├── 321-ARM-BCM5301X-Set-vcc-gpio-for-USB-controllers.patch │ │ │ ├── 330-ARM-BCM5310X-Enable-earlyprintk-on-tested-devices.patch │ │ │ ├── 331-ARM-BCM5301X-Specify-RAM-on-devices-by-including-HIG.patch │ │ │ ├── 332-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 351-ARM-BCM5301X-Enable-ChipCommon-UART-on-untested-devi.patch │ │ │ ├── 404-mtd-bcm53xxspiflash-new-driver-for-SPI-flahes-on-Bro.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-workaround-for-Asus-RT-AC87U-asus-pa.patch │ │ ├── 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-ARM-BCM5301X-Add-DT-entry-for-SPI-controller-and-NOR.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 │ │ │ ├── 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 │ │ │ ├── 101-use-part-parser.patch │ │ │ ├── 112-bcm53xx-sprom-add-sprom-driver.patch │ │ │ ├── 130-ARM-BCM5301X-Enable-SPI-NOR-on-dual-flash-devices.patch │ │ │ ├── 140-mtd-brcmnand-set-initial-ECC-params-based-on-info-fr.patch │ │ │ ├── 190-usb-xhci-plat-fix-adding-usb3-lpm-capable-quirk.patch │ │ │ ├── 191-usb-xhci-add-Broadcom-specific-fake-doorbell.patch │ │ │ ├── 197-USB-bcma-add-USB-3.0-support.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-for-decompression.patch │ │ │ ├── 301-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ ├── 305-ARM-BCM5301X-Add-DT-for-Linksys-EA6300-V1.patch │ │ │ ├── 306-ARM-BCM5301X-Add-DT-for-Netgear-R8500.patch │ │ │ ├── 331-ARM-BCM5301X-Specify-RAM-on-devices-by-including-HIG.patch │ │ │ ├── 332-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 351-ARM-BCM5301X-Enable-ChipCommon-UART-on-untested-devi.patch │ │ │ ├── 360-ARM-BCM5301X-Fix-NAND-flash-parameters-for-D-Link-DI.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 │ │ │ ├── 800-PCI-iproc-Ignore-ARM-core-aborts-when-running-on-bcm.patch │ │ │ ├── 810-USB-bcma-use-simpler-devm_gpiod_get.patch │ │ │ ├── 811-USB-bcma-improve-USB-2.0-PHY-support-for-BCM4709-and.patch │ │ │ ├── 820-spi-bcm53xx-let-DT-specify-SPI-device-s-instead-hard.patch │ │ │ └── 901-mtd-bcm47xxpart-workaround-for-Asus-RT-AC87U-asus-pa.patch │ │ └── profiles │ │ │ └── 100-Generic.mk │ ├── brcm2708 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── brcm2708.sh │ │ │ │ ├── preinit │ │ │ │ ├── 03_preinit_do_brcm2708.sh │ │ │ │ ├── 05_set_preinit_iface_brcm2708 │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── bcm2708 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ └── RaspberryPi.mk │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ └── RaspberryPi2.mk │ │ │ └── target.mk │ │ ├── bcm2710 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ └── RaspberryPi3.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ └── patches-4.4 │ │ │ ├── 0001-smsx95xx-fix-crimes-against-truesize.patch │ │ │ ├── 0002-smsc95xx-Disable-turbo-mode-by-default.patch │ │ │ ├── 0003-vmstat-Workaround-for-issue-where-dirty-page-count-g.patch │ │ │ ├── 0004-BCM2835_DT-Fix-I2S-register-map.patch │ │ │ ├── 0005-irq-bcm2836-Prevent-spurious-interrupts-and-trap-the.patch │ │ │ ├── 0006-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 0007-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 0008-serial-8250-Don-t-crash-when-nr_uarts-is-0.patch │ │ │ ├── 0009-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 0010-pinctrl-bcm2835-Fix-interrupt-handling-for-GPIOs-28-.patch │ │ │ ├── 0011-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch │ │ │ ├── 0012-spi-bcm2835-Support-pin-groups-other-than-7-11.patch │ │ │ ├── 0013-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 0014-bcm2835-i2s-get-base-address-for-DMA-from-devicetree.patch │ │ │ ├── 0015-bcm2835-i2s-add-24bit-support-update-bclk_ratio-to-m.patch │ │ │ ├── 0016-bcm2835-i2s-setup-clock-only-if-CPU-is-clock-master.patch │ │ │ ├── 0017-bcm2835-i2s-Eliminate-debugfs-directory-error.patch │ │ │ ├── 0018-bcm2835-i2s-Register-PCM-device.patch │ │ │ ├── 0019-bcm2835-i2s-Enable-MMAP-support-via-a-DT-property.patch │ │ │ ├── 0020-dmaengine-bcm2835-Add-slave-dma-support.patch │ │ │ ├── 0021-dmaengine-bcm2835-set-residue_granularity-field.patch │ │ │ ├── 0022-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 0023-bcm2835-dma-Fix-dreq-not-set-for-slave-transfers.patch │ │ │ ├── 0024-bcm2835-dma-Limit-cyclic-transfers-on-lite-channels-.patch │ │ │ ├── 0025-bcm2835-Add-support-for-uart1.patch │ │ │ ├── 0026-firmware-bcm2835-Add-missing-property-tags.patch │ │ │ ├── 0027-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 0028-squash-include-ARCH_BCM2708-ARCH_BCM2709.patch │ │ │ ├── 0029-Add-dwc_otg-driver.patch │ │ │ ├── 0030-bcm2708-framebuffer-driver.patch │ │ │ ├── 0031-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 0032-Add-blk_pos-parameter-to-mmc-multi_io_quirk-callback.patch │ │ │ ├── 0033-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 0034-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 0035-cma-Add-vc_cma-driver-to-enable-use-of-CMA.patch │ │ │ ├── 0036-bcm2708-alsa-sound-driver.patch │ │ │ ├── 0037-bcm2708-vchiq-driver.patch │ │ │ ├── 0038-vc_mem-Add-vc_mem-driver.patch │ │ │ ├── 0039-vcsm-VideoCore-shared-memory-service-for-BCM2835.patch │ │ │ ├── 0040-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 0041-Add-SMI-driver.patch │ │ │ ├── 0042-Add-SMI-NAND-driver.patch │ │ │ ├── 0043-lirc-added-support-for-RaspberryPi-GPIO.patch │ │ │ ├── 0044-Add-cpufreq-driver.patch │ │ │ ├── 0045-Added-hwmon-thermal-driver-for-reporting-core-temper.patch │ │ │ ├── 0046-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 0047-char-broadcom-Add-vcio-module.patch │ │ │ ├── 0048-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 0049-bcm2835-add-v4l2-camera-device.patch │ │ │ ├── 0050-scripts-Add-mkknlimg-and-knlinfo-scripts-from-tools-.patch │ │ │ ├── 0051-fdt-Add-support-for-the-CONFIG_CMDLINE_EXTEND-option.patch │ │ │ ├── 0052-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 0053-bcm2835-Match-with-BCM2708-Device-Trees.patch │ │ │ ├── 0054-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 0058-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 0059-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 0060-enabling-the-realtime-clock-1-wire-chip-DS1307-and-1.patch │ │ │ ├── 0061-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 0062-config-Enable-CONFIG_MEMCG-but-leave-it-disabled-due.patch │ │ │ ├── 0063-ASoC-Add-support-for-PCM5102A-codec.patch │ │ │ ├── 0064-ASoC-Add-support-for-HifiBerry-DAC.patch │ │ │ ├── 0065-ASoC-Add-support-for-Rpi-DAC.patch │ │ │ ├── 0066-ASoC-wm8804-Implement-MCLK-configuration-options-add.patch │ │ │ ├── 0067-ASoC-BCM-Add-support-for-HiFiBerry-Digi.-Driver-is-b.patch │ │ │ ├── 0068-ASoC-wm8804-Set-idle_bias_off-to-false-Idle-bias-has.patch │ │ │ ├── 0069-Add-IQaudIO-Sound-Card-support-for-Raspberry-Pi.patch │ │ │ ├── 0070-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 0071-Added-support-for-HiFiBerry-DAC.patch │ │ │ ├── 0072-Added-driver-for-HiFiBerry-Amp-amplifier-add-on-boar.patch │ │ │ ├── 0073-Update-ds1307-driver-for-device-tree-support.patch │ │ │ ├── 0074-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 0075-enc28j60-Add-device-tree-compatible-string-and-an-ov.patch │ │ │ ├── 0076-Add-driver-for-rpi-proto.patch │ │ │ ├── 0077-config-Add-default-configs.patch │ │ │ ├── 0078-bcm2835-bcm2835_defconfig.patch │ │ │ ├── 0079-rpi-ft5406-Add-touchscreen-driver-for-pi-LCD-display.patch │ │ │ ├── 0080-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 0081-gpio-poweroff-Allow-it-to-work-on-Raspberry-Pi.patch │ │ │ ├── 0082-spidev-Add-spidev-compatible-string-to-silence-warni.patch │ │ │ ├── 0083-scripts-dtc-Add-overlay-support.patch │ │ │ ├── 0084-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 0085-RaspiDAC3-support.patch │ │ │ ├── 0086-tpa6130a2-Add-headphone-switch-control.patch │ │ │ ├── 0087-irq-bcm2835-Fix-building-with-2708.patch │ │ │ ├── 0088-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 0089-bcm2835-dma-Fix-up-convert-to-DMA-pool.patch │ │ │ ├── 0090-scripts-Multi-platform-support-for-mkknlimg-and-knli.patch │ │ │ ├── 0091-drm-vc4-Add-suport-for-3D-rendering-using-the-V3D-en.patch │ │ │ ├── 0092-drm-vc4-Force-HDMI-to-connected.patch │ │ │ ├── 0093-drm-vc4-bo-cache-locking-fixes.patch │ │ │ ├── 0094-drm-vc4-bo-cache-locking-cleanup.patch │ │ │ ├── 0095-drm-vc4-Use-job_lock-to-protect-seqno_cb_list.patch │ │ │ ├── 0096-drm-vc4-Drop-struct_mutex-around-CL-validation.patch │ │ │ ├── 0097-drm-vc4-Drop-struct_mutex-around-CL-validation.patch │ │ │ ├── 0098-drm-vc4-Add-support-for-more-display-plane-formats.patch │ │ │ ├── 0099-drm-vc4-No-need-to-stop-the-stopped-threads.patch │ │ │ ├── 0100-drm-vc4-Remove-extra-barrier-s-aroudn-CTnCA-CTnEA-se.patch │ │ │ ├── 0101-drm-vc4-Fix-a-typo-in-a-V3D-debug-register.patch │ │ │ ├── 0102-drm-vc4-Enable-VC4-modules-and-increase-CMA-size-wit.patch │ │ │ ├── 0103-squash-fixups.patch │ │ │ ├── 0104-squash-add-missing-vc4-kms-v3d-overlay.dtb-to-makefi.patch │ │ │ ├── 0105-clk-bcm2835-Also-build-the-driver-for-downstream-ker.patch │ │ │ ├── 0106-dts-Added-overlay-for-gpio_ir_recv-driver.patch │ │ │ ├── 0107-Build-i2c_gpio-module-and-add-a-device-tree-overlay-.patch │ │ │ ├── 0108-New-overlay-for-PiScreen2r.patch │ │ │ ├── 0109-dts-Added-overlay-for-Adafruit-PiTFT-2.8-capacitive-.patch │ │ │ ├── 0110-Add-support-for-the-HiFiBerry-DAC-Pro.patch │ │ │ ├── 0111-BCM270X_DT-Add-at86rf233-overlay.patch │ │ │ ├── 0112-mm-Remove-the-PFN-busy-warning.patch │ │ │ ├── 0113-drm-Put-an-optional-field-in-the-driver-struct-for-G.patch │ │ │ ├── 0114-drm-vc4-Add-an-interface-for-capturing-the-GPU-state.patch │ │ │ ├── 0115-drm-vc4-Update-a-bunch-of-code-to-match-upstream-sub.patch │ │ │ ├── 0116-drm-Use-the-driver-s-gem_object_free-function-from-C.patch │ │ │ ├── 0117-drm-vc4-Add-support-for-MSAA-rendering.patch │ │ │ ├── 0118-drm-vc4-A-few-more-non-functional-changes-to-sync-to.patch │ │ │ ├── 0119-drm-vc4-Use-hpd-gpios-for-HDMI-GPIO-like-what-landed.patch │ │ │ ├── 0120-drm-vc4-Synchronize-validation-code-for-v2-submissio.patch │ │ │ ├── 0121-MMC-Do-not-use-mmc_debug-if-CONFIG_MMC_BCM2835-is-no.patch │ │ │ ├── 0122-Extend-clock-timeout-fix-modprobe-baudrate-parameter.patch │ │ │ ├── 0123-bcm270x_dt-Add-dwc2-and-dwc-otg-overlays.patch │ │ │ ├── 0124-BCM270X_DT-Add-the-sdtweak-overlay-for-tuning-sdhost.patch │ │ │ ├── 0125-bcm2835-mmc-Don-t-override-bus-width-capabilities-fr.patch │ │ │ ├── 0126-SDIO-overlay-add-bus_width-parameter.patch │ │ │ ├── 0127-FIXUP-BCM270X_DT-random-HWRNG-dtparam-default-is-on.patch │ │ │ ├── 0128-bcm2835-extend-allowed-range-of-channels-and-sampler.patch │ │ │ ├── 0129-bcm2835-restrict-channels-rate-to-8-960000.patch │ │ │ ├── 0130-rpi-update-vc_vchi_audioserv_defs.h.patch │ │ │ ├── 0131-bcm2835-implement-channel-map-API.patch │ │ │ ├── 0132-bcm2835-access-controls-under-the-audio-mutex.patch │ │ │ ├── 0133-bcm2835-always-use-2-4-8-channels-for-multichannel-l.patch │ │ │ ├── 0134-bcm2835-only-allow-stereo-if-analogue-jack-is-select.patch │ │ │ ├── 0135-bcm2835-interpolate-audio-delay.patch │ │ │ ├── 0136-bcm2835-sdhost-Add-workaround-for-odd-behaviour-on-s.patch │ │ │ ├── 0137-bcm2835-sdhost-Add-debug_flags-dtparam.patch │ │ │ ├── 0138-BCM270X_DT-Add-sdio_overclock-parameter-to-sdio-over.patch │ │ │ ├── 0139-rtc-ds1307-add-support-for-the-DT-property-wakeup-so.patch │ │ │ ├── 0140-dt-overlay-add-wittypi-overlay.dts.patch │ │ │ ├── 0141-BCM270X_DT-Disable-DMA-for-bcm2835-sdhost-on-Pi2.patch │ │ │ ├── 0142-FIXUP-i2c_bcm2708-Don-t-change-module-baudrate-param.patch │ │ │ ├── 0143-Allow-up-to-24dB-digital-gain-to-be-applied-when-usi.patch │ │ │ ├── 0144-Limit-PCM512x-Digital-gain-to-0dB-by-default-with-Hi.patch │ │ │ ├── 0145-BCM270X_DT-Adjust-overlay-README-formatting.patch │ │ │ ├── 0146-FIXUP-Overlay-README-Restore-spaces-deleted-in-error.patch │ │ │ ├── 0148-Revert-BCM270X_DT-Disable-DMA-for-bcm2835-sdhost-on-.patch │ │ │ ├── 0149-bcm2835-sdhost-Major-revision.patch │ │ │ ├── 0150-BCM270X_DT-Add-dtparams-for-the-SD-interface.patch │ │ │ ├── 0151-dcw_otg-trim-xfer-length-when-buffer-larger-than-all.patch │ │ │ ├── 0152-bcm2835-sdhost-Restore-ATOMIC-flag-to-PIO-sg-mapping.patch │ │ │ ├── 0153-Revert-Add-blk_pos-parameter-to-mmc-multi_io_quirk-c.patch │ │ │ ├── 0154-Updated-smsc95xx-driver-to-check-for-a-valid-MAC-add.patch │ │ │ ├── 0155-dcw_otg-Make-trimming-messages-less-noisy.patch │ │ │ ├── 0156-BCM270X_DT-at86rf233-overlay-drop-to-3MHz.patch │ │ │ ├── 0157-bcm2835-sdhost-Downgrade-log-message-status.patch │ │ │ ├── 0158-config-Enable-HCI-over-UARTs.patch │ │ │ ├── 0159-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 0160-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 0161-clk-bcm2835-Add-bindings-for-the-auxiliary-periphera.patch │ │ │ ├── 0162-clk-bcm2835-Add-a-driver-for-the-auxiliary-periphera.patch │ │ │ ├── 0163-Aux-SPI-1-2-implementation.patch │ │ │ ├── 0164-ASoC-bcm-add-missing-.owner-fields-in-sound-card-dri.patch │ │ │ ├── 0165-smsx95xx-Add-option-to-disable-the-crimes-against-tr.patch │ │ │ ├── 0166-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 0167-BCM270X_DT-Add-Pi3-support.patch │ │ │ ├── 0168-FIXUP-BCM270X_DT-Update-to-latest-Pi3-DTS.patch │ │ │ ├── 0169-DT-Add-overlays-to-configure-I2C-pins.patch │ │ │ ├── 0170-bcm2835-camera-fix-a-bug-in-computation-of-frame-tim.patch │ │ │ ├── 0171-BCM270X_DT-Add-pi3-disable-bt-overlay.patch │ │ │ ├── 0172-BCM270X_DT-Add-pi3-miniuart-bt-DT-overlay.patch │ │ │ ├── 0173-Pi3-DT-Add-dtparams-for-the-SD-interface.patch │ │ │ ├── 0174-vchiq_arm-Tweak-the-logging-output.patch │ │ │ ├── 0175-bcm2835-sdhost-Only-claim-one-DMA-channel.patch │ │ │ ├── 0176-bcm2835-mmc-Only-claim-one-DMA-channel.patch │ │ │ ├── 0177-config-rebuild-with-savedefconfig.patch │ │ │ ├── 0178-config-Add-module-for-mcp3422-ADC.patch │ │ │ ├── 0179-Pi3-DT-Add-pull-ups-on-the-UART-RX-lines.patch │ │ │ ├── 1000-mfd-rpisense-disable.patch │ │ │ └── 1001-smsc95xx-disable-hw-csum.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 │ │ │ │ ├── 05_init_interfaces_brcm │ │ │ │ └── 15_set_preinit_interface_brcm │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.1 │ │ ├── config-4.4 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ ├── 100-Broadcom-b43.mk │ │ │ │ ├── 101-Broadcom-wl.mk │ │ │ │ ├── 104-Broadcom-ath5k.mk │ │ │ │ ├── 105-Broadcom-none.mk │ │ │ │ ├── 200-Broadcom-b44-b43.mk │ │ │ │ ├── 201-Broadcom-b44-wl.mk │ │ │ │ ├── 204-Broadcom-b44-ath5k.mk │ │ │ │ ├── 205-Broadcom-b44-none.mk │ │ │ │ ├── 210-Broadcom-tg3-b43.mk │ │ │ │ ├── 211-Broadcom-tg3-wl.mk │ │ │ │ ├── 215-Broadcom-tg3-none.mk │ │ │ │ ├── 220-Broadcom-bgmac-b43.mk │ │ │ │ ├── 221-Broadcom-bgmac-wl.mk │ │ │ │ ├── 225-Broadcom-bgmac-none.mk │ │ │ │ ├── 226-Broadcom-bgmac-brcsmac.mk │ │ │ │ ├── PS-1208MFG.mk │ │ │ │ ├── WGT634U.mk │ │ │ │ ├── WL500GPv1-ATH.mk │ │ │ │ ├── WRT350Nv1.mk │ │ │ │ └── WRTSL54GS.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 │ │ │ │ ├── WGT634U.mk │ │ │ │ └── WRTSL54GS.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.1 │ │ │ ├── 031-01-MIPS-BCM47XX-Make-sure-NVRAM-buffer-ends-with-0.patch │ │ │ ├── 031-02-MIPS-BCM47XX-Simplify-function-looking-for-NVRAM-ent.patch │ │ │ ├── 031-03-MIPS-BCM47xx-Extract-all-boardflags-to-new-u32-field.patch │ │ │ ├── 031-04-MIPS-BCM47xx-Extract-info-about-et2-interface.patch │ │ │ ├── 031-05-MIPS-BCM47xx-Read-board-info-for-all-bcma-buses.patch │ │ │ ├── 031-06-MIPS-BCM77xx-Remove-legacy-__cpuinit-data-sections-t.patch │ │ │ ├── 031-07-MIPS-BCM47XX-Support-Luxul-XWR-1750-board.patch │ │ │ ├── 031-08-mips-bcm47xx-allow-retrieval-of-complete-nvram-conte.patch │ │ │ ├── 031-09-MIPS-BCM47xx-Add-helper-variable-for-storing-NVRAM-l.patch │ │ │ ├── 031-10-MIPS-BCM47xx-Don-t-select-BCMA_HOST_PCI.patch │ │ │ ├── 031-11-MIPS-BCM47xx-Simplify-handling-SPROM-revisions.patch │ │ │ ├── 032-01-MIPS-BCM47xx-Use-kmemdup-rather-than-duplicating-its.patch │ │ │ ├── 033-01-MIPS-BCM47xx-Support-on-SoC-bus-in-SPROM-reading-fun.patch │ │ │ ├── 033-02-MIPS-BCM47xx-Fix-some-WARNINGs-pointed-in-sprom.c-by.patch │ │ │ ├── 033-03-MIPS-BCM47xx-Fetch-board-info-directly-in-callback-f.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 │ │ │ ├── 900-ssb-reject-PCI-writes-setting-CardBus-bridge-resourc.patch │ │ │ ├── 920-cache-wround.patch │ │ │ ├── 940-bcm47xx-yenta.patch │ │ │ ├── 976-ssb_increase_pci_delay.patch │ │ │ └── 999-wl_exports.patch │ │ └── patches-4.4 │ │ │ ├── 159-cpu_fixes.patch │ │ │ ├── 160-kmap_coherent.patch │ │ │ ├── 209-b44-register-adm-switch.patch │ │ │ ├── 210-b44_phy_fix.patch │ │ │ ├── 280-activate_ssb_support_in_usb.patch │ │ │ ├── 300-fork_cacheflush.patch │ │ │ ├── 310-no_highpage.patch │ │ │ ├── 320-MIPS-BCM47XX-Devices-database-update-for-4.x.patch │ │ │ ├── 400-mtd-bcm47xxpart-get-nvram.patch │ │ │ ├── 610-pci_ide_fix.patch │ │ │ ├── 791-tg3-no-pci-sleep.patch │ │ │ ├── 800-bcma-add-table-of-serial-flashes-with-smaller-blocks.patch │ │ │ ├── 820-wgt634u-nvram-fix.patch │ │ │ ├── 830-huawei_e970_support.patch │ │ │ ├── 900-ssb-reject-PCI-writes-setting-CardBus-bridge-resourc.patch │ │ │ ├── 901-Revert-bcma-switch-GPIO-portions-to-use-GPIOLIB_IRQC.patch │ │ │ ├── 920-cache-wround.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 │ │ │ │ ├── 03_do_brcm63xx.sh │ │ │ │ ├── 05_failsafe_config_switch_brcm63xx │ │ │ │ ├── 05_init_interfaces_brcm63xx │ │ │ │ ├── 15_set_preinit_interface_brcm63xx │ │ │ │ └── 20_failsafe_net_echo_brcm63xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.1 │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── vr-3025u.dts │ │ │ ├── vr-3025un.dts │ │ │ ├── vr-3026e.dts │ │ │ └── wap-5813n.dts │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── README.images-bcm63xx │ │ │ └── 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.1 │ │ │ ├── 001-4.2-MIPS-Add-support-for-vmlinux.bin-appended-dtb.patch │ │ │ ├── 002-4.2-irqchip-Move-IRQCHIP_DECLARE-macro-to-include-linux-.patch │ │ │ ├── 010-4.3-01-spi-bcm63xx-hsspi-add-support-for-dual-spi-read-writ.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 │ │ │ ├── 201-SPI-Allow-specifying-the-parsers-for-SPI-flash.patch │ │ │ ├── 202-MTD-DEVICES-m25p80-use-parsers-if-provided-in-flash-.patch │ │ │ ├── 203-MTD-DEVICES-m25p80-add-support-for-limiting-reads.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 │ │ │ ├── 302-extended-platform-devices.patch │ │ │ ├── 303-spi-board-info.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 │ │ │ ├── 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 │ │ │ ├── 412-MTD-physmap-allow-passing-pp_data.patch │ │ │ ├── 413-BCM63XX-allow-providing-fixup-data-in-board-data.patch │ │ │ ├── 414-MTD-m25p80-allow-passing-pp_data.patch │ │ │ ├── 415-MIPS-BCM63XX-export-the-attached-flash-type.patch │ │ │ ├── 416-BCM63XX-add-a-fixup-for-ath9k-devices.patch │ │ │ ├── 417-MTD-bcm63xxpart-allow-passing-a-caldata-offset.patch │ │ │ ├── 418-MIPS-BCM63XX-pass-caldata-info-to-flash.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_ADB_P.DG_AV4202N.patch │ │ │ ├── 571-board_fast2704n.patch │ │ │ ├── 572-board_VR-3026e.patch │ │ │ ├── 573-board_R5010UNv2.patch │ │ │ ├── 574-board_HG622.patch │ │ │ ├── 800-wl_exports.patch │ │ │ ├── 801-ssb_export_fallback_sprom.patch │ │ │ ├── 802-rtl8367r_fix_RGMII_support.patch │ │ │ ├── 803-jffs2-work-around-unaligned-accesses-failing-on-bcm6.patch │ │ │ └── 804-bcm63xx_enet_63268_rgmii_ports.patch │ │ ├── patches-4.4 │ │ │ ├── 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 │ │ │ ├── 201-SPI-Allow-specifying-the-parsers-for-SPI-flash.patch │ │ │ ├── 202-MTD-DEVICES-m25p80-use-parsers-if-provided-in-flash-.patch │ │ │ ├── 203-MTD-DEVICES-m25p80-add-support-for-limiting-reads.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 │ │ │ ├── 302-extended-platform-devices.patch │ │ │ ├── 303-spi-board-info.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 │ │ │ ├── 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 │ │ │ ├── 412-MTD-physmap-allow-passing-pp_data.patch │ │ │ ├── 413-BCM63XX-allow-providing-fixup-data-in-board-data.patch │ │ │ ├── 414-MTD-m25p80-allow-passing-pp_data.patch │ │ │ ├── 415-MIPS-BCM63XX-export-the-attached-flash-type.patch │ │ │ ├── 416-BCM63XX-add-a-fixup-for-ath9k-devices.patch │ │ │ ├── 417-MTD-bcm63xxpart-allow-passing-a-caldata-offset.patch │ │ │ ├── 418-MIPS-BCM63XX-pass-caldata-info-to-flash.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 │ │ │ ├── 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 │ │ │ ├── 00-default.mk │ │ │ ├── 01-generic.mk │ │ │ ├── adb.mk │ │ │ ├── alcatel.mk │ │ │ ├── asmax.mk │ │ │ ├── belkin.mk │ │ │ ├── broadcom.mk │ │ │ ├── bt.mk │ │ │ ├── comtrend.mk │ │ │ ├── d-link.mk │ │ │ ├── davolink.mk │ │ │ ├── dynalink.mk │ │ │ ├── huawei.mk │ │ │ ├── inteno.mk │ │ │ ├── inventel.mk │ │ │ ├── netgear.mk │ │ │ ├── nucom.mk │ │ │ ├── pirelli.mk │ │ │ ├── sagem.mk │ │ │ ├── sfr.mk │ │ │ ├── t-com.mk │ │ │ ├── tecom.mk │ │ │ ├── telsey.mk │ │ │ ├── tp-link.mk │ │ │ ├── usrobotics.mk │ │ │ └── zyxel.mk │ │ └── smp │ │ │ ├── config-default │ │ │ └── target.mk │ ├── cns3xxx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── init.d │ │ │ │ │ └── netdev-cpu │ │ │ └── lib │ │ │ │ ├── cns3xxx.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── 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.4 │ │ │ ├── 000-cns3xxx_arch_include.patch │ │ │ ├── 010-arm_introduce-dma-fiq-irq-broadcast.patch │ │ │ ├── 020-watchdog_support.patch │ │ │ ├── 025-smp_support.patch │ │ │ ├── 030-pcie_clock.patch │ │ │ ├── 031-pcie_init.patch │ │ │ ├── 033-CNS3xxx-Fix-PCI-cns3xxx_write_config.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 │ │ │ ├── 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-3.18 │ │ ├── config-4.1 │ │ ├── files │ │ │ └── drivers │ │ │ │ ├── ata │ │ │ │ └── pata_gemini.c │ │ │ │ ├── rtc │ │ │ │ └── rtc-gemini.c │ │ │ │ └── usb │ │ │ │ └── host │ │ │ │ └── ehci-fotg2.c │ │ ├── image │ │ │ ├── ImageInfo-ib4220 │ │ │ └── Makefile │ │ ├── patches-3.18 │ │ │ ├── 002-gemini-rtc.patch │ │ │ ├── 021-reset-parameters.patch │ │ │ ├── 050-gpio-to-irq.patch │ │ │ ├── 060-cache-fa.diff │ │ │ ├── 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-register-ethernet.patch │ │ │ ├── 130-usb-ehci-fot2g.patch │ │ │ ├── 132-arm-gemini-register-usb.patch │ │ │ ├── 140-arm-gemini-add-pci-support.patch │ │ │ ├── 150-gemini-pata.patch │ │ │ └── 160-gemini-timers.patch │ │ ├── patches-4.1 │ │ │ ├── 002-gemini-rtc.patch │ │ │ ├── 050-gpio-to-irq.patch │ │ │ ├── 060-cache-fa.diff │ │ │ ├── 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-register-ethernet.patch │ │ │ ├── 130-usb-ehci-fot2g.patch │ │ │ ├── 132-arm-gemini-register-usb.patch │ │ │ ├── 140-arm-gemini-add-pci-support.patch │ │ │ ├── 150-gemini-pata.patch │ │ │ └── 160-gemini-timers.patch │ │ ├── raidsonic │ │ │ ├── config-3.18 │ │ │ ├── config-4.1 │ │ │ └── target.mk │ │ └── wiligear │ │ │ └── target.mk │ ├── generic │ │ ├── PATCHES │ │ ├── base-files │ │ │ └── init │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── config-4.3 │ │ ├── config-4.4 │ │ ├── files │ │ │ ├── Documentation │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── crypto │ │ │ │ └── ocf │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c7108 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aes-7108.c │ │ │ │ │ └── aes-7108.h │ │ │ │ │ ├── criov.c │ │ │ │ │ ├── crypto.c │ │ │ │ │ ├── cryptocteon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── cavium_crypto.c │ │ │ │ │ └── cryptocteon.c │ │ │ │ │ ├── cryptodev.c │ │ │ │ │ ├── cryptodev.h │ │ │ │ │ ├── cryptosoft.c │ │ │ │ │ ├── ep80579 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── environment.mk │ │ │ │ │ ├── icp_asym.c │ │ │ │ │ ├── icp_common.c │ │ │ │ │ ├── icp_ocf.h │ │ │ │ │ ├── icp_sym.c │ │ │ │ │ └── linux_2.6_kernel_space.mk │ │ │ │ │ ├── hifn │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hifn7751.c │ │ │ │ │ ├── hifn7751reg.h │ │ │ │ │ ├── hifn7751var.h │ │ │ │ │ ├── hifnHIPP.c │ │ │ │ │ ├── hifnHIPPreg.h │ │ │ │ │ └── hifnHIPPvar.h │ │ │ │ │ ├── ixp4xx │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ixp4xx.c │ │ │ │ │ ├── kirkwood │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cesa │ │ │ │ │ │ ├── AES │ │ │ │ │ │ │ ├── mvAes.h │ │ │ │ │ │ │ ├── mvAesAlg.c │ │ │ │ │ │ │ ├── mvAesAlg.h │ │ │ │ │ │ │ ├── mvAesApi.c │ │ │ │ │ │ │ └── mvAesBoxes.dat │ │ │ │ │ │ ├── mvCesa.c │ │ │ │ │ │ ├── mvCesa.h │ │ │ │ │ │ ├── mvCesaDebug.c │ │ │ │ │ │ ├── mvCesaRegs.h │ │ │ │ │ │ ├── mvCesaTest.c │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvLru.c │ │ │ │ │ │ ├── mvLru.h │ │ │ │ │ │ ├── mvMD5.c │ │ │ │ │ │ ├── mvMD5.h │ │ │ │ │ │ ├── mvSHA1.c │ │ │ │ │ │ └── mvSHA1.h │ │ │ │ │ ├── cesa_ocf_drv.c │ │ │ │ │ └── mvHal │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── mv802_3.h │ │ │ │ │ │ ├── mvCommon.c │ │ │ │ │ │ ├── mvCommon.h │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvDebug.c │ │ │ │ │ │ ├── mvDebug.h │ │ │ │ │ │ ├── mvDeviceId.h │ │ │ │ │ │ ├── mvHalVer.h │ │ │ │ │ │ ├── mvStack.c │ │ │ │ │ │ ├── mvStack.h │ │ │ │ │ │ └── mvTypes.h │ │ │ │ │ │ ├── dbg-trace.c │ │ │ │ │ │ ├── dbg-trace.h │ │ │ │ │ │ ├── kw_family │ │ │ │ │ │ ├── boardEnv │ │ │ │ │ │ │ ├── mvBoardEnvLib.c │ │ │ │ │ │ │ ├── mvBoardEnvLib.h │ │ │ │ │ │ │ ├── mvBoardEnvSpec.c │ │ │ │ │ │ │ └── mvBoardEnvSpec.h │ │ │ │ │ │ ├── cpu │ │ │ │ │ │ │ ├── mvCpu.c │ │ │ │ │ │ │ └── mvCpu.h │ │ │ │ │ │ ├── ctrlEnv │ │ │ │ │ │ │ ├── mvCtrlEnvAddrDec.c │ │ │ │ │ │ │ ├── mvCtrlEnvAddrDec.h │ │ │ │ │ │ │ ├── mvCtrlEnvAsm.h │ │ │ │ │ │ │ ├── mvCtrlEnvLib.c │ │ │ │ │ │ │ ├── mvCtrlEnvLib.h │ │ │ │ │ │ │ ├── mvCtrlEnvRegs.h │ │ │ │ │ │ │ ├── mvCtrlEnvSpec.h │ │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ │ ├── mvAhbToMbus.c │ │ │ │ │ │ │ │ ├── mvAhbToMbus.h │ │ │ │ │ │ │ │ ├── mvAhbToMbusRegs.h │ │ │ │ │ │ │ │ ├── mvCpuIf.c │ │ │ │ │ │ │ │ ├── mvCpuIf.h │ │ │ │ │ │ │ │ ├── mvCpuIfInit.S │ │ │ │ │ │ │ │ ├── mvCpuIfRegs.h │ │ │ │ │ │ │ │ ├── mvSysAudio.c │ │ │ │ │ │ │ │ ├── mvSysAudio.h │ │ │ │ │ │ │ │ ├── mvSysCesa.c │ │ │ │ │ │ │ │ ├── mvSysCesa.h │ │ │ │ │ │ │ │ ├── mvSysDram.c │ │ │ │ │ │ │ │ ├── mvSysDram.h │ │ │ │ │ │ │ │ ├── mvSysGbe.c │ │ │ │ │ │ │ │ ├── mvSysGbe.h │ │ │ │ │ │ │ │ ├── mvSysPex.c │ │ │ │ │ │ │ │ ├── mvSysPex.h │ │ │ │ │ │ │ │ ├── mvSysSata.c │ │ │ │ │ │ │ │ ├── mvSysSata.h │ │ │ │ │ │ │ │ ├── mvSysSdmmc.c │ │ │ │ │ │ │ │ ├── mvSysSdmmc.h │ │ │ │ │ │ │ │ ├── mvSysTdm.c │ │ │ │ │ │ │ │ ├── mvSysTdm.h │ │ │ │ │ │ │ │ ├── mvSysTs.c │ │ │ │ │ │ │ │ ├── mvSysTs.h │ │ │ │ │ │ │ │ ├── mvSysUsb.c │ │ │ │ │ │ │ │ ├── mvSysUsb.h │ │ │ │ │ │ │ │ ├── mvSysXor.c │ │ │ │ │ │ │ │ └── mvSysXor.h │ │ │ │ │ │ ├── device │ │ │ │ │ │ │ ├── mvDevice.c │ │ │ │ │ │ │ ├── mvDevice.h │ │ │ │ │ │ │ └── mvDeviceRegs.h │ │ │ │ │ │ └── mvCompVer.txt │ │ │ │ │ │ ├── linux_oss │ │ │ │ │ │ ├── mvOs.c │ │ │ │ │ │ ├── mvOs.h │ │ │ │ │ │ └── mvOsSata.h │ │ │ │ │ │ ├── mvSysHwConfig.h │ │ │ │ │ │ └── mv_hal │ │ │ │ │ │ ├── cntmr │ │ │ │ │ │ ├── mvCntmr.c │ │ │ │ │ │ ├── mvCntmr.h │ │ │ │ │ │ ├── mvCntmrRegs.h │ │ │ │ │ │ └── mvCompVer.txt │ │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── mvCpuCntrs.c │ │ │ │ │ │ ├── mvCpuCntrs.h │ │ │ │ │ │ ├── mvCpuL2Cntrs.c │ │ │ │ │ │ └── mvCpuL2Cntrs.h │ │ │ │ │ │ ├── ddr1_2 │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvDram.c │ │ │ │ │ │ ├── mvDram.h │ │ │ │ │ │ ├── mvDramIf.c │ │ │ │ │ │ ├── mvDramIf.h │ │ │ │ │ │ ├── mvDramIfBasicInit.S │ │ │ │ │ │ ├── mvDramIfConfig.S │ │ │ │ │ │ ├── mvDramIfConfig.h │ │ │ │ │ │ └── mvDramIfRegs.h │ │ │ │ │ │ ├── ddr2 │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvDramIf.c │ │ │ │ │ │ ├── mvDramIf.h │ │ │ │ │ │ ├── mvDramIfBasicInit.S │ │ │ │ │ │ ├── mvDramIfConfig.S │ │ │ │ │ │ ├── mvDramIfConfig.h │ │ │ │ │ │ ├── mvDramIfRegs.h │ │ │ │ │ │ ├── mvDramIfStaticInit.h │ │ │ │ │ │ └── spd │ │ │ │ │ │ │ ├── mvSpd.c │ │ │ │ │ │ │ └── mvSpd.h │ │ │ │ │ │ ├── eth │ │ │ │ │ │ ├── gbe │ │ │ │ │ │ │ ├── mvEth.c │ │ │ │ │ │ │ ├── mvEthDebug.c │ │ │ │ │ │ │ ├── mvEthDebug.h │ │ │ │ │ │ │ ├── mvEthGbe.h │ │ │ │ │ │ │ └── mvEthRegs.h │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ └── mvEth.h │ │ │ │ │ │ ├── gpp │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvGpp.c │ │ │ │ │ │ ├── mvGpp.h │ │ │ │ │ │ └── mvGppRegs.h │ │ │ │ │ │ ├── pci-if │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvPciIf.c │ │ │ │ │ │ ├── mvPciIf.h │ │ │ │ │ │ ├── mvPciIfRegs.h │ │ │ │ │ │ └── pci_util │ │ │ │ │ │ │ ├── mvPciUtils.c │ │ │ │ │ │ │ └── mvPciUtils.h │ │ │ │ │ │ ├── pci │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvPci.c │ │ │ │ │ │ ├── mvPci.h │ │ │ │ │ │ └── mvPciRegs.h │ │ │ │ │ │ ├── pex │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvPex.c │ │ │ │ │ │ ├── mvPex.h │ │ │ │ │ │ ├── mvPexRegs.h │ │ │ │ │ │ ├── mvVrtBrgPex.c │ │ │ │ │ │ └── mvVrtBrgPex.h │ │ │ │ │ │ ├── sflash │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvSFlash.c │ │ │ │ │ │ ├── mvSFlash.h │ │ │ │ │ │ └── mvSFlashSpec.h │ │ │ │ │ │ ├── spi │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvSpi.c │ │ │ │ │ │ ├── mvSpi.h │ │ │ │ │ │ ├── mvSpiCmnd.c │ │ │ │ │ │ ├── mvSpiCmnd.h │ │ │ │ │ │ └── mvSpiSpec.h │ │ │ │ │ │ └── twsi │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvTwsi.c │ │ │ │ │ │ ├── mvTwsi.h │ │ │ │ │ │ ├── mvTwsiEeprom.S │ │ │ │ │ │ └── mvTwsiSpec.h │ │ │ │ │ ├── ocf-bench.c │ │ │ │ │ ├── ocf-compat.h │ │ │ │ │ ├── ocfnull │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ocfnull.c │ │ │ │ │ ├── pasemi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pasemi.c │ │ │ │ │ └── pasemi_fnu.h │ │ │ │ │ ├── random.c │ │ │ │ │ ├── rndtest.c │ │ │ │ │ ├── rndtest.h │ │ │ │ │ ├── safe │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hmachack.h │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── safe.c │ │ │ │ │ ├── safereg.h │ │ │ │ │ ├── safevar.h │ │ │ │ │ ├── sha1.c │ │ │ │ │ └── sha1.h │ │ │ │ │ ├── talitos │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── talitos.c │ │ │ │ │ ├── talitos_dev.h │ │ │ │ │ └── talitos_soft.h │ │ │ │ │ ├── ubsec_ssb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bsdqueue.h │ │ │ │ │ ├── ubsec_ssb.c │ │ │ │ │ ├── ubsecreg.h │ │ │ │ │ └── ubsecvar.h │ │ │ │ │ └── uio.h │ │ │ ├── drivers │ │ │ │ ├── leds │ │ │ │ │ ├── ledtrig-morse.c │ │ │ │ │ ├── ledtrig-netdev.c │ │ │ │ │ └── ledtrig-usbdev.c │ │ │ │ ├── mtd │ │ │ │ │ ├── mtdsplit │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mtdsplit.c │ │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ │ ├── mtdsplit_brnimage.c │ │ │ │ │ │ ├── mtdsplit_eva.c │ │ │ │ │ │ ├── mtdsplit_fit.c │ │ │ │ │ │ ├── mtdsplit_lzma.c │ │ │ │ │ │ ├── mtdsplit_seama.c │ │ │ │ │ │ ├── mtdsplit_squashfs.c │ │ │ │ │ │ ├── mtdsplit_tplink.c │ │ │ │ │ │ ├── mtdsplit_trx.c │ │ │ │ │ │ └── mtdsplit_uimage.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 │ │ │ ├── fs │ │ │ │ └── yaffs2 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NOTE.openwrt │ │ │ │ │ ├── yaffs_allocator.c │ │ │ │ │ ├── yaffs_allocator.h │ │ │ │ │ ├── yaffs_attribs.c │ │ │ │ │ ├── yaffs_attribs.h │ │ │ │ │ ├── yaffs_bitmap.c │ │ │ │ │ ├── yaffs_bitmap.h │ │ │ │ │ ├── yaffs_checkptrw.c │ │ │ │ │ ├── yaffs_checkptrw.h │ │ │ │ │ ├── yaffs_ecc.c │ │ │ │ │ ├── yaffs_ecc.h │ │ │ │ │ ├── yaffs_getblockinfo.h │ │ │ │ │ ├── yaffs_guts.c │ │ │ │ │ ├── yaffs_guts.h │ │ │ │ │ ├── yaffs_linux.h │ │ │ │ │ ├── yaffs_mtdif.c │ │ │ │ │ ├── yaffs_mtdif.h │ │ │ │ │ ├── yaffs_nameval.c │ │ │ │ │ ├── yaffs_nameval.h │ │ │ │ │ ├── yaffs_nand.c │ │ │ │ │ ├── yaffs_nand.h │ │ │ │ │ ├── yaffs_packedtags1.c │ │ │ │ │ ├── yaffs_packedtags1.h │ │ │ │ │ ├── yaffs_packedtags2.c │ │ │ │ │ ├── yaffs_packedtags2.h │ │ │ │ │ ├── yaffs_summary.c │ │ │ │ │ ├── yaffs_summary.h │ │ │ │ │ ├── yaffs_tagscompat.c │ │ │ │ │ ├── yaffs_tagscompat.h │ │ │ │ │ ├── yaffs_tagsmarshall.c │ │ │ │ │ ├── yaffs_tagsmarshall.h │ │ │ │ │ ├── yaffs_trace.h │ │ │ │ │ ├── yaffs_verify.c │ │ │ │ │ ├── yaffs_verify.h │ │ │ │ │ ├── yaffs_vfs.c │ │ │ │ │ ├── yaffs_yaffs1.c │ │ │ │ │ ├── yaffs_yaffs1.h │ │ │ │ │ ├── yaffs_yaffs2.c │ │ │ │ │ ├── yaffs_yaffs2.h │ │ │ │ │ └── yportenv.h │ │ │ └── include │ │ │ │ ├── linux │ │ │ │ ├── ar8216_platform.h │ │ │ │ ├── ath5k_platform.h │ │ │ │ ├── ath9k_platform.h │ │ │ │ ├── myloader.h │ │ │ │ ├── platform_data │ │ │ │ │ ├── adm6996-gpio.h │ │ │ │ │ ├── b53.h │ │ │ │ │ └── brcmfmac-sdio.h │ │ │ │ ├── routerboot.h │ │ │ │ ├── rt2x00_platform.h │ │ │ │ ├── rtl8366.h │ │ │ │ ├── rtl8367.h │ │ │ │ └── switch.h │ │ │ │ └── uapi │ │ │ │ └── linux │ │ │ │ └── switch.h │ │ ├── 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 │ │ ├── patches-3.18 │ │ │ ├── 000-keep_initrafs_the_default.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 │ │ │ ├── 090-overlayfs-fallback-to-readonly-when-full.patch │ │ │ ├── 091-mtd-spi-nor-add-support-Spansion_S25FL164K │ │ │ ├── 092-01-spi-Check-to-see-if-the-device-is-processing-a-messa.patch │ │ │ ├── 092-02-spi-Pump-transfers-inside-calling-context-for-spi_sy.patch │ │ │ ├── 092-03-spi-Only-idle-the-message-pump-in-the-worker-kthread.patch │ │ │ ├── 095-api-fix-compatibility-of-linux-in.h-with-netinet-in..patch │ │ │ ├── 099-module_arch_freeing_init-new-hook-for-archs-before-m.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 110-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 111-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 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 │ │ │ ├── 262-compressor_kconfig_hack.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 │ │ │ ├── 309-mips_fuse_workaround.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 │ │ │ ├── 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 │ │ │ ├── 500-yaffs-Kbuild-integration.patch │ │ │ ├── 502-yaffs-fix-compat-tags-handling.patch │ │ │ ├── 503-yaffs-add-tags-9bytes-mount-option.patch │ │ │ ├── 504-yaffs-3.16-new-fops.patch │ │ │ ├── 520-squashfs_update_xz_comp_opts.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 540-crypto-xz-decompression-support.patch │ │ │ ├── 541-ubifs-xz-decompression-support.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 │ │ │ ├── 615-netfilter_add_xt_id_match.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 620-sched_esfq.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-custom_netfilter_match_modules.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 │ │ │ ├── 750-hostap_txpower.patch │ │ │ ├── 760-8139cp-fixes-from-4.3.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-igb-Fix-Null-pointer-dereference-in-igb_reset_q_vect.patch │ │ │ ├── 785-hso-support-0af0-9300.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 820-usb_add_usb_find_device_by_name.patch │ │ │ ├── 821-usb-dwc2-dualrole.patch │ │ │ ├── 830-ledtrig_morse.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 832-ledtrig_usbdev.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 │ │ │ ├── 863-gpiommc.patch │ │ │ ├── 864-gpiommc_configfs_locking.patch │ │ │ ├── 870-hifn795x_byteswap.patch │ │ │ ├── 880-gateworks_system_controller.patch │ │ │ ├── 890-8250_optional_sysrq.patch │ │ │ ├── 900-slab_maxsize.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 903-debloat_direct_io.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 │ │ │ ├── 940-ocf_kbuild_integration.patch │ │ │ ├── 941-ocf_20120127.patch │ │ │ ├── 960-decompress_unlzo_fix.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-imq.patch │ │ │ └── 999-seccomp_log.patch │ │ ├── patches-4.1 │ │ │ ├── 000-keep_initrafs_the_default.patch │ │ │ ├── 010-perf-tools-Create-config.detected-into-OUTPUT-direct.patch │ │ │ ├── 011-perf-tools-Fix-makefile-generation-under-dash.patch │ │ │ ├── 020-ssb-backport.patch │ │ │ ├── 021-ssb_sprom.patch │ │ │ ├── 022-bcma-from-4.2.patch │ │ │ ├── 023-bcma-from-4.4.patch │ │ │ ├── 024-bcma-from-4.5.patch │ │ │ ├── 025-bcma-from-4.6.patch │ │ │ ├── 030-backport_bcm47xx_nvram.patch │ │ │ ├── 040-fs-overlay-fix-stacking.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 072-13-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 072-14-bgmac-reset-all-4-GMAC-cores-on-init.patch │ │ │ ├── 080-ipv6-ip6_fragment-fix-headroom-tests-and-skb-leak.patch │ │ │ ├── 081-solos-pci-Increase-headroom-on-received-packets.patch │ │ │ ├── 090-m25p80_spi-nor_update_to_4.4rc1.patch │ │ │ ├── 095-api-fix-compatibility-of-linux-in.h-with-netinet-in..patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 103-packet_allow_empty_payload.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-Revert-mtd-spi-nor-disable-protection-for-Winbond-fl.patch │ │ │ ├── 142-mtd-spi-nor-include-mtd.h-header-for-struct-mtd_info.patch │ │ │ ├── 143-mtd-bcm47xxpart-limit-scanned-flash-area-on-BCM47XX-.patch │ │ │ ├── 144-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 │ │ │ ├── 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 │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 222-perf-build-Do-not-fail-on-missing-Build-file.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 │ │ │ ├── 262-compressor_kconfig_hack.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 │ │ │ ├── 309-mips_fuse_workaround.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 500-yaffs-Kbuild-integration.patch │ │ │ ├── 502-yaffs-fix-compat-tags-handling.patch │ │ │ ├── 503-yaffs-add-tags-9bytes-mount-option.patch │ │ │ ├── 504-yaffs-3.16-new-fops.patch │ │ │ ├── 505-yaffs-3.19-f_dentry-remove.patch │ │ │ ├── 520-squashfs_update_xz_comp_opts.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 540-crypto-xz-decompression-support.patch │ │ │ ├── 541-ubifs-xz-decompression-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 │ │ │ ├── 615-netfilter_add_xt_id_match.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 620-sched_esfq.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 │ │ │ ├── 664-codel_fix_3_12.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 │ │ │ ├── 750-hostap_txpower.patch │ │ │ ├── 760-8139cp-fixes-from-4.3.patch │ │ │ ├── 761-8139cp-fixes-from-4.4.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-igb-Fix-Null-pointer-dereference-in-igb_reset_q_vect.patch │ │ │ ├── 785-hso-support-0af0-9300.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 820-usb_add_usb_find_device_by_name.patch │ │ │ ├── 830-ledtrig_morse.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 832-ledtrig_usbdev.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 │ │ │ ├── 863-gpiommc.patch │ │ │ ├── 864-gpiommc_configfs_locking.patch │ │ │ ├── 870-hifn795x_byteswap.patch │ │ │ ├── 880-gateworks_system_controller.patch │ │ │ ├── 890-8250_optional_sysrq.patch │ │ │ ├── 900-slab_maxsize.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 903-debloat_direct_io.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 │ │ │ ├── 940-ocf_kbuild_integration.patch │ │ │ ├── 941-ocf_20120127.patch │ │ │ ├── 960-decompress_unlzo_fix.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-0001-Add-Gargoyle-IMQ-for-4.1-kernel.patch │ │ │ └── 999-0002-Add-Gargoyle-Netfilter-modules.patch │ │ └── patches-4.4 │ │ │ ├── 000-keep_initrafs_the_default.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 │ │ │ ├── 040-mtd-bcm47xxpart-limit-scanned-flash-area-on-BCM47XX-.patch │ │ │ ├── 041-mtd-bcm47xxpart-don-t-fail-because-of-bit-flips.patch │ │ │ ├── 042-mtd-bcm47xxsflash-use-ioremap_cache-instead-of-KSEG0.patch │ │ │ ├── 045-mtd-devices-m25p80-add-support-for-mmap-read-request.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 070-bgmac-add-helper-checking-for-BCM4707-BCM53018-chip-.patch │ │ │ ├── 071-bgmac-support-Ethernet-device-on-BCM47094-SoC.patch │ │ │ ├── 072-bgmac-reset-enable-Ethernet-core-before-using-it.patch │ │ │ ├── 073-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 080-spi-introduce-accelerated-read-support-for-spi-flash.patch │ │ │ ├── 081-spi-bcm53xx-add-spi_flash_read-callback-for-MMIO-bas.patch │ │ │ ├── 101-MIPS-fix-cache-flushing-for-highmem-pages.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 110-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 111-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 140-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 142-mtd-spi-nor-include-mtd.h-header-for-struct-mtd_info.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 │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 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 │ │ │ ├── 262-compressor_kconfig_hack.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 │ │ │ ├── 309-mips_fuse_workaround.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 │ │ │ ├── 340-MIPS-deactivate-gettimeofday-vdso.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 │ │ │ ├── 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 │ │ │ ├── 500-yaffs-Kbuild-integration.patch │ │ │ ├── 502-yaffs-fix-compat-tags-handling.patch │ │ │ ├── 503-yaffs-add-tags-9bytes-mount-option.patch │ │ │ ├── 504-yaffs-3.16-new-fops.patch │ │ │ ├── 505-yaffs-3.19-f_dentry-remove.patch │ │ │ ├── 520-squashfs_update_xz_comp_opts.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 540-crypto-xz-decompression-support.patch │ │ │ ├── 541-ubifs-xz-decompression-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 │ │ │ ├── 615-netfilter_add_xt_id_match.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 620-sched_esfq.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 │ │ │ ├── 664-codel_fix_3_12.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 │ │ │ ├── 750-hostap_txpower.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-igb-Fix-Null-pointer-dereference-in-igb_reset_q_vect.patch │ │ │ ├── 785-hso-support-0af0-9300.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 820-usb_add_usb_find_device_by_name.patch │ │ │ ├── 830-ledtrig_morse.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 832-ledtrig_usbdev.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 │ │ │ ├── 863-gpiommc.patch │ │ │ ├── 864-gpiommc_configfs_locking.patch │ │ │ ├── 870-hifn795x_byteswap.patch │ │ │ ├── 880-gateworks_system_controller.patch │ │ │ ├── 890-8250_optional_sysrq.patch │ │ │ ├── 900-slab_maxsize.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 903-debloat_direct_io.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 │ │ │ ├── 940-ocf_kbuild_integration.patch │ │ │ ├── 941-ocf_20120127.patch │ │ │ ├── 960-decompress_unlzo_fix.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 │ ├── imx6 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── imx6.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── files-4.4 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ ├── gw16083.c │ │ │ │ └── gw16083.h │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bootscript-ventana │ │ │ ├── ubinize-ventana.cfg │ │ │ └── ubinize.cfg │ │ ├── patches-4.4 │ │ │ ├── 035-ARM-dts-imx-ventana-set-GW54xx-PMIC-swbst-regulator-.patch │ │ │ ├── 036-ARM-dts-imx-ventana-fix-GW53xx-GW54xx-lvds-channel.patch │ │ │ ├── 037-ARM-dts-imx-ventana-Allow-HDMI-and-LVDS-to-work-simultaneously.patch │ │ │ ├── 040-ARM-dts-imx-ventana-add-pwm-nodes.patch │ │ │ ├── 041-ARM-dts-imx-ventana-add-spi-support-for-gw52xx.patch │ │ │ ├── 042-ARM-dts-imx-ventana-fix-PWM-pinmux-for-Ventana-boards.patch │ │ │ ├── 100-bootargs.patch │ │ │ ├── 202-net-igb-add-i210-i211-support-for-phy-read-write.patch │ │ │ ├── 203-net-igb-add-phy-read-write-functions-that-accept-phy.patch │ │ │ ├── 204-net-igb-register-mii_bus-for-SerDes-w-external-phy.patch │ │ │ ├── 205-phy-add-driver-for-GW16083-Ethernet-Expansion-Mezzan.patch │ │ │ ├── 206-ARM-imx-ventana-added-GW16083-to-device-tree.patch │ │ │ ├── 207-i2c-imx-add-retries-for-NAK-s-on-ventana-boards.patch │ │ │ ├── 208-sky2-allow-mac-to-come-from-dt.patch │ │ │ └── 209-ARM-imx-ventana-add-sky2-alias.patch │ │ └── profiles │ │ │ ├── 100-generic.mk │ │ │ ├── 110-wandboard.mk │ │ │ └── 120-gateworks.mk │ ├── ipq806x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── ipq806x.sh │ │ │ │ ├── preinit │ │ │ │ └── 03_preinit_do_ipq806x.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-spi-qup-Add-DMA-capabilities.patch │ │ │ ├── 002-v3-spi-qup-Fix-incorrect-block-transfers.patch │ │ │ ├── 003-spi-qup-Ensure-done-detection.patch │ │ │ ├── 011-watchdog-qcom-use-timer-devicetree-binding.patch │ │ │ ├── 012-ARM-qcom-add-description-of-KPSS-WDT-for-IPQ8064.patch │ │ │ ├── 013-ARM-msm-add-watchdog-entries-to-DT-timer-binding-doc.patch │ │ │ ├── 020-add-ap148-bootargs.patch │ │ │ ├── 021-add-ap148-partitions.patch │ │ │ ├── 022-add-db149-dts.patch │ │ │ ├── 023-ARM-dts-ipq806x-Disable-i2c-device-on-gsbi4.patch │ │ │ ├── 024-ap148-add-memory-node.patch │ │ │ ├── 030-hwspinlock-core-add-device-tree-support.patch │ │ │ ├── 031-hwspinlock-qcom-Add-support-for-Qualcomm-HW-Mutex-bl.patch │ │ │ ├── 032-hwspinlock-qcom-Correct-msb-in-regmap_field.patch │ │ │ ├── 033-ARM-qcom-add-SFPB-nodes-to-IPQ806x-dts.patch │ │ │ ├── 034-soc-qcom-Add-device-tree-binding-for-SMEM.patch │ │ │ ├── 035-soc-qcom-Add-Shared-Memory-Manager-driver.patch │ │ │ ├── 036-ARM-qcom-add-SMEM-device-node-to-IPQ806x-dts.patch │ │ │ ├── 037-mtd-add-SMEM-parser-for-QCOM-platforms.patch │ │ │ ├── 100-usb-phy-Add-Qualcomm-DWC3-HS-SS-PHY-drivers.patch │ │ │ ├── 101-ARM-qcom-add-USB-nodes-to-ipq806x-ap148.patch │ │ │ ├── 102-soc-qcom-gsbi-Add-support-for-ADM-CRCI-muxing.patch │ │ │ ├── 103-ARM-DT-ipq8064-Add-TCSR-support.patch │ │ │ ├── 110-DT-PCI-qcom-Document-PCIe-devicetree-bindings.patch │ │ │ ├── 111-PCI-qcom-Add-Qualcomm-PCIe-controller-driver.patch │ │ │ ├── 112-ARM-dts-qcom-add-pcie-nodes-to-ipq806x-platforms.patch │ │ │ ├── 113-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ ├── 114-pcie-add-ctlr-init.patch │ │ │ ├── 115-add-pcie-aux-clk-dts.patch │ │ │ ├── 120-mfd-qcom-rpm-Driver-for-the-Qualcomm-RPM.patch │ │ │ ├── 121-mfd-qcom_rpm-Add-support-for-IPQ8064.patch │ │ │ ├── 122-mfd-devicetree-bindings-Add-Qualcomm-RPM-DT-binding.patch │ │ │ ├── 123-mfd-devicetree-qcom_rpm-Document-IPQ8064-resources.patch │ │ │ ├── 124-regulator-rpm-add-support-for-RPM-controller-SMB208.patch │ │ │ ├── 125-regulator-qcom-rpm-Add-missing-state-flag-in-call-to.patch │ │ │ ├── 126-add-rpm-to-ipq8064-dts.patch │ │ │ ├── 130-clk_mux-Fix-set_parent-doing-the-wrong-thing-when-IN.patch │ │ │ ├── 131-clk-Add-__clk_mux_determine_rate_closest.patch │ │ │ ├── 132-clk-Add-clk_unregister_-divider-gate-mux-to-close-me.patch │ │ │ ├── 133-ARM-Add-Krait-L2-register-accessor-functions.patch │ │ │ ├── 134-clk-mux-Split-out-register-accessors-for-reuse.patch │ │ │ ├── 135-clk-Avoid-sending-high-rates-to-downstream-clocks-during-set_rate.patch │ │ │ ├── 136-clk-Add-safe-switch-hook.patch │ │ │ ├── 137-clk-qcom-Add-support-for-High-Frequency-PLLs-HFPLLs.patch │ │ │ ├── 138-clk-qcom-Add-HFPLL-driver.patch │ │ │ ├── 139-clk-qcom-Add-IPQ806X-s-HFPLLs.patch │ │ │ ├── 140-clk-qcom-Add-support-for-Krait-clocks.patch │ │ │ ├── 141-clk-qcom-Add-KPSS-ACC-GCC-driver.patch │ │ │ ├── 142-clk-qcom-Add-Krait-clock-controller-driver.patch │ │ │ ├── 143-cpufreq-Add-module-to-register-cpufreq-on-Krait-CPUs.patch │ │ │ ├── 144-ARM-dts-qcom-Add-necessary-DT-data-for-Krait-cpufreq.patch │ │ │ ├── 145-cpufreq-Add-a-cpufreq-krait-based-on-cpufre.patch │ │ │ ├── 150-dmaengine-Rework-dma_chan_get.patch │ │ │ ├── 151-dmaengine-Remove-the-need-to-declare-device_control.patch │ │ │ ├── 152-dmaengine-Make-channel-allocation-callbacks-optional.patch │ │ │ ├── 153-dmaengine-Introduce-a-device_config-callback.patch │ │ │ ├── 154-dmaengine-Add-device_terminate_all-callback.patch │ │ │ ├── 155-dt-bindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 156-dmaengine-Add-ADM-driver.patch │ │ │ ├── 157-ARM-DT-ipq8064-Add-ADM-device-node.patch │ │ │ ├── 160-clk-qcom-Add-EBI2-clocks-for-IPQ806x.patch │ │ │ ├── 161-mtd-nand-Create-a-BBT-flag-to-access-bad-block-markers-in-raw-mode.patch │ │ │ ├── 162-mtd-nand-Qualcomm-NAND-controller-driver.patch │ │ │ ├── 163-dt-bindings-qcom_nandc-Add-DT-bindings.patch │ │ │ ├── 164-arm-qcom-dts-Add-NAND-controller-node-for-ipq806x.patch │ │ │ ├── 165-arm-qcom-dts-Enable-NAND-node-on-IPQ8064-AP148-platform.patch │ │ │ ├── 166-arch-qcom-dts-enable-qcom-smem-on-AP148-NAND.patch │ │ │ ├── 300-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ ├── 301-ARM-qcom-add-Netgear-Nighthawk-X4-R7500-device-tree.patch │ │ │ ├── 302-mtd-qcom-smem-rename-rootfs-ubi.patch │ │ │ ├── 700-clk-qcom-Add-support-for-NSS-GMAC-clocks-and-resets.patch │ │ │ ├── 701-stmmac_update_to_4.3.patch │ │ │ ├── 707-ARM-dts-qcom-add-mdio-nodes-to-ap148-db149.patch │ │ │ ├── 708-ARM-dts-qcom-add-gmac-nodes-to-ipq806x-platforms.patch │ │ │ ├── 709-stmac-platform-add-support-for-retreiving-mac-from-m.patch │ │ │ ├── 710-stmmac-fix-ipq806x-DMA-configuration.patch │ │ │ └── 801-ARM-qcom-add-Netgear-Nighthawk-X4-D7800-device-tree.patch │ │ ├── patches-4.1 │ │ │ ├── 020-add-ap148-bootargs.patch │ │ │ ├── 021-add-ap148-partitions.patch │ │ │ ├── 022-add-db149-dts.patch │ │ │ ├── 023-ARM-dts-ipq806x-Disable-i2c-device-on-gsbi4.patch │ │ │ ├── 024-ap148-add-memory-node.patch │ │ │ ├── 030-hwspinlock-core-add-device-tree-support.patch │ │ │ ├── 031-hwspinlock-qcom-Add-support-for-Qualcomm-HW-Mutex-bl.patch │ │ │ ├── 032-hwspinlock-qcom-Correct-msb-in-regmap_field.patch │ │ │ ├── 033-ARM-qcom-add-SFPB-nodes-to-IPQ806x-dts.patch │ │ │ ├── 034-soc-qcom-Add-device-tree-binding-for-SMEM.patch │ │ │ ├── 035-soc-qcom-Add-Shared-Memory-Manager-driver.patch │ │ │ ├── 036-ARM-qcom-add-SMEM-device-node-to-IPQ806x-dts.patch │ │ │ ├── 037-mtd-add-SMEM-parser-for-QCOM-platforms.patch │ │ │ ├── 110-DT-PCI-qcom-Document-PCIe-devicetree-bindings.patch │ │ │ ├── 111-PCI-qcom-Add-Qualcomm-PCIe-controller-driver.patch │ │ │ ├── 112-ARM-dts-qcom-add-pcie-nodes-to-ipq806x-platforms.patch │ │ │ ├── 113-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ ├── 114-pcie-add-ctlr-init.patch │ │ │ ├── 115-add-pcie-aux-clk-dts.patch │ │ │ ├── 126-add-rpm-to-ipq8064-dts.patch │ │ │ ├── 133-ARM-Add-Krait-L2-register-accessor-functions.patch │ │ │ ├── 134-clk-mux-Split-out-register-accessors-for-reuse.patch │ │ │ ├── 135-clk-Avoid-sending-high-rates-to-downstream-clocks-during-set_rate.patch │ │ │ ├── 136-clk-Add-safe-switch-hook.patch │ │ │ ├── 137-clk-qcom-Add-support-for-High-Frequency-PLLs-HFPLLs.patch │ │ │ ├── 138-clk-qcom-Add-HFPLL-driver.patch │ │ │ ├── 139-clk-qcom-Add-IPQ806X-s-HFPLLs.patch │ │ │ ├── 140-clk-qcom-Add-support-for-Krait-clocks.patch │ │ │ ├── 141-clk-qcom-Add-KPSS-ACC-GCC-driver.patch │ │ │ ├── 142-clk-qcom-Add-Krait-clock-controller-driver.patch │ │ │ ├── 143-cpufreq-Add-module-to-register-cpufreq-on-Krait-CPUs.patch │ │ │ ├── 144-ARM-dts-qcom-Add-necessary-DT-data-for-Krait-cpufreq.patch │ │ │ ├── 145-cpufreq-Add-a-cpufreq-krait-based-on-cpufre.patch │ │ │ ├── 155-dt-bindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 156-dmaengine-Add-ADM-driver.patch │ │ │ ├── 157-ARM-DT-ipq8064-Add-ADM-device-node.patch │ │ │ ├── 161-mtd-nand-Create-a-BBT-flag-to-access-bad-block-markers-in-raw-mode.patch │ │ │ ├── 162-mtd-nand-Qualcomm-NAND-controller-driver.patch │ │ │ ├── 163-dt-bindings-qcom_nandc-Add-DT-bindings.patch │ │ │ ├── 164-arm-qcom-dts-Add-NAND-controller-node-for-ipq806x.patch │ │ │ ├── 165-arm-qcom-dts-Enable-NAND-node-on-IPQ8064-AP148-platform.patch │ │ │ ├── 166-arch-qcom-dts-enable-qcom-smem-on-AP148-NAND.patch │ │ │ ├── 300-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ ├── 301-ARM-qcom-add-Netgear-Nighthawk-X4-R7500-device-tree.patch │ │ │ ├── 302-mtd-qcom-smem-rename-rootfs-ubi.patch │ │ │ ├── 700-clk-qcom-Add-support-for-NSS-GMAC-clocks-and-resets.patch │ │ │ ├── 701-stmmac_update_to_4.3.patch │ │ │ ├── 707-ARM-dts-qcom-add-mdio-nodes-to-ap148-db149.patch │ │ │ ├── 708-ARM-dts-qcom-add-gmac-nodes-to-ipq806x-platforms.patch │ │ │ ├── 709-stmac-platform-add-support-for-retreiving-mac-from-m.patch │ │ │ └── 710-stmmac-fix-ipq806x-DMA-configuration.patch │ │ └── profiles │ │ │ ├── default.mk │ │ │ └── netgear.mk │ ├── ixp4xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ixp4xx.sh │ │ │ │ ├── preinit │ │ │ │ └── 05_set_ether_mac_ixp4xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── 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-3.18 │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── patches-4.1 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── lib │ │ │ │ ├── kirkwood.sh │ │ │ │ └── upgrade │ │ │ │ ├── linksys.sh │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-4.4 │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 110-ib62x0.patch │ │ │ ├── 130-iconnect.patch │ │ │ ├── 140-dockstar.patch │ │ │ ├── 160-ea4500.patch │ │ │ ├── 170-ea3500.patch │ │ │ ├── 180-goflexhome.patch │ │ │ ├── 181-goflexnet.patch │ │ │ ├── 190-nsa310s.patch │ │ │ └── 200-disable-tso.patch │ │ └── profiles │ │ │ ├── 100-generic.mk │ │ │ ├── 110-nas.mk │ │ │ ├── 115-router.mk │ │ │ └── 120-plug.mk │ ├── lantiq │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 10-rt2x00-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 03_wireless-wps │ │ │ ├── lib │ │ │ │ ├── functions │ │ │ │ │ ├── lantiq.sh │ │ │ │ │ └── lantiq_dsl.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 03_preinit_board.sh │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── dsl_notify.sh │ │ ├── config-4.4 │ │ ├── dts │ │ │ ├── ACMP252.dts │ │ │ ├── ARV4510PW.dts │ │ │ ├── ARV4518PWR01.dts │ │ │ ├── ARV4518PWR01.dtsi │ │ │ ├── ARV4518PWR01A.dts │ │ │ ├── ARV4519PW.dts │ │ │ ├── ARV4520PW.dts │ │ │ ├── ARV4525PW.dts │ │ │ ├── ARV452CQW.dts │ │ │ ├── ARV7510PW22.dts │ │ │ ├── ARV7518PW.dts │ │ │ ├── ARV7519PW.dts │ │ │ ├── ARV7519RW22.dts │ │ │ ├── ARV7525PW.dts │ │ │ ├── ARV752DPW.dts │ │ │ ├── ARV752DPW22.dts │ │ │ ├── ARV8539PW22.dts │ │ │ ├── BTHOMEHUBV2B.dts │ │ │ ├── BTHOMEHUBV3A.dts │ │ │ ├── BTHOMEHUBV5A.dts │ │ │ ├── DGN1000B.dts │ │ │ ├── DGN3500.dts │ │ │ ├── DGN3500.dtsi │ │ │ ├── DGN3500B.dts │ │ │ ├── EASY50712.dts │ │ │ ├── EASY50810.dts │ │ │ ├── EASY80920.dtsi │ │ │ ├── EASY80920NAND.dts │ │ │ ├── EASY80920NOR.dts │ │ │ ├── FRITZ3370.dts │ │ │ ├── FRITZ7320.dts │ │ │ ├── GIGASX76X.dts │ │ │ ├── GR7000.dts │ │ │ ├── H201L.dts │ │ │ ├── P2601HNFX.dts │ │ │ ├── P2812HNUF1.dts │ │ │ ├── P2812HNUF3.dts │ │ │ ├── P2812HNUFX.dtsi │ │ │ ├── TDW8970.dts │ │ │ ├── TDW8980.dts │ │ │ ├── TDW89X0.dtsi │ │ │ ├── VG3503J.dts │ │ │ ├── VG3503J.dtsi │ │ │ ├── VG3503J_V2.dts │ │ │ ├── VGV7510KW22.dtsi │ │ │ ├── VGV7510KW22BRN.dts │ │ │ ├── VGV7510KW22NOR.dts │ │ │ ├── VGV7519.dtsi │ │ │ ├── VGV7519BRN.dts │ │ │ ├── VGV7519NOR.dts │ │ │ ├── VR200v.dts │ │ │ ├── WBMR.dts │ │ │ ├── amazonse.dtsi │ │ │ ├── ar9.dtsi │ │ │ ├── danube.dtsi │ │ │ └── vr9.dtsi │ │ ├── files │ │ │ └── firmware │ │ │ │ └── lantiq │ │ │ │ ├── vr9_phy11g_a1x.bin │ │ │ │ ├── vr9_phy11g_a2x.bin │ │ │ │ ├── vr9_phy22f_a1x.bin │ │ │ │ └── vr9_phy22f_a2x.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── eva.dummy.squashfs │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ar71xx.mk │ │ │ │ │ ├── ar71xx_regs.h │ │ │ │ │ ├── board-ar71xx.c │ │ │ │ │ ├── board-lantiq.c │ │ │ │ │ ├── board-ralink.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cp0regdef.h │ │ │ │ │ ├── head.S │ │ │ │ │ ├── lantiq.mk │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── loader2.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ └── ralink.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 │ │ │ ├── 0007-MIPS-lantiq-add-basic-tffs-driver.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 │ │ │ ├── 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 │ │ │ ├── 0032-USB-fix-roothub-for-IFXHCD.patch │ │ │ ├── 0034-reset-Fix-compile-when-reset-RESET_CONTROLLER-is-not.patch │ │ │ ├── 0035-owrt-lantiq-wifi-and-ethernet-eeprom-handling.patch │ │ │ ├── 0040-USB-DWC2-enable-usb-power-gpio.patch │ │ │ ├── 0041-USB-DWC2-add-ltq-params.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 │ │ │ ├── 0100-spi-add-support-for-Lantiq-SPI-controller.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 │ │ │ ├── 0160-owrt-lantiq-multiple-flash.patch │ │ │ ├── 0300-MTD-cfi-cmdset-0001-disable-buffered-writes.patch │ │ │ └── 0400-xrx200-net-multi-phy.patch │ │ ├── xrx200 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── arv.mk │ │ │ │ ├── avm.mk │ │ │ │ ├── bt.mk │ │ │ │ ├── lantiq.mk │ │ │ │ ├── tplink.mk │ │ │ │ └── zyxel.mk │ │ │ └── target.mk │ │ └── xway │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ ├── arv.mk │ │ │ ├── audiocodes.mk │ │ │ ├── avm.mk │ │ │ ├── aztech.mk │ │ │ ├── bt.mk │ │ │ ├── buffalo.mk │ │ │ ├── gigaset.mk │ │ │ ├── lantiq.mk │ │ │ ├── netgear.mk │ │ │ ├── zte.mk │ │ │ └── zyxel.mk │ │ │ └── target.mk │ ├── 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 │ │ │ │ └── 03_preinit_do_mcs814x.sh │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ ├── boot │ │ │ │ │ └── dts │ │ │ │ │ │ ├── dlan-usb-extender.dts │ │ │ │ │ │ ├── mcs8140.dtsi │ │ │ │ │ │ └── rbt-832.dts │ │ │ │ │ └── mach-mcs814x │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.boot │ │ │ │ │ ├── board-mcs8140-dt.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── debug-macro.S │ │ │ │ │ │ ├── entry-macro.S │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irqs.h │ │ │ │ │ │ ├── mcs814x.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ └── uncompress.h │ │ │ │ │ ├── irq.c │ │ │ │ │ └── timer.c │ │ │ └── drivers │ │ │ │ ├── char │ │ │ │ └── hw_random │ │ │ │ │ └── mcs814x-rng.c │ │ │ │ ├── gpio │ │ │ │ └── gpio-mcs814x.c │ │ │ │ ├── net │ │ │ │ ├── ethernet │ │ │ │ │ └── mcs8140 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nuport_mac.c │ │ │ │ └── phy │ │ │ │ │ └── mcs814x.c │ │ │ │ ├── usb │ │ │ │ └── host │ │ │ │ │ ├── ehci-mcs814x.c │ │ │ │ │ └── ohci-mcs814x.c │ │ │ │ └── watchdog │ │ │ │ └── mcs814x_wdt.c │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-platform.patch │ │ │ ├── 003-ethernet.patch │ │ │ ├── 004-usb.patch │ │ │ ├── 005-mcs814x_rng.patch │ │ │ ├── 006-mcs814x_wdt.patch │ │ │ ├── 008-mcs814x_gpio.patch │ │ │ ├── 011-mcs814x_internal_phy.patch │ │ │ ├── 012-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 013-ohci_workarounds.patch │ │ │ └── 014-debuguart.patch │ │ └── profiles │ │ │ ├── 000-Generic.mk │ │ │ └── 100-dLAN-USB-Extender.mk │ ├── mediatek │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── mediatek.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_affinity │ │ │ │ └── 03_preinit_do_mediatek.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.1 │ │ ├── config-4.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── mt7623-NAND.dts │ │ │ │ └── mt7623-eMMC.dts │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.4 │ │ │ ├── 0001-NET-multi-phy-support.patch │ │ │ ├── 0002-soc-mediatek-Separate-scpsys-driver-common-code.patch │ │ │ ├── 0003-soc-mediatek-Init-MT8173-scpsys-driver-earlier.patch │ │ │ ├── 0004-soc-mediatek-Add-MT2701-power-dt-bindings.patch │ │ │ ├── 0005-soc-mediatek-Add-MT2701-MT7623-scpsys-driver.patch │ │ │ ├── 0006-clk-mediatek-Refine-the-makefile-to-support-multiple.patch │ │ │ ├── 0007-dt-bindings-ARM-Mediatek-Document-bindings-for-MT270.patch │ │ │ ├── 0008-clk-mediatek-Add-dt-bindings-for-MT2701-clocks.patch │ │ │ ├── 0009-clk-mediatek-Add-MT2701-clock-support.patch │ │ │ ├── 0010-reset-mediatek-mt2701-reset-controller-dt-binding-fi.patch │ │ │ ├── 0011-reset-mediatek-mt2701-reset-driver.patch │ │ │ ├── 0012-ARM-mediatek-Add-MT2701-config-options-for-mediatek-.patch │ │ │ ├── 0013-dt-bindings-mediatek-Modify-pinctrl-bindings-for-mt2.patch │ │ │ ├── 0014-pinctrl-dt-bindings-Add-pinfunc-header-file-for-mt27.patch │ │ │ ├── 0015-dt-bindings-mediatek-Modify-pinctrl-bindings-for-mt7.patch │ │ │ ├── 0016-pinctrl-dt-bindings-Add-pinctrl-file-for-mt7623.patch │ │ │ ├── 0017-clk-add-hifsys-reset.patch │ │ │ ├── 0018-dt-bindings-Add-a-binding-for-Mediatek-xHCI-host-con.patch │ │ │ ├── 0019-xhci-mediatek-support-MTK-xHCI-host-controller.patch │ │ │ ├── 0020-arm64-dts-mediatek-add-xHCI-usb-phy-for-mt8173.patch │ │ │ ├── 0021-Document-DT-Add-bindings-for-mediatek-MT7623-SoC-Pla.patch │ │ │ ├── 0022-soc-mediatek-add-compat-string-for-mt7623-to-scpsys.patch │ │ │ ├── 0023-ARM-dts-mediatek-add-MT7623-basic-support.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 │ │ │ ├── 0027-soc-mediatek-PMIC-wrap-Clear-the-vldclr-if-state-mac.patch │ │ │ ├── 0028-ARM-mediatek-add-MT7623-smp-bringup-code.patch │ │ │ ├── 0029-soc-mediatek-PMIC-wrap-clear-the-STAUPD_TRIG-bit-of-.patch │ │ │ ├── 0030-ARM-mediatek-add-mt2701-smp-bringup-code.patch │ │ │ ├── 0031-dt-bindings-ARM-Mediatek-add-MT2701-7623-string-to-t.patch │ │ │ ├── 0032-soc-mediatek-PMIC-wrap-don-t-duplicate-the-wrapper-d.patch │ │ │ ├── 0033-soc-mediatek-PMIC-wrap-add-wrapper-callbacks-for-ini.patch │ │ │ ├── 0034-soc-mediatek-PMIC-wrap-split-SoC-specific-init-into-.patch │ │ │ ├── 0035-soc-mediatek-PMIC-wrap-WRAP_INT_EN-needs-a-different.patch │ │ │ ├── 0036-soc-mediatek-PMIC-wrap-SPI_WRITE-needs-a-different-b.patch │ │ │ ├── 0037-soc-mediatek-PMIC-wrap-move-wdt_src-into-the-pmic_wr.patch │ │ │ ├── 0038-soc-mediatek-PMIC-wrap-remove-pwrap_is_mt8135-and-pw.patch │ │ │ ├── 0039-soc-mediatek-PMIC-wrap-add-a-slave-specific-struct.patch │ │ │ ├── 0040-soc-mediatek-PMIC-wrap-add-mt6323-slave-support.patch │ │ │ ├── 0041-soc-mediatek-PMIC-wrap-add-MT2701-7623-support.patch │ │ │ ├── 0042-dt-bindings-mfd-Add-bindings-for-the-MediaTek-MT6323.patch │ │ │ ├── 0043-mfd-mt6397-int_con-and-int_status-may-vary-in-locati.patch │ │ │ ├── 0044-mfd-mt6397-add-support-for-different-Slave-types.patch │ │ │ ├── 0045-mfd-mt6397-add-MT6323-support-to-MT6397-driver.patch │ │ │ ├── 0046-regulator-Add-document-for-MT6323-regulator.patch │ │ │ ├── 0047-regulator-mt6323-Add-support-for-MT6323-regulator.patch │ │ │ ├── 0048-net-next-mediatek-document-MediaTek-SoC-ethernet-bin.patch │ │ │ ├── 0049-net-next-mediatek-add-support-for-MT7623-ethernet.patch │ │ │ ├── 0050-net-next-mediatek-add-Kconfig-and-Makefile.patch │ │ │ ├── 0051-net-next-mediatek-add-an-entry-to-MAINTAINERS.patch │ │ │ ├── 0052-mtd-nand-add-an-mtd_to_nand-helper.patch │ │ │ ├── 0053-mtd-nand-add-nand_to_mtd-helper.patch │ │ │ ├── 0054-mtd-nand-add-helpers-to-access-priv.patch │ │ │ ├── 0055-mtd-nand-embed-an-mtd_info-structure-into-nand_chip.patch │ │ │ ├── 0056-mtd-add-get-set-of_node-flash_node-helpers.patch │ │ │ ├── 0057-mtd-mediatek-device-tree-docs-for-MTK-Smart-Device-G.patch │ │ │ ├── 0058-mtd-mediatek-driver-for-MTK-Smart-Device-Gen1-NAND.patch │ │ │ ├── 0059-mtd-nand-backport-fixes.patch │ │ │ ├── 0060-clk-dont-disable-unused-clocks.patch │ │ │ ├── 0061-clk-mediatek-enable-critical-clocks.patch │ │ │ ├── 0062-clk-mediatek-Export-CPU-mux-clocks-for-CPU-frequency.patch │ │ │ ├── 0063-cpufreq-mediatek-add-driver.patch │ │ │ ├── 0064-arm-mediatek-make-a7-timer-work.patch │ │ │ ├── 0065-net-mediatek-checking-for-IS_ERR-instead-of-NULL.patch │ │ │ ├── 0066-net-mediatek-unlock-on-error-in-mtk_tx_map.patch │ │ │ ├── 0067-net-mediatek-use-dma_addr_t-correctly.patch │ │ │ ├── 0068-net-mediatek-remove-incorrect-dma_mask-assignment.patch │ │ │ ├── 0069-net-mediatek-check-device_reset-return-code.patch │ │ │ ├── 0070-net-mediatek-watchdog_timeo-was-not-set.patch │ │ │ ├── 0071-net-mediatek-mtk_cal_txd_req-returns-bad-value.patch │ │ │ ├── 0072-net-mediatek-remove-superflous-reset-call.patch │ │ │ ├── 0073-net-mediatek-fix-stop-and-wakeup-of-queue.patch │ │ │ ├── 0074-net-mediatek-fix-mtk_pending_work.patch │ │ │ ├── 0075-net-mediatek-fix-TX-locking.patch │ │ │ ├── 0076-net-mediatek-move-the-pending_work-struct-to-the-dev.patch │ │ │ ├── 0077-net-mediatek-do-not-set-the-QID-field-in-the-TX-DMA-.patch │ │ │ ├── 0078-net-mediatek-update-the-IRQ-part-of-the-binding-docu.patch │ │ │ ├── 0079-net-next-mediatek-fix-BQL-support.patch │ │ │ ├── 0080-net-next-mediatek-fix-gigabit-and-flow-control-adver.patch │ │ │ ├── 0081-net-next-mediatek-add-fixed-phy-support.patch │ │ │ ├── 0082-net-next-mediatek-add-RX-delay-support.patch │ │ │ ├── 0083-net-next-mediatek-add-missing-return-code-check.patch │ │ │ ├── 0084-net-next-mediatek-fix-missing-free-of-scratch-memory.patch │ │ │ ├── 0085-net-next-mediatek-invalid-buffer-lookup-in-mtk_tx_ma.patch │ │ │ ├── 0086-net-next-mediatek-dropped-rx-packets-are-not-being-c.patch │ │ │ ├── 0087-net-next-mediatek-add-IRQ-locking.patch │ │ │ ├── 0088-net-next-mediatek-add-support-for-IRQ-grouping.patch │ │ │ ├── 0089-net-mediatek-add-gsw-mt7530-driver.patch │ │ │ ├── 0090-net-mediatek-v4.4-backports.patch │ │ │ ├── 0100-block2mtd.patch │ │ │ └── 0200-devicetree.patch │ │ └── profiles │ │ │ └── default.mk │ ├── mpc85xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ └── lib │ │ │ │ ├── mpc85xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 03_preinit_do_mpc85xx.sh │ │ │ │ └── 05_set_preinit_iface_mpc85xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── 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.4 │ │ │ ├── 001-powerpc-85xx-add-gpio-keys-to-of-match-table.patch │ │ │ ├── 100-powerpc-85xx-tl-wdr4900-v1-support.patch │ │ │ └── 200-spi-fsl-espi-preallocate-local-buffer.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── tp-link.mk │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── crontabs │ │ │ │ │ └── root │ │ │ │ ├── diag.sh │ │ │ │ ├── init.d │ │ │ │ │ └── linksys_recovery │ │ │ │ └── uci-defaults │ │ │ │ │ └── 03_wireless │ │ │ ├── lib │ │ │ │ ├── mvebu.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 06_set_iface_mac │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ └── upgrade │ │ │ │ │ ├── linksys.sh │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── fan_ctrl.sh │ │ ├── config-4.1 │ │ ├── config-4.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── armada-385-linksys-shelby.dts │ │ │ │ ├── armada-388-clearfog.dts │ │ │ │ └── armada-38x-solidrun-microsom.dtsi │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.1 │ │ │ ├── 000-new_linksys_boards.patch │ │ │ ├── 001-fix_gpio_config_on_linksys_boards.patch │ │ │ ├── 002-add_powertables.patch │ │ │ ├── 003-add_switch_nodes.patch │ │ │ ├── 010-build_new_dtbs.patch │ │ │ ├── 022-ARM-mvebu-A385-AP-Enable-the-NAND-controller.patch │ │ │ ├── 050-leds_tlc59116_document_binding.patch │ │ │ ├── 051-leds_tlc59116_add_driver.patch │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 102-revert_i2c_delay.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-solidrun_clearfog.patch │ │ │ └── 300-add_missing_labels.patch │ │ ├── patches-4.4 │ │ │ ├── 001-fix_gpio_config_on_linksys_boards.patch │ │ │ ├── 002-add_powertables.patch │ │ │ ├── 003-add_switch_nodes.patch │ │ │ ├── 010-build_new_dtbs.patch │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 102-revert_i2c_delay.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-solidrun_clearfog.patch │ │ └── profiles │ │ │ ├── 000-Default.mk │ │ │ ├── globalscale.mk │ │ │ ├── linksys.mk │ │ │ ├── marvell.mk │ │ │ ├── plathome.mk │ │ │ └── solidrun.mk │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── mxs.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_mxs.sh │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── config-4.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── imx28-duckbill.dts │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_sdcard_ext4_ext4.sh │ │ │ └── gen_sdcard_vfat_ext4.sh │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-soc-audio-support.patch │ │ │ ├── 101-soc-audio-dts.patch │ │ │ └── 120-dt-add-i2c.patch │ │ ├── patches-4.1 │ │ │ ├── 100-mxs-select-syscon.patch │ │ │ ├── 101-mxs-add-mxs_power.patch │ │ │ ├── 102-mxs-add-regulator-driver.patch │ │ │ ├── 103-dt-enable-regulator.patch │ │ │ └── 120-dt-add-i2c.patch │ │ ├── patches-4.4 │ │ │ ├── 100-mxs-select-syscon.patch │ │ │ ├── 101-mxs-add-mxs_power.patch │ │ │ ├── 102-mxs-add-regulator-driver.patch │ │ │ ├── 103-dt-enable-regulator.patch │ │ │ └── 110-crypto-mxsdcp-provide-importexport.patch │ │ └── profiles │ │ │ ├── 01-duckbill.mk │ │ │ ├── 02-olinuxino-maxi.mk │ │ │ └── 03-olinuxino-micro.mk │ ├── netlogic │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── netlogic.sh │ │ │ │ └── preinit │ │ │ │ └── 03_do_netlogic.sh │ │ ├── config-default │ │ ├── image │ │ │ └── Makefile │ │ ├── xlp │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── xlr │ │ │ ├── config-default │ │ │ └── target.mk │ ├── octeon │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 01_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 20_sysinfo │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.4 │ │ │ ├── 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 │ │ └── profiles │ │ │ └── 000-Generic.mk │ ├── omap │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── config-4.4 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-3.18 │ │ │ ├── 0334-video-da8xx-fb-adding-dt-support.patch │ │ │ ├── 0343-video-da8xx-fb-Add-API-to-register-wait-for-vsync-ca.patch │ │ │ ├── 0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch │ │ │ ├── 920-arm-dts-am335x-evmsk-add-support-for-lcd-panel.patch │ │ │ └── 950-am335x-evmsk-wilink-dts.patch │ │ ├── patches-4.1 │ │ │ ├── 0334-video-da8xx-fb-adding-dt-support.patch │ │ │ ├── 0343-video-da8xx-fb-Add-API-to-register-wait-for-vsync-ca.patch │ │ │ ├── 0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch │ │ │ ├── 920-arm-dts-am335x-evmsk-add-support-for-lcd-panel.patch │ │ │ └── 950-am335x-evmsk-wilink-dts.patch │ │ ├── patches │ │ │ └── 001-omap4_pandaboard-wlan_fix.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── beagleboard.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 │ │ ├── config-default │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── mach-orion5x │ │ │ │ ├── dt2-common.h │ │ │ │ └── dt2-setup.c │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── 03_preinit_do_oxnas.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.1 │ │ ├── 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 │ │ ├── patches-4.1 │ │ │ ├── 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 │ │ │ └── 999-libata-hacks.patch │ │ ├── patches-4.4 │ │ │ ├── 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 │ │ │ └── 999-libata-hacks.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ ├── akitio.mk │ │ │ ├── cloudengines.mk │ │ │ ├── mitrastar.mk │ │ │ └── shuttle.mk │ ├── ppc40x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ppc40x.sh │ │ │ │ └── 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 │ │ │ ├── 100-openwrt_flashmap.patch │ │ │ └── 110-openwrt_dts_cmdline.patch │ ├── ramips │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ └── usb │ │ │ │ │ │ └── 10-motion │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix-seama-header │ │ │ ├── lib │ │ │ │ ├── preinit │ │ │ │ │ ├── 03_preinit_do_ramips.sh │ │ │ │ │ ├── 04_handle_checksumming │ │ │ │ │ └── 07_set_preinit_iface_ramips │ │ │ │ ├── ramips.sh │ │ │ │ └── upgrade │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── ubnt.sh │ │ │ └── sbin │ │ │ │ └── fixup-mac-address │ │ ├── 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 │ │ │ ├── ALL5002.dts │ │ │ ├── ALL5003.dts │ │ │ ├── AR670W.dts │ │ │ ├── AR725W.dts │ │ │ ├── ASL26555-16M.dts │ │ │ ├── ASL26555-8M.dts │ │ │ ├── ATP-52B.dts │ │ │ ├── AWAPN2403.dts │ │ │ ├── AWM002-4M.dtsi │ │ │ ├── AWM002-8M.dtsi │ │ │ ├── AWM002-EVB-4M.dts │ │ │ ├── AWM002-EVB-8M.dts │ │ │ ├── AWM002.dtsi │ │ │ ├── AWM003-EVB.dts │ │ │ ├── ArcherC20i.dts │ │ │ ├── BC2.dts │ │ │ ├── BR-6425.dts │ │ │ ├── BR-6475ND.dts │ │ │ ├── BROADWAY.dts │ │ │ ├── CARAMBOLA.dts │ │ │ ├── CF-WR800N.dts │ │ │ ├── CS-QR10.dts │ │ │ ├── CY-SWR1100.dts │ │ │ ├── D105.dts │ │ │ ├── DAP-1350.dts │ │ │ ├── DB-WRT01.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-600-B2.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 │ │ │ ├── E1700.dts │ │ │ ├── ESR-9753.dts │ │ │ ├── EX2700.dts │ │ │ ├── F5D8235_V1.dts │ │ │ ├── F5D8235_V2.dts │ │ │ ├── F7C027.dts │ │ │ ├── FIREWRT.dts │ │ │ ├── FONERA20N.dts │ │ │ ├── FREESTATION5.dts │ │ │ ├── GL-MT300A.dts │ │ │ ├── GL-MT300N.dts │ │ │ ├── GL-MT750.dts │ │ │ ├── HC5661.dts │ │ │ ├── HC5761.dts │ │ │ ├── HC5861.dts │ │ │ ├── HC5XXX.dtsi │ │ │ ├── HG255D.dts │ │ │ ├── HLKRM04.dts │ │ │ ├── HPM.dts │ │ │ ├── HT-TM02.dts │ │ │ ├── HW550-3G.dts │ │ │ ├── IP2202.dts │ │ │ ├── JHR-N805R.dts │ │ │ ├── JHR-N825R.dts │ │ │ ├── JHR-N926R.dts │ │ │ ├── LINKIT7688.dts │ │ │ ├── M2M.dts │ │ │ ├── M3.dts │ │ │ ├── M4-4M.dts │ │ │ ├── M4-8M.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-W300NH2.dts │ │ │ ├── MZK-WDPR.dts │ │ │ ├── MicroWRT.dts │ │ │ ├── NA930.dts │ │ │ ├── NBG-419N.dts │ │ │ ├── NCS601W.dts │ │ │ ├── NW718.dts │ │ │ ├── OY-0001.dts │ │ │ ├── PBR-M1.dts │ │ │ ├── PSG1208.dts │ │ │ ├── PSR-680W.dts │ │ │ ├── PWH2004.dts │ │ │ ├── PX-4885-4M.dts │ │ │ ├── PX-4885-8M.dts │ │ │ ├── PX-4885.dtsi │ │ │ ├── RE6500.dts │ │ │ ├── RP-N53.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 │ │ │ ├── SL-R7205.dts │ │ │ ├── TEW-691GR.dts │ │ │ ├── TEW-692GR.dts │ │ │ ├── TINY-AC.dts │ │ │ ├── UBNT-ERX.dts │ │ │ ├── UR-326N4G.dts │ │ │ ├── UR-336UN.dts │ │ │ ├── V11STFE.dts │ │ │ ├── V22RW-2X2.dts │ │ │ ├── VOCORE-16M.dts │ │ │ ├── VOCORE-8M.dts │ │ │ ├── VOCORE.dtsi │ │ │ ├── W150M.dts │ │ │ ├── W306R_V20.dts │ │ │ ├── W502U.dts │ │ │ ├── WCR150GN.dts │ │ │ ├── WF-2881.dts │ │ │ ├── WHR-1166D.dts │ │ │ ├── WHR-300HP2.dts │ │ │ ├── WHR-600D.dts │ │ │ ├── WHR-G300N.dts │ │ │ ├── WITI.dts │ │ │ ├── WIZARD8800.dts │ │ │ ├── WIZFI630A.dts │ │ │ ├── WL-330N.dts │ │ │ ├── WL-330N3G.dts │ │ │ ├── WL-341V3.dts │ │ │ ├── WL-351.dts │ │ │ ├── WLI-TX4-AG300N.dts │ │ │ ├── WMR-300.dts │ │ │ ├── WNCE2001.dts │ │ │ ├── WNDR3700V5.dts │ │ │ ├── WR512-3GN-4M.dts │ │ │ ├── WR512-3GN-8M.dts │ │ │ ├── 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 │ │ │ ├── WZR-AGL300NH.dts │ │ │ ├── X5.dts │ │ │ ├── X8.dts │ │ │ ├── XDXRN502J.dts │ │ │ ├── Y1.dts │ │ │ ├── Y1.dtsi │ │ │ ├── Y1S.dts │ │ │ ├── YOUKU-YK1.dts │ │ │ ├── ZBT-WA05.dts │ │ │ ├── ZBT-WE826.dts │ │ │ ├── ZBT-WG2626.dts │ │ │ ├── ZBT-WG3526.dts │ │ │ ├── ZBT-WR8305RT.dts │ │ │ ├── ZTE-Q7.dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620n.dtsi │ │ │ ├── mt7621.dtsi │ │ │ ├── mt7628an.dtsi │ │ │ ├── rt2880.dtsi │ │ │ ├── rt3050.dtsi │ │ │ ├── rt3352.dtsi │ │ │ ├── rt3883.dtsi │ │ │ └── rt5350.dtsi │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── ex2700-fakeroot.uImage │ │ │ ├── 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.mk │ │ │ └── rt3883.mk │ │ ├── modules.mk │ │ ├── mt7620 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── aigale.mk │ │ │ │ ├── dovado.mk │ │ │ │ ├── elecom.mk │ │ │ │ ├── gli.mk │ │ │ │ ├── hiwifi.mk │ │ │ │ ├── linksys.mk │ │ │ │ ├── mediatek.mk │ │ │ │ ├── microduino.mk │ │ │ │ ├── netgear.mk │ │ │ │ ├── phicomm.mk │ │ │ │ ├── planex.mk │ │ │ │ ├── xiaomi.mk │ │ │ │ └── zbt.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── firefly.mk │ │ │ │ ├── linksys.mk │ │ │ │ ├── misc.mk │ │ │ │ ├── mqmaker.mk │ │ │ │ ├── netgear.mk │ │ │ │ ├── netis.mk │ │ │ │ ├── storylink.mk │ │ │ │ ├── ubnt.mk │ │ │ │ └── zbt.mk │ │ │ └── target.mk │ │ ├── mt7628 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ └── xiaomi.mk │ │ │ └── target.mk │ │ ├── mt7688 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ └── 01-mediatek.mk │ │ │ └── target.mk │ │ ├── patches-4.4 │ │ │ ├── 0001-arch-mips-ralink-add-mt7621-support.patch │ │ │ ├── 0002-MIPS-ralink-add-MT7621-defconfig.patch │ │ │ ├── 0004-MIPS-ralink-add-MT7621-pcie-driver.patch │ │ │ ├── 0005-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ ├── 0006-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ ├── 0007-MIPS-ralink-copy-the-commandline-from-the-devicetree.patch │ │ │ ├── 0009-PCI-MIPS-adds-mt7620a-pcie-driver.patch │ │ │ ├── 0010-arch-mips-ralink-add-spi1-clocks.patch │ │ │ ├── 0013-owrt-hack-fix-mt7688-cache-issue.patch │ │ │ ├── 0014-arch-mips-cleanup-cevt-rt3352.patch │ │ │ ├── 0015-arch-mips-do-not-select-illegal-access-driver-by-def.patch │ │ │ ├── 0019-arch-mips-ralink-add-mt7621-cpu-feature-overrides.patch │ │ │ ├── 0022-arch-mips-ralink-proper-vendor-id-srtring.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 │ │ │ ├── 0033-xhci-mediatek-support-MTK-xHCI-host-controller.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 │ │ │ ├── 0038-mtd-ralink-add-mt7620-nand-driver.patch │ │ │ ├── 0039-mtd-add-mt7621-nand-support.patch │ │ │ ├── 0040-nand-add-mtk-nand-hack-hook.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 │ │ │ ├── 0049-watchdog-add-MT7621-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 │ │ │ ├── 0059-correct-CPC_BASE_MASK.patch │ │ │ ├── 0063-set-CM_GCR_BASE_CMDEFTGT_MEM-according-to-datasheet.patch │ │ │ ├── 0064-add_clk_round_rate.patch │ │ │ ├── 0065-mt7688-fixes.patch │ │ │ ├── 0066-mt7621-enable-highmem.patch │ │ │ ├── 0067-enable-mt7621-xhci.patch │ │ │ ├── 0068-fix-ralink-prom.c │ │ │ ├── 0069-awake-rt305x-dwc2-controller.patch │ │ │ ├── 0103-MIPS-OWRTDTB.patch │ │ │ ├── 0104-fix_bootargs_handling.patch │ │ │ ├── 0200-linkit_bootstrap.patch │ │ │ ├── 0500-Documentation-DT-net-add-docs-for-ralink-mediatek-So.patch │ │ │ ├── 0501-net-next-mediatek-add-the-drivers-core-files.patch │ │ │ ├── 0502-net-next-mediatek-add-switch-driver-for-rt3050.patch │ │ │ ├── 0503-net-next-mediatek-add-switch-driver-for-mt7620.patch │ │ │ ├── 0504-net-next-mediatek-add-switch-driver-for-mt7621.patch │ │ │ ├── 0505-net-next-mediatek-add-support-for-rt2880.patch │ │ │ ├── 0506-net-next-mediatek-add-support-for-rt3050.patch │ │ │ ├── 0507-net-next-mediatek-add-support-for-rt3883.patch │ │ │ ├── 0508-net-next-mediatek-add-support-for-mt7620.patch │ │ │ ├── 0509-net-next-mediatek-add-support-for-mt7621.patch │ │ │ ├── 0510-net-next-mediatek-add-Kconfig-and-Makefile.patch │ │ │ ├── 0511-net-mediatek-add-support-for-the-multiphy-carrier-pa.patch │ │ │ ├── 0512-net-mediatek-add-swconfig-driver-for-esw_rt3050.patch │ │ │ ├── 0513-net-mediatek-add-swconfig-driver-for-gsw_mt762x.patch │ │ │ ├── 0514-net-mediatek-fix_esw.patch │ │ │ ├── 0601-net-mediatke-add-phy_ethtool_ioctl-support.patch │ │ │ └── 0901-spansion_nand_id_fix.patch │ │ ├── rt288x │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── asus.mk │ │ │ │ └── belkin.mk │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── allnet.mk │ │ │ │ ├── alpha.mk │ │ │ │ ├── arcwireless.mk │ │ │ │ ├── asiarf.mk │ │ │ │ ├── asus.mk │ │ │ │ ├── aximcom.mk │ │ │ │ ├── aztech.mk │ │ │ │ ├── belkin.mk │ │ │ │ ├── broadway.mk │ │ │ │ ├── d-link.mk │ │ │ │ ├── easyacc.mk │ │ │ │ ├── engenius.mk │ │ │ │ ├── fon.mk │ │ │ │ ├── hame.mk │ │ │ │ ├── hilink.mk │ │ │ │ ├── hootoo.mk │ │ │ │ ├── huawei.mk │ │ │ │ ├── intenso.mk │ │ │ │ ├── jcg.mk │ │ │ │ ├── misc.mk │ │ │ │ ├── nexx.mk │ │ │ │ ├── olimex.mk │ │ │ │ ├── planex.mk │ │ │ │ ├── poray.mk │ │ │ │ ├── sevenlinks.mk │ │ │ │ ├── tenda.mk │ │ │ │ ├── upvel.mk │ │ │ │ ├── vocore.mk │ │ │ │ ├── wansview.mk │ │ │ │ └── wiznet.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── config-4.4 │ │ │ ├── profiles │ │ │ ├── 00-default.mk │ │ │ ├── asus.mk │ │ │ ├── d-link.mk │ │ │ ├── edimax.mk │ │ │ ├── omnima.mk │ │ │ ├── samsung.mk │ │ │ └── trendnet.mk │ │ │ └── target.mk │ ├── rb532 │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── diag.sh │ │ │ └── sbin │ │ │ │ ├── cf2nand │ │ │ │ └── wget2nand │ │ ├── config-default │ │ ├── image │ │ │ ├── Makefile │ │ │ └── gen_image.sh │ │ ├── modules.mk │ │ ├── patches │ │ │ ├── 001-cmdline_hack.patch │ │ │ ├── 002-rb532_nand_fixup.patch │ │ │ └── 004-rb532_partition_info-rename-rootfs-to-rootfs_onboard.patch │ │ └── src │ │ │ └── patch-cmdline.c │ ├── realview │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ ├── 00_model │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ ├── config-3.18 │ │ └── image │ │ │ ├── Makefile │ │ │ └── gen_realview_sdcard_img.sh │ ├── sunxi │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── firmware │ │ │ │ └── brcm │ │ │ │ │ ├── brcmfmac4329-sdio.txt │ │ │ │ │ └── brcmfmac43362-sdio.txt │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_sunxi.sh │ │ │ │ └── 02_b53_hack.sh │ │ │ │ └── sunxi.sh │ │ ├── config-3.18 │ │ ├── config-4.1 │ │ ├── config-4.4 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── gen_sunxi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 100-dt-sun7i-add_spi0_pins_a.patch │ │ │ ├── 101-dt-sun7i-add-uart3_pins.patch │ │ │ ├── 102-dt-sun7i-add_mmc2_pins.patch │ │ │ ├── 110-input-add-sun4i-lradc.patch │ │ │ ├── 111-dt-sun4i-add-lradc.patch │ │ │ ├── 112-dt-sun5i-add-lradc.patch │ │ │ ├── 113-dt-sun7i-add-lradc.patch │ │ │ ├── 115-input-sun4i-ts-update-temp-curve.patch │ │ │ ├── 116-dt-sunxi-update-compats-for-tempcurves.patch │ │ │ ├── 130-input-add-axp20x-pek.patch │ │ │ ├── 150-pwm-add-sunxi-driver.patch │ │ │ ├── 200-mmc-add-sdio-function-subnode.patch │ │ │ ├── 201-dt-sun7i-add-oob-irq-to-bcm-sdio-wifi.patch │ │ │ ├── 202-dt-sun7i-add-bluetooth-to-cubietruck.patch │ │ │ ├── 270-dt-sun7i-add-ss-to-a20.patch │ │ │ ├── 271-crypto-add-ss.patch │ │ │ ├── 300-dt-sun7i-add-bananapi.patch │ │ │ ├── 301-dt-sun7i-add-bananapro.patch │ │ │ └── 302-dt-sun7i-add-lamobo-r1.patch │ │ ├── patches-4.1 │ │ │ ├── 100-mfd-axp20x-add-axp22x-pmic.patch │ │ │ ├── 101-regulator-axp20x-prep-support-for-multiple-axp-families.patch │ │ │ ├── 102-regulator-axp20x-add-support-for-axp22.patch │ │ │ ├── 103-mfd-axp20x-add-missing-registers.patch │ │ │ ├── 104-mfd-axp20x-enable-axp22x.patch │ │ │ ├── 105-mfd-axp20x-add-axp152-support.patch │ │ │ ├── 110-mtd-move-nand_ecc_ctrl-init.patch │ │ │ ├── 111-mtd-add-support-for-nand-partitions.patch │ │ │ ├── 112-mtd-add-dt-nand-partition-parser.patch │ │ │ ├── 113-mtd-nand-add-pst.patch │ │ │ ├── 114-mtd-randomizer-into-nand-framework.patch │ │ │ ├── 115-mtd-fetch-randomizer-mode.patch │ │ │ ├── 116-mtd-add-vendor-specific-initcode-infra.patch │ │ │ ├── 117-mtd-nand-add-hynix-init.patch │ │ │ ├── 119-mtd-nand-ecc-for-samsung.patch │ │ │ ├── 120-mtd-nand-print-ecc-strength.patch │ │ │ ├── 121-mtd-print-full-chipid.patch │ │ │ ├── 122-mtd-nand-sunxi-add-partition-support.patch │ │ │ ├── 123-mtd-nand-sunxi-add-hw-randomizer-support.patch │ │ │ ├── 124-mtd-nand-sunxi-fallback-to-chip-config.patch │ │ │ ├── 125-mtd-nand-sunxi-extend-bbt_options.patch │ │ │ ├── 126-1-dt-sun4i-add-nand-ctrlpin-defs.patch │ │ │ ├── 126-2-dt-sun5i-add-nand-ctrlpin-defs.patch │ │ │ ├── 126-3-dt-sun7i-add-nand-ctrlpin-defs.patch │ │ │ ├── 126-4-dt-sun4i-add-nfc-to-a10.patch │ │ │ ├── 126-5-dt-sun4i-add-nfc-to-a10.patch │ │ │ ├── 126-6-dt-sun5i-add-nfc-to-a13.patch │ │ │ ├── 127-1-dt-sun5i-enable-nand-on-a13-olinuxino.patch │ │ │ ├── 127-2-dt-sun7i-enable-nand-on-a20-olinuxino.patch │ │ │ ├── 127-3-dt-sun4i-enable-nand-on-cubieboard.patch │ │ │ ├── 127-4-dt-sun4i-enable-nand-on-a10-lime.patch │ │ │ ├── 127-5-dt-sun4i-enable-nand-on-a10-pcduino.patch │ │ │ ├── 127-6-dt-sun7i-enable-nand-on-a20-pcduino3.patch │ │ │ ├── 128-1-mtd-nand-store-timing-in-nand_chip.patch │ │ │ ├── 128-2-mtd-nand-support-non-ONFI-timings.patch │ │ │ ├── 128-3-mtd-nand-add-H27UBG8T2BTR-BC.patch │ │ │ ├── 129-nand-sunxi-fix-write-to-USER_DATA-a13.patch │ │ │ ├── 140-mmc-sdio-reliability-fix.patch │ │ │ ├── 142-arm-add-sunxi-h3.patch │ │ │ ├── 143-dmaengine-add-h3.patch │ │ │ ├── 160-dmaengine-add-sun4i-driver.patch │ │ │ ├── 161-clk-sunxi-add-pll2-for-sun457i.patch │ │ │ ├── 162-clk-sunxi-codec-clock.patch │ │ │ ├── 163-clk-sunxi-mod1-clock.patch │ │ │ ├── 164-1-dt-add-pll2-into-dtsi.patch │ │ │ ├── 164-2-dt-add-codec-clock-into-dtsi.patch │ │ │ ├── 164-3-dt-sun7i-add-mod1-clocknodes.patch │ │ │ ├── 164-4-dt-sun7i-resort-pll-parents-for-audio.patch │ │ │ ├── 165-asoc-add-sunxi-codec.patch │ │ │ ├── 166-asoc-sunxi-fix-distortion-on-16bit-mono.patch │ │ │ ├── 167-1-dt-sun7i-add-codec-node.patch │ │ │ ├── 167-2-dt-sun7i-add-codec-to-a20-olinuxino-micro.patch │ │ │ ├── 167-3-dt-sun7i-add-codec-to-cubieboard2.patch │ │ │ ├── 167-4-dt-sun7i-add-codec-to-cubietruck.patch │ │ │ ├── 170-musb-add-driver.patch │ │ │ ├── 171-musb-add-support-for-a31.patch │ │ │ ├── 190-dt-sun7i-add-ss-to-a20.patch │ │ │ ├── 191-dt-sun4i-add-ss-to-a10.patch │ │ │ ├── 192-crypto-add-ss.patch │ │ │ ├── 201-dt-sun7i-add-oob-irq-to-bcm-sdio-wifi.patch │ │ │ ├── 202-dt-sun7i-add-bluetooth-to-cubietruck.patch │ │ │ └── 300-dt-sun7i-add-lamobo-r1.patch │ │ ├── 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 │ │ │ ├── 01-default.mk │ │ │ ├── a10-olinuxino.mk │ │ │ ├── a13-olimex-som.mk │ │ │ ├── a13-olinuxino.mk │ │ │ ├── a20-olinuxino.mk │ │ │ ├── bananapi.mk │ │ │ ├── bananapro.mk │ │ │ ├── cubieboard.mk │ │ │ ├── cubieboard2.mk │ │ │ ├── cubietruck.mk │ │ │ ├── lamobo-r1.mk │ │ │ ├── mele_m9.mk │ │ │ ├── orangepi_plus.mk │ │ │ ├── pcduino.mk │ │ │ └── pcduino3.mk │ ├── uml │ │ ├── Makefile │ │ ├── README │ │ ├── config │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-4.4 │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ ├── x86 │ │ ├── 64 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 15_essential_fs_x86 │ │ │ │ ├── 20_check_iso │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.4 │ │ ├── ep80579 │ │ │ ├── config-3.3 │ │ │ └── target.mk │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── geode │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_image_generic.sh │ │ │ ├── grub-early.cfg │ │ │ ├── grub-iso.cfg │ │ │ ├── grub.cfg │ │ │ ├── mkimg_bifferboard.py │ │ │ └── mkimg_sitecom.pl │ │ ├── kvm_guest │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-4.4 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ └── 120-panic_on_unrecovered_nmi.patch │ │ └── xen_domu │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ ├── xburst │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── config │ │ │ │ ├── fstab │ │ │ │ ├── network │ │ │ │ └── system │ │ ├── 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 │ │ └── profiles │ │ ├── zc702.mk │ │ ├── zed.mk │ │ └── zybo.mk ├── 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.25.1 │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ └── linaro │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch ├── fortify-headers │ └── Makefile ├── gcc │ ├── Config.in │ ├── Config.version │ ├── common.mk │ ├── files │ │ └── alternate-arch-cc.in │ ├── final │ │ └── Makefile │ ├── initial │ │ └── Makefile │ ├── minimal │ │ └── Makefile │ └── patches │ │ ├── 5.3.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-no-plt-backport.patch │ │ ├── 030-fix-arm-codegen-PR-65932.patch │ │ ├── 040-fix-mips-ICE-PR-68400.patch │ │ ├── 100-uclibc-conf.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 │ │ ├── 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 │ │ ├── 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-2015.06 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-weak_data_fix.patch │ │ ├── 003-universal_initializer.patch │ │ ├── 004-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-no-plt-backport.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 210-disable_libsanitizer_off_t_check.patch │ │ ├── 800-arc-disablelibgmon.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 860-use_eh_frame.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ └── 940-no-clobber-stamp-bits.patch ├── gdb │ ├── Makefile │ └── patches │ │ ├── 7.11 │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch │ │ └── arc-2015.06-gdb │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch ├── glibc │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── headers │ │ └── Makefile │ ├── include │ │ └── libintl.h │ └── patches │ │ └── 2.22 │ │ ├── 100-fix_cross_rpcgen.patch │ │ └── 200-add-dl-search-paths.patch ├── info.mk ├── insight │ ├── Makefile │ └── patches │ │ └── 600-fix-compile-flag-mismatch.patch ├── kernel-headers │ └── Makefile ├── musl │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── headers │ │ └── Makefile │ ├── include │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── features.h │ │ ├── sgidefs.h │ │ └── sys │ │ │ ├── cdefs.h │ │ │ ├── glibc-types.h │ │ │ └── queue.h │ └── patches │ │ ├── 001-update-to-git-2016-03-06.patch │ │ ├── 040-Add-format-attribute-to-some-function-declarations.patch │ │ ├── 100-add_glob_onlydir.patch │ │ ├── 110-read_timezone_from_fs.patch │ │ ├── 200-add_libssp_nonshared.patch │ │ ├── 300-relative.patch │ │ ├── 900-iconv_size_hack.patch │ │ └── 901-crypt_size_hack.patch ├── uClibc │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── config │ │ ├── arc │ │ ├── archs │ │ ├── arm │ │ ├── armeb │ │ ├── common │ │ ├── debug │ │ ├── i386 │ │ ├── i686 │ │ ├── m68k │ │ ├── mips │ │ ├── mips64 │ │ ├── mips64.32 │ │ ├── mips64.64 │ │ ├── mips64.n32 │ │ ├── mips64el │ │ ├── mips64el.32 │ │ ├── mips64el.64 │ │ ├── mips64el.n32 │ │ ├── mipsel │ │ ├── mipsel.cobalt │ │ ├── powerpc │ │ ├── powerpc.e500 │ │ ├── sparc │ │ ├── sparc.leon │ │ └── x86_64 │ ├── headers │ │ └── Makefile │ └── utils │ │ └── Makefile └── wrapper │ └── Makefile └── tools ├── Makefile ├── autoconf ├── Makefile └── patches │ ├── 000-relocatable.patch │ ├── 001-no_emacs_lib.patch │ └── 002-musl_host_fixup.patch ├── automake ├── Makefile ├── files │ └── aclocal └── patches │ ├── 000-relocatable.patch │ ├── 100-aclocal-skip-not-existing-directories.patch │ └── 200-do-not-override-silent-rules.patch ├── b43-tools ├── Makefile ├── files │ └── b43-fwsquash.py └── patches │ ├── 001-fw-dirname.patch │ └── 002-no_libfl.patch ├── bc ├── Makefile └── patches │ └── 001-no_doc.patch ├── bison ├── Makefile ├── patches │ ├── 010-intl-stub-compat.patch │ └── 100-fix-gets-removal.patch └── scripts │ └── yacc ├── ccache ├── Makefile ├── files │ ├── ccache_cc │ └── ccache_cxx └── patches │ └── 100-honour-copts.patch ├── cloog └── Makefile ├── cmake ├── Makefile └── patches │ ├── 100-disable_qt_tests.patch │ ├── 110-freebsd-compat.patch │ └── 120-alpine_musl-compat.patch ├── dosfstools ├── Makefile └── patches │ ├── 0001-Add-tags-and-editor-backup-files-to-.gitignore.patch │ ├── 0002-Fix-indentation-of-fix-power-loss-damage-commit.patch │ ├── 0003-mkfs.fat.c-Use-unsigned-char-for-binary-data.patch │ ├── 0004-Make-all-char-that-may-take-literals-const.patch │ ├── 0005-mkfs.fat-Allow-0xF0-to-be-specified-as-media-byte.patch │ ├── 0006-fsck.fat-Make-r-option-default.patch │ ├── 0007-Makefile-fix-typo-in-uninstall-man.patch │ ├── 0008-Makefile-avoid-using-install-D.patch │ ├── 0009-Improve-.gitignore.patch │ ├── 0010-Remove-non-standard-int-types.patch │ ├── 0011-Remove-linux-msdos_fs.h-includes.patch │ ├── 0012-fsck.fat-Fix-read-beyond-end-of-array-on-FAT12.patch │ ├── 0013-Add-compatible-ioctl-calls-for-OSX-and-FreeBSD.patch │ └── 0014-Add-OSX-and-FreeBSD-support.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 ├── 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 │ ├── airlink.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 │ ├── mkcameofw.c │ ├── mkcasfw.c │ ├── mkchkimg.c │ ├── mkcsysimg.c │ ├── mkdapimg.c │ ├── mkdcs932.c │ ├── mkdniimg.c │ ├── mkedimaximg.c │ ├── mkfwimage.c │ ├── mkfwimage2.c │ ├── mkheader_gemtek.c │ ├── mkhilinkfw.c │ ├── mkmerakifw.c │ ├── mkmylofw.c │ ├── mkplanexfw.c │ ├── mkporayfw.c │ ├── mkrtn56uimg.c │ ├── mksenaofw.c │ ├── mktitanimg.c │ ├── mktitanimg.h │ ├── mktplinkfw.c │ ├── mktplinkfw2.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 │ ├── zynos.h │ └── zyxbcm.c ├── flex ├── Makefile └── patches │ └── 100-disable-tests-docs.patch ├── flock ├── Makefile └── src │ └── flock.c ├── gengetopt ├── Makefile └── patches │ ├── 100-dependency_fix.patch │ └── 200-no_docs_tests.patch ├── gettext └── Makefile ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h ├── getline.h └── sys │ └── sysmacros.h ├── isl └── Makefile ├── libelf └── 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 ├── m4 ├── Makefile └── patches │ └── 100-fix-gets-removal.patch ├── make-ext4fs └── Makefile ├── missing-macros ├── Makefile └── src │ ├── README │ ├── bin │ ├── help2man │ └── makeinfo │ └── m4 │ ├── as-ac-expand.m4 │ ├── as-compiler-flag.m4 │ ├── as-unaligned-access.m4 │ ├── as-version.m4 │ ├── dnet.m4 │ ├── fake-gtk-doc-check.m4 │ ├── fake-intltool.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── intdiv0.m4 │ ├── intmax.m4 │ ├── inttypes-pri.m4 │ ├── inttypes_h.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── mfx_acc.m4 │ ├── mfx_cppflags.m4 │ ├── mfx_limits.m4 │ ├── progtest.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── va_copy.m4 │ └── wint_t.m4 ├── mkimage ├── Makefile └── patches │ ├── 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-gcc5_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 │ ├── 136-mkfs.ubifs-xz-support.patch │ ├── 200-libubigen-add-ubigen_write_terminator-function.patch │ ├── 201-ubinize-add-terminator-support.patch │ └── 310-add-static-linking-option.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 └── patches │ └── 100-portability.patch ├── pkg-config ├── Makefile └── files │ └── pkg-config ├── ppl ├── Makefile └── patches │ └── 001-disable-serial-tests.patch ├── 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 └── patches │ └── 001-musl_host_fixup.patch ├── 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-fix_xattr_disable.patch ├── upslug2 ├── Makefile └── patches │ ├── 100-libpcap_fix.patch │ └── 110-wrt350nv2_support.patch ├── upx ├── Makefile └── patches │ └── 100-lzmaonly.patch ├── wrt350nv2-builder ├── Makefile └── src │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── md5.c │ ├── md5.h │ ├── upgrade.h │ └── wrt350nv2-builder.c ├── xz ├── Makefile └── patches │ └── 100-freebsd-compat.patch └── yaffs2 ├── Makefile └── patches ├── 100-compile.patch └── 110-openbsd-compat.patch /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/README -------------------------------------------------------------------------------- /cfg/360: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/360 -------------------------------------------------------------------------------- /cfg/ar71xx-16m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/ar71xx-16m -------------------------------------------------------------------------------- /cfg/ar71xx-360: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/ar71xx-360 -------------------------------------------------------------------------------- /cfg/ar71xx-8m-lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/ar71xx-8m-lite -------------------------------------------------------------------------------- /cfg/ar71xx-generic-8m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/ar71xx-generic-8m -------------------------------------------------------------------------------- /cfg/ar71xx-generic-8m-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/ar71xx-generic-8m-2 -------------------------------------------------------------------------------- /cfg/ar71xx-nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/ar71xx-nand -------------------------------------------------------------------------------- /cfg/brcm2835: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/brcm2835 -------------------------------------------------------------------------------- /cfg/mt7620-16m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/mt7620-16m -------------------------------------------------------------------------------- /cfg/mt7620-8m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/mt7620-8m -------------------------------------------------------------------------------- /cfg/rt3x5x-16m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/cfg/rt3x5x-16m -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/adding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/adding.tex -------------------------------------------------------------------------------- /docs/bugs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/bugs.tex -------------------------------------------------------------------------------- /docs/build.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/build.tex -------------------------------------------------------------------------------- /docs/config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/config.tex -------------------------------------------------------------------------------- /docs/debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/debugging.tex -------------------------------------------------------------------------------- /docs/init-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/init-scripts.tex -------------------------------------------------------------------------------- /docs/network-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/network-scripts.tex -------------------------------------------------------------------------------- /docs/network.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/network.tex -------------------------------------------------------------------------------- /docs/openwrt.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/openwrt.sty -------------------------------------------------------------------------------- /docs/openwrt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/openwrt.tex -------------------------------------------------------------------------------- /docs/submitting-patches.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/submitting-patches.tex -------------------------------------------------------------------------------- /docs/wireless.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/wireless.tex -------------------------------------------------------------------------------- /docs/working.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/docs/working.tex -------------------------------------------------------------------------------- /feeds.conf.981213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/feeds.conf.981213 -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/feeds.mk -------------------------------------------------------------------------------- /include/hardening.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/hardening.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/host.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/scons.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/arc -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/bin/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/bin/login.sh -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/hosts -------------------------------------------------------------------------------- /package/base-files/files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/inittab -------------------------------------------------------------------------------- /package/base-files/files/etc/openwrt_version: -------------------------------------------------------------------------------- 1 | %V 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/preinit -------------------------------------------------------------------------------- /package/base-files/files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/profile -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/rc.local -------------------------------------------------------------------------------- /package/base-files/files/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/etc/services -------------------------------------------------------------------------------- /package/base-files/files/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/sbin/led.sh -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/apex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/apex/Makefile -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/rbcfg/src/cyg_crc32.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /package/boot/uboot-ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-ar71xx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-envtools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-envtools/Config.in -------------------------------------------------------------------------------- /package/boot/uboot-envtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-envtools/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-envtools/files/mxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-envtools/files/mxs -------------------------------------------------------------------------------- /package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-kirkwood/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-pxa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-pxa/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-xburst/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/uboot-zynq/Makefile -------------------------------------------------------------------------------- /package/boot/yamonenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/boot/yamonenv/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/perf/musl-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/perf/musl-compat.h -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/src/abort.c: -------------------------------------------------------------------------------- 1 | void abort(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /package/firmware/am33x-cm3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/firmware/am33x-cm3/Makefile -------------------------------------------------------------------------------- /package/firmware/linux-firmware/ti.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/firmware/linux-firmware/ti.mk -------------------------------------------------------------------------------- /package/kernel/acx-mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/acx-mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/ar7-atm/Config.in -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/ar7-atm/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/package/kernel/broadcom-wl/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/src/wlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/hostap-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/hostap-driver/Makefile -------------------------------------------------------------------------------- /package/kernel/i2c-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_I2C_GPIO_CUSTOM} += i2c-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/block.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/block.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/can.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/dsa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/dsa.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/hwmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/hwmon.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/i2c.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/input.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/input.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/leds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/leds.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/lib.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/nls.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/other.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/other.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/sound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/sound.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/spi.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/usb.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/video.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/video.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/wpan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/linux/modules/wpan.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mmc_over_gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/mmc_over_gpio/Makefile -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/om-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/package/kernel/rtc-rv5c386a/Makefile -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/kernel/rtc-rv5c386a/src/rtc.c -------------------------------------------------------------------------------- /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/981213/openwrt_old/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/981213/openwrt_old/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/argp-standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/argp-standalone/Makefile -------------------------------------------------------------------------------- /package/libs/cyassl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/cyassl/Makefile -------------------------------------------------------------------------------- /package/libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gettext/src/m4/intl.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv-full/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libiconv/src/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libiconv/src/m4/iconv.m4 -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/attr.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/cache.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/error.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/genl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/msg.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/nl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/object.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/socket.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/unl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl-tiny/src/unl.c -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libreadline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libreadline/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/librpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/librpc/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/polarssl/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/my_package/6relayd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/6relayd/Makefile -------------------------------------------------------------------------------- /package/my_package/adkill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/adkill/Makefile -------------------------------------------------------------------------------- /package/my_package/adkill/files/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/adkill/files/init -------------------------------------------------------------------------------- /package/my_package/agentx1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/agentx1/Makefile -------------------------------------------------------------------------------- /package/my_package/chinadns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/chinadns/Makefile -------------------------------------------------------------------------------- /package/my_package/cpulimit-ng/.svn/entries: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /package/my_package/cpulimit-ng/.svn/format: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /package/my_package/cpulimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/cpulimit/Makefile -------------------------------------------------------------------------------- /package/my_package/dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/dns2socks/Makefile -------------------------------------------------------------------------------- /package/my_package/n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/n2n_v2/Makefile -------------------------------------------------------------------------------- /package/my_package/ngrok-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/ngrok-c/Makefile -------------------------------------------------------------------------------- /package/my_package/pcd8544-gpio/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := pcd8544-gpio.o 2 | -------------------------------------------------------------------------------- /package/my_package/redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/redsocks2/Makefile -------------------------------------------------------------------------------- /package/my_package/rtl8188eu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/rtl8188eu/Makefile -------------------------------------------------------------------------------- /package/my_package/shellsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/shellsync/Makefile -------------------------------------------------------------------------------- /package/my_package/ssocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/my_package/ssocks/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/config/gre/Makefile -------------------------------------------------------------------------------- /package/network/config/ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/config/ipip/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/vti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/config/vti/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/files/6rd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/6rd/files/6rd.sh -------------------------------------------------------------------------------- /package/network/ipv6/6rd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/6rd/src/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/ds-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/ds-lite/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/map/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/files/map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/map/files/map.sh -------------------------------------------------------------------------------- /package/network/ipv6/odhcp6c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/ipv6/odhcp6c/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/services/ead/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/src/tinysrp/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /package/network/services/mdns/files/mdns.config: -------------------------------------------------------------------------------- 1 | config mdns 2 | option jail 1 3 | list network lan 4 | -------------------------------------------------------------------------------- /package/network/services/openvpn-easy-rsa/files/easy-rsa.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/network/services/openvpn-easy-rsa/files/easy-rsa.serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /package/network/services/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /package/network/services/ppp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/services/ppp/Makefile -------------------------------------------------------------------------------- /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/utils/comgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/comgt/Makefile -------------------------------------------------------------------------------- /package/network/utils/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/curl/Config.in -------------------------------------------------------------------------------- /package/network/utils/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/curl/Makefile -------------------------------------------------------------------------------- /package/network/utils/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/dante/Makefile -------------------------------------------------------------------------------- /package/network/utils/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/iftop/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/iperf/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/iperf3/Makefile -------------------------------------------------------------------------------- /package/network/utils/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/ipset/Makefile -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/iwcap/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/iwinfo/Makefile -------------------------------------------------------------------------------- /package/network/utils/umbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/umbim/Makefile -------------------------------------------------------------------------------- /package/network/utils/uqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/network/utils/uqmi/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fstools/files/mount.hotplug: -------------------------------------------------------------------------------- 1 | /sbin/block hotplug 2 | -------------------------------------------------------------------------------- /package/system/mountd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mountd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/nand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/procd/files/nand.sh -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/admswconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/admswconfig/Makefile -------------------------------------------------------------------------------- /package/utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/busybox/files/cron -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/e2fsprogs/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/files/e2fsck.conf: -------------------------------------------------------------------------------- 1 | [options] 2 | broken_system_clock = true 3 | 4 | -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mkelfimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/mkelfimage/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/oseama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/oseama/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/oseama/src/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/oseama/src/md5.c -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/oseama/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/oseama/src/oseama.c -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ubi-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/ubi-utils/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/zconf.l -------------------------------------------------------------------------------- /scripts/config/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/config/zconf.y -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/freebsd.sh -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/get_source_date_epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/get_source_date_epoch.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/metadata.pl -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/openbsd.sh -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/portable_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/portable_date.sh -------------------------------------------------------------------------------- /scripts/redboot-script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/redboot-script.pl -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/sysupgrade-nand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/sysupgrade-nand.sh -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /scripts/update-package-md5sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/scripts/update-package-md5sum -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/adm5120/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/adm5120/modules.mk -------------------------------------------------------------------------------- /target/linux/adm5120/router_le/config-3.8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/adm8668/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/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/ar7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/Makefile -------------------------------------------------------------------------------- /target/linux/ar7/ac49x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/ac49x/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/base-files.mk -------------------------------------------------------------------------------- /target/linux/ar7/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/config-3.18 -------------------------------------------------------------------------------- /target/linux/ar7/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/config-4.1 -------------------------------------------------------------------------------- /target/linux/ar7/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/generic/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar7/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar71xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/ar71xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/target/linux/ar71xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ar71xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/arc770/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arc770/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arc770/config-4.4 -------------------------------------------------------------------------------- /target/linux/arc770/dts/axs101.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arc770/dts/axs101.dts -------------------------------------------------------------------------------- /target/linux/arc770/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arc770/image/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/archs38/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/archs38/config-4.4 -------------------------------------------------------------------------------- /target/linux/arm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arm64/Makefile -------------------------------------------------------------------------------- /target/linux/arm64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arm64/README -------------------------------------------------------------------------------- /target/linux/arm64/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arm64/config-default -------------------------------------------------------------------------------- /target/linux/arm64/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/arm64/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/at91/config-4.4 -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/at91/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ath25/config-3.18 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/au1000/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/au1000/config-3.18 -------------------------------------------------------------------------------- /target/linux/au1000/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/au1000/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/au1000/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/bcm53xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/bcm53xx/config-4.3 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/bcm53xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/brcm2708/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm2708/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm2708/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm47xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm47xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/brcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm63xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm63xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/vg50.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm63xx/dts/vg50.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/brcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/cns3xxx/config-4.4 -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/gemini/config-3.18 -------------------------------------------------------------------------------- /target/linux/gemini/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/gemini/config-4.1 -------------------------------------------------------------------------------- /target/linux/gemini/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/gemini/image/Makefile -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/generic/config-3.18 -------------------------------------------------------------------------------- /target/linux/generic/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/generic/config-4.1 -------------------------------------------------------------------------------- /target/linux/generic/config-4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/generic/config-4.3 -------------------------------------------------------------------------------- /target/linux/generic/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/generic/config-4.4 -------------------------------------------------------------------------------- /target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/imx6/config-4.4 -------------------------------------------------------------------------------- /target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ipq806x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ipq806x/config-4.1 -------------------------------------------------------------------------------- /target/linux/ipq806x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ipq806x/modules.mk -------------------------------------------------------------------------------- /target/linux/ixp4xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ixp4xx/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ixp4xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/ixp4xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ixp4xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/ixp4xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ixp4xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ixp4xx/modules.mk -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/kirkwood/config-4.4 -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/config-4.4 -------------------------------------------------------------------------------- /target/linux/lantiq/dts/GR7000.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/dts/GR7000.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/H201L.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/dts/H201L.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/VR200v.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/dts/VR200v.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/WBMR.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/dts/WBMR.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/ar9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/dts/ar9.dtsi -------------------------------------------------------------------------------- /target/linux/lantiq/dts/vr9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/dts/vr9.dtsi -------------------------------------------------------------------------------- /target/linux/lantiq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/image/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/lantiq/xway/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/lantiq/xway/target.mk -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/be64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/be64/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/config-4.4 -------------------------------------------------------------------------------- /target/linux/malta/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/image/Makefile -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/malta/le64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/malta/le64/target.mk -------------------------------------------------------------------------------- /target/linux/mcs814x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mcs814x/Makefile -------------------------------------------------------------------------------- /target/linux/mcs814x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mcs814x/config-3.18 -------------------------------------------------------------------------------- /target/linux/mcs814x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mcs814x/modules.mk -------------------------------------------------------------------------------- /target/linux/mediatek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mediatek/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mediatek/config-4.1 -------------------------------------------------------------------------------- /target/linux/mediatek/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mediatek/config-4.4 -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mpc85xx/config-4.4 -------------------------------------------------------------------------------- /target/linux/mpc85xx/generic/config-default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mvebu/config-4.1 -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mvebu/config-4.4 -------------------------------------------------------------------------------- /target/linux/mvebu/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mvebu/image/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/config-3.18 -------------------------------------------------------------------------------- /target/linux/mxs/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/config-4.1 -------------------------------------------------------------------------------- /target/linux/mxs/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/config-4.4 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/mxs/modules.mk -------------------------------------------------------------------------------- /target/linux/netlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/netlogic/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/octeon/config-4.4 -------------------------------------------------------------------------------- /target/linux/octeon/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/octeon/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap/config-3.18 -------------------------------------------------------------------------------- /target/linux/omap/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap/config-4.1 -------------------------------------------------------------------------------- /target/linux/omap/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap/config-4.4 -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap24xx/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap24xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/omap24xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/omap24xx/modules.mk -------------------------------------------------------------------------------- /target/linux/orion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/orion/Makefile -------------------------------------------------------------------------------- /target/linux/orion/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/orion/config-default -------------------------------------------------------------------------------- /target/linux/orion/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/orion/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/oxnas/config-4.1 -------------------------------------------------------------------------------- /target/linux/oxnas/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/oxnas/config-4.4 -------------------------------------------------------------------------------- /target/linux/oxnas/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/oxnas/image/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc40x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc40x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc40x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc40x/image/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc40x/modules.mk -------------------------------------------------------------------------------- /target/linux/ppc44x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc44x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc44x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc44x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc44x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ppc44x/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/dts/3G150B.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/3G150B.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/3G300M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/3G300M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/A5-V11.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/A5-V11.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/AR670W.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/AR670W.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/AR725W.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/AR725W.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/BC2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/BC2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/D105.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/D105.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/E1700.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/E1700.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/EX2700.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/EX2700.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/F7C027.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/F7C027.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5661.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/HC5661.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5761.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/HC5761.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HC5861.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/HC5861.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HG255D.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/HG255D.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HPM.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/HPM.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/IP2202.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/IP2202.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M2M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/M2M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/M3.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4-4M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/M4-4M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4-8M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/M4-8M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MLW221.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/MLW221.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MLWG2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/MLWG2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MPRA1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/MPRA1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MPRA2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/MPRA2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MT7621.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/MT7621.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MT7628.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/MT7628.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/NA930.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/NA930.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/NW718.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/NW718.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/PBR-M1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/PBR-M1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RE6500.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/RE6500.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RP-N53.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/RP-N53.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RT-N15.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/RT-N15.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RUT5XX.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/RUT5XX.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/W150M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/W150M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/W502U.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/W502U.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WITI.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/WITI.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WL-351.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/WL-351.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WR6202.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/WR6202.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/X5.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X8.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/X8.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/Y1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/Y1.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1S.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/Y1S.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/ZTE-Q7.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/dts/ZTE-Q7.dts -------------------------------------------------------------------------------- /target/linux/ramips/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/rb532/base-files.mk -------------------------------------------------------------------------------- /target/linux/rb532/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/rb532/config-default -------------------------------------------------------------------------------- /target/linux/rb532/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/rb532/image/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /target/linux/realview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/realview/Makefile -------------------------------------------------------------------------------- /target/linux/realview/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/realview/README -------------------------------------------------------------------------------- /target/linux/realview/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/realview/config-3.18 -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/config-3.18 -------------------------------------------------------------------------------- /target/linux/sunxi/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/config-4.1 -------------------------------------------------------------------------------- /target/linux/sunxi/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/config-4.4 -------------------------------------------------------------------------------- /target/linux/sunxi/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/image/Config.in -------------------------------------------------------------------------------- /target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/64/config-default -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/config-4.4 -------------------------------------------------------------------------------- /target/linux/x86/ep80579/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/ep80579/target.mk -------------------------------------------------------------------------------- /target/linux/x86/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/generic/target.mk -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/image/Config.in -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/image/grub.cfg -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/xburst/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/xburst/config-3.18 -------------------------------------------------------------------------------- /target/linux/xburst/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/xburst/image/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/target/linux/zynq/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/zynq/base-files.mk -------------------------------------------------------------------------------- /target/linux/zynq/config-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/zynq/config-4.4 -------------------------------------------------------------------------------- /target/linux/zynq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/zynq/image/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/image/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/zynq/image/mkits.sh -------------------------------------------------------------------------------- /target/linux/zynq/profiles/zed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/zynq/profiles/zed.mk -------------------------------------------------------------------------------- /target/linux/zynq/profiles/zybo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/linux/zynq/profiles/zybo.mk -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/binutils/Config.version -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/fortify-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/fortify-headers/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /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/981213/openwrt_old/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/glibc/Config.in -------------------------------------------------------------------------------- /toolchain/glibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/glibc/Config.version -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/glibc/include/libintl.h -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/insight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/insight/Makefile -------------------------------------------------------------------------------- /toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/Config.version -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/include/sys/cdefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/musl/include/sys/queue.h -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/Config.version -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/config/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/arc -------------------------------------------------------------------------------- /toolchain/uClibc/config/archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/archs -------------------------------------------------------------------------------- /toolchain/uClibc/config/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/arm -------------------------------------------------------------------------------- /toolchain/uClibc/config/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/armeb -------------------------------------------------------------------------------- /toolchain/uClibc/config/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/common -------------------------------------------------------------------------------- /toolchain/uClibc/config/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/debug -------------------------------------------------------------------------------- /toolchain/uClibc/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/i386 -------------------------------------------------------------------------------- /toolchain/uClibc/config/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/i686 -------------------------------------------------------------------------------- /toolchain/uClibc/config/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/m68k -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mips -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mips64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mips64.32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mips64.64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.n32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mips64.n32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mips64el -------------------------------------------------------------------------------- /toolchain/uClibc/config/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/mipsel -------------------------------------------------------------------------------- /toolchain/uClibc/config/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/powerpc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/sparc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc.leon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/sparc.leon -------------------------------------------------------------------------------- /toolchain/uClibc/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/config/x86_64 -------------------------------------------------------------------------------- /toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bc/patches/001-no_doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/bc/patches/001-no_doc.patch -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/bison/scripts/yacc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec bison -y "$@" 3 | -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/cloog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/cloog/Makefile -------------------------------------------------------------------------------- /tools/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/expat/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/airlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/airlink.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/asustrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/asustrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/bcm_tag.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/bcmalgo.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/bcmalgo.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/csysimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/csysimg.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/cyg_crc.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcasfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/mkcasfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/mkzcfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzynfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/mkzynfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/oseama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/spw303v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/spw303v.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx2usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/trx2usr.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/wrt400n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/wrt400n.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyxbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/firmware-utils/src/zyxbcm.c -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/gettext/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/include/getline.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/isl/Makefile -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzma/patches/002-lzmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/lzma/patches/002-lzmp.patch -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/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/981213/openwrt_old/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch-image/src/patch-dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/patch-image/src/patch-dtb.c -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/pkg-config/files/pkg-config -------------------------------------------------------------------------------- /tools/ppl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/ppl/Makefile -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/scons/Makefile -------------------------------------------------------------------------------- /tools/scons/files/pywrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/scons/files/pywrap.sh -------------------------------------------------------------------------------- /tools/sdimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/sdimage/Makefile -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfs4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/squashfs4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/tar/Makefile -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/upx/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/wrt350nv2-builder/src/md5.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/wrt350nv2-builder/src/md5.h -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/openwrt_old/HEAD/tools/yaffs2/Makefile --------------------------------------------------------------------------------