├── .gitattributes ├── .gitignore ├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README ├── 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.default ├── include ├── autotools.mk ├── cmake.mk ├── debug.mk ├── depends.mk ├── device_table.txt ├── download.mk ├── feeds.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 │ ├── 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 │ │ │ ├── config │ │ │ │ ├── network │ │ │ │ └── system │ │ │ ├── device_info │ │ │ ├── diag.sh │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── hotplug.d │ │ │ │ └── net │ │ │ │ │ └── 00-sysctl │ │ │ ├── init.d │ │ │ │ ├── boot │ │ │ │ ├── done │ │ │ │ ├── led │ │ │ │ ├── sysctl │ │ │ │ ├── sysfixtime │ │ │ │ ├── system │ │ │ │ └── umount │ │ │ ├── inittab │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── passwd │ │ │ ├── preinit │ │ │ ├── profile │ │ │ ├── protocols │ │ │ ├── rc.button │ │ │ │ ├── failsafe │ │ │ │ ├── power │ │ │ │ ├── reset │ │ │ │ └── rfkill │ │ │ ├── rc.common │ │ │ ├── rc.local │ │ │ ├── services │ │ │ ├── shadow │ │ │ ├── shells │ │ │ ├── sysctl.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-new.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 │ │ │ ├── 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 │ ├── 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 │ ├── uboot-envtools │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── ar71xx │ │ │ ├── cns3xxx │ │ │ ├── imx6 │ │ │ ├── kirkwood │ │ │ ├── lantiq │ │ │ ├── mvebu │ │ │ ├── mxs │ │ │ ├── oxnas │ │ │ ├── ramips │ │ │ └── uboot-envtools.sh │ │ └── patches │ │ │ ├── 001-compile.patch │ │ │ ├── 100-fw_env_gnu_source.patch │ │ │ └── 300-support-env-in-ubivol-chardev.patch │ ├── uboot-imx6 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 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 │ │ │ └── 200-openwrt-config.patch │ ├── uboot-lantiq │ │ ├── Makefile │ │ ├── README │ │ └── patches │ │ │ ├── 0001-sf-fix-out-of-order-calls-for-spi_claim_bus-and-spi_.patch │ │ │ ├── 0002-sf-consistently-use-debug-for-warning-error-messages.patch │ │ │ ├── 0003-sf-move-malloc-of-spi_flash-to-spi_flash_probe.patch │ │ │ ├── 0004-sf-add-slim-probe-funtions-for-SPL.patch │ │ │ ├── 0005-sf-make-calculatiom-of-address-bytes-completely-conf.patch │ │ │ ├── 0006-sf-add-support-for-4-byte-addressing.patch │ │ │ ├── 0007-sf-add-support-for-EN25QH256.patch │ │ │ ├── 0008-sf-fix-sector-layout-of-S25FL256S_256K-and-S25FL512S.patch │ │ │ ├── 0009-net-switchlib-add-framework-for-ethernet-switch-driv.patch │ │ │ ├── 0010-net-switchlib-add-driver-for-Lantiq-PSB697X-switch-f.patch │ │ │ ├── 0011-net-switchlib-add-driver-for-Lantiq-ADM6996I-switch-.patch │ │ │ ├── 0012-net-switchlib-add-driver-for-Atheros-AR8216.patch │ │ │ ├── 0013-net-switchlib-add-driver-for-REALTEK-RTL8306.patch │ │ │ ├── 0014-MIPS-add-support-for-Lantiq-XWAY-SoCs.patch │ │ │ ├── 0015-MIPS-lantiq-add-support-for-Lantiq-XWAY-ARX100-SoC-f.patch │ │ │ ├── 0016-net-add-driver-for-Lantiq-XWAY-ARX100-switch.patch │ │ │ ├── 0017-tools-add-some-helper-tools-for-Lantiq-SoCs.patch │ │ │ ├── 0018-tools-lantiq-add-NAND-SPL-support.patch │ │ │ ├── 0019-Makefile-add-Lantiq-NAND-SPL-images.patch │ │ │ ├── 0020-MIPS-lantiq-add-NAND-SPL-support.patch │ │ │ ├── 0021-MIPS-vrx200-add-NAND-SPL-support.patch │ │ │ ├── 0022-MIPS-lantiq-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 │ ├── uboot-mxs │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-add-i2se-duckbill.patch │ ├── uboot-omap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-switch_omap4_ext4.patch │ │ │ ├── 002-fix_jffs2.patch │ │ │ └── 003-fix_findfdt_C4.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 │ │ │ └── 800-fix-bootm-assertion.patch │ ├── uboot-pxa │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-squashfs_rootfstype_cmdline.patch │ ├── uboot-sunxi │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 002-add-linksprite-pcduino.diff │ │ │ ├── 003-add-lemaker-bananapro.diff │ │ │ ├── 004-add-olimex-a13-som.diff │ │ │ ├── 005-add-gmac-tx-delay-variant.patch │ │ │ └── 006-add-lamobo-r1.patch │ │ └── uEnv.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 │ └── 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 │ │ │ └── 101-arm-uclibc-sim-needs-libm.patch │ ├── oprofile │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-use_insmod_instead_of_modprobe.patch │ │ │ └── 110-fix_compile_error.patch │ ├── perf │ │ └── Makefile │ ├── strace │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-musl_fix.patch │ ├── 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 │ │ └── 200-musl_fix.patch │ │ └── src │ │ └── abort.c ├── firmware │ ├── am33x-cm3 │ │ └── Makefile │ ├── ixp4xx-microcode │ │ ├── Makefile │ │ └── src │ │ │ ├── IxNpeMicrocode.h │ │ │ └── LICENSE.IPL │ ├── linux-firmware │ │ └── Makefile │ └── vsc73x5-ucode │ │ ├── Makefile │ │ └── files │ │ └── Makefile ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-pci-mem-Fix-3.8-build.patch │ │ │ ├── 003-Fix-3.10-build.patch │ │ │ ├── 004-Fix-3.14-build.patch │ │ │ └── 200-initial-macaddr.patch │ ├── ar7-atm │ │ ├── Config.in │ │ ├── Makefile │ │ ├── patches-D7.04.03.00 │ │ │ ├── 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 │ │ └── patches-D7.05.01.00 │ │ │ ├── 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 │ ├── 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 │ │ │ ├── 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 │ │ │ └── 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 │ │ │ │ ├── ifxmips_testmgr.h │ │ │ │ ├── internal.h │ │ │ │ └── ltq_deu_testmgr.c │ │ ├── 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 │ │ │ │ └── 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-fw │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── LzmaWrapper.c │ │ │ │ ├── LzmaWrapper.h │ │ │ │ ├── Makefile │ │ │ │ ├── vdsl_fw_install.sh │ │ │ │ └── w921v_fw_cutter.c │ │ ├── ltq-vdsl-mei │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ ├── ltq-vdsl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ └── ltq-vmmc │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ └── vmmc.init │ │ │ └── patches │ │ │ ├── 000-portability.patch │ │ │ ├── 100-target.patch │ │ │ ├── 200-linux-310.patch │ │ │ └── 400-falcon.patch │ ├── linux │ │ ├── Makefile │ │ └── modules │ │ │ ├── 001-depends.mk │ │ │ ├── block.mk │ │ │ ├── can.mk │ │ │ ├── crypto.mk │ │ │ ├── firewire.mk │ │ │ ├── fs.mk │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── input.mk │ │ │ ├── leds.mk │ │ │ ├── lib.mk │ │ │ ├── netdevices.mk │ │ │ ├── netfilter.mk │ │ │ ├── netsupport.mk │ │ │ ├── nls.mk │ │ │ ├── other.mk │ │ │ ├── pcmcia.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ ├── usb.mk │ │ │ ├── video.mk │ │ │ ├── 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_debugfs_fix.patch │ │ │ ├── 008-fix_netdev_unregister.patch │ │ │ ├── 010-disable_rfkill.patch │ │ │ ├── 020-add_mpls_h.patch │ │ │ ├── 030-rt2x00_options.patch │ │ │ ├── 040-brcmutil_option.patch │ │ │ ├── 045-bcma-from-4.1.patch │ │ │ ├── 050-lib80211_option.patch │ │ │ ├── 060-no_local_ssb_bcma.patch │ │ │ ├── 070-ath_common_config.patch │ │ │ ├── 080-disable_clk_backport.patch │ │ │ ├── 100-revert-cryptoapi-ports.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-mac80211-add-an-intermediate-software-queue-implemen.patch │ │ │ ├── 301-mac80211-lock-rate-control.patch │ │ │ ├── 302-ath9k-restart-only-triggering-DFS-detector-line.patch │ │ │ ├── 303-ath9k-add-DFS-support-for-extension-channel.patch │ │ │ ├── 304-ath9k-allow-40MHz-radar-detection-width.patch │ │ │ ├── 305-ath5k-channel-change-fix.patch │ │ │ ├── 306-ath5k-fix-reset-race.patch │ │ │ ├── 307-ath9k-fix-tracking-of-enabled-AP-beacons.patch │ │ │ ├── 308-mac80211-minstrel_ht-fix-rounding-issue-in-MCS-durat.patch │ │ │ ├── 309-ath9k-disable-TPC-support-again-for-now.patch │ │ │ ├── 310-mac80211-don-t-look-up-stations-for-multicast-addres.patch │ │ │ ├── 311-mac80211-remove-drop_unencrypted-code.patch │ │ │ ├── 312-mac80211-don-t-look-up-destination-station-twice.patch │ │ │ ├── 313-mac80211-drop-4-addr-VLAN-frames-earlier-if-not-conn.patch │ │ │ ├── 314-mac80211-mesh-avoid-pointless-station-lookup.patch │ │ │ ├── 315-mac80211-avoid-duplicate-TX-path-station-lookup.patch │ │ │ ├── 316-mac80211-reduce-log-spam-from-ieee80211_handle_pwr_c.patch │ │ │ ├── 317-brcmfmac-Fix-race-condition-in-msgbuf-ioctl-processi.patch │ │ │ ├── 318-brcmfmac-Update-msgbuf-commonring-size-for-improved-.patch │ │ │ ├── 319-ath9k_htc-add-new-WMI_REG_RMW_CMDID-command.patch │ │ │ ├── 320-ath9k-ar9271_hw_pa_cal-use-defs-instead-of-magin-num.patch │ │ │ ├── 321-ath9k-ar9271_hw_pa_cal-use-proper-makroses.patch │ │ │ ├── 322-ath9k-ar9271_hw_pa_cal-use-RMW-buffer.patch │ │ │ ├── 323-ath9k-add-multi_read-to-be-compatible-with-ath9k_htc.patch │ │ │ ├── 324-ath9k-add-new-function-ath9k_hw_read_array.patch │ │ │ ├── 325-ath9k-ar9271_hw_pa_cal-use-REG_READ_ARRAY.patch │ │ │ ├── 326-ath9k-use-one-shot-read-in-ath9k_hw_update_mibstats.patch │ │ │ ├── 327-ath9k-ath9k_hw_loadnf-use-REG_RMW.patch │ │ │ ├── 328-ath9k-write-buffer-related-optimisation-in-ar5008_hw.patch │ │ │ ├── 329-ath9k-ath9k_hw_set_4k_power_cal_tabl-use-rmw-buffer.patch │ │ │ ├── 330-ath9k-use-rmw-buffer-in-ath9k_hw_set_operating_mode-.patch │ │ │ ├── 331-ath9k-ath9k_hw_4k_set_board_values-use-rmw-buffer.patch │ │ │ ├── 332-ath9k-ath9k_hw_analog_shift_rmw-use-REG_RMW.patch │ │ │ ├── 333-ath9k-use-REG_RMW-and-rmw-buffer-in-ath9k_hw_4k_set_.patch │ │ │ ├── 334-ath9k-use-REG_RMW-and-rmw-buffer-in-ath9k_hw_def_set.patch │ │ │ ├── 335-brcmfmac-Fix-oops-when-SDIO-device-is-removed.patch │ │ │ ├── 336-brcmfmac-Simplify-watchdog-sleep.patch │ │ │ ├── 337-brcmfmac-Fix-possible-race-condition.patch │ │ │ ├── 338-brcmfmac-Add-support-for-BCM4345-SDIO-chipset.patch │ │ │ ├── 339-brcmfmac-remove-duplication-of-ramsize-info.patch │ │ │ ├── 340-brcmfmac-always-perform-cores-checks.patch │ │ │ ├── 341-brcmfmac-rename-chip-download-functions.patch │ │ │ ├── 342-brcmfmac-assure-device-is-ready-for-download-after-b.patch │ │ │ ├── 343-brcmfmac-extract-ram-size-info-from-internal-memory-.patch │ │ │ ├── 344-brcmfmac-take-save-restore-memory-into-account-for-S.patch │ │ │ ├── 345-brcmfmac-fix-watchdog-timer-regression.patch │ │ │ ├── 346-brcmfmac-avoid-runtime-pm-for-sdio-host-controller.patch │ │ │ ├── 347-brcmfmac-Add-necessary-memory-barriers-for-SDIO.patch │ │ │ ├── 348-brcmfmac-Remove-unnecessary-new-line-in-pcie-console.patch │ │ │ ├── 349-brcmfmac-add-MODULE_FIRMWARE-macros-for-bcm4356-PCIe.patch │ │ │ ├── 350-brcmfmac-add-support-for-BCM43430-SDIO-chipset.patch │ │ │ ├── 351-brcmfmac-only-support-the-BCM43455-7-device.patch │ │ │ ├── 352-brcmfmac-remove-support-for-unreleased-BCM4354-PCIe.patch │ │ │ ├── 353-brcmfmac-disable-MBSS-feature-for-BCM43362.patch │ │ │ ├── 354-brcmfmac-use-static-superset-of-channels-for-wiphy-b.patch │ │ │ ├── 355-brcmfmac-update-wiphy-band-information-upon-updating.patch │ │ │ ├── 356-brcmfmac-add-description-for-feature-flags.patch │ │ │ ├── 357-brcmfmac-make-scheduled-scan-support-conditional.patch │ │ │ ├── 358-brcmfmac-add-support-for-BCM4324-rev-B5-chipset.patch │ │ │ ├── 359-brcmfmac-process-interrupt-regardless-sdiod-state.patch │ │ │ ├── 360-brcmfmac-fix-sdio-suspend-and-resume.patch │ │ │ ├── 361-brcmfmac-add-support-for-BCM4358-PCIe-device.patch │ │ │ ├── 362-brcmfmac-add-additional-43602-pcie-device-id.patch │ │ │ ├── 363-brcmfmac-Add-support-for-multiple-PCIE-devices-in-nv.patch │ │ │ ├── 400-ath_move_debug_code.patch │ │ │ ├── 401-ath9k_blink_default.patch │ │ │ ├── 402-ath_regd_optional.patch │ │ │ ├── 403-world_regd_fixup.patch │ │ │ ├── 404-regd_no_assoc_hints.patch │ │ │ ├── 405-ath_regd_us.patch │ │ │ ├── 406-ath_relax_default_regd.patch │ │ │ ├── 410-ath9k_allow_adhoc_and_ap.patch │ │ │ ├── 411-ath5k_allow_adhoc_and_ap.patch │ │ │ ├── 420-ath5k_disable_fast_cc.patch │ │ │ ├── 430-add_ath5k_platform.patch │ │ │ ├── 431-add_platform_eeprom_support_to_ath5k.patch │ │ │ ├── 432-ath5k_add_pciids.patch │ │ │ ├── 440-ath5k_channel_bw_debugfs.patch │ │ │ ├── 500-ath9k_eeprom_debugfs.patch │ │ │ ├── 501-ath9k_ahb_init.patch │ │ │ ├── 510-ath9k_intr_mitigation_tweak.patch │ │ │ ├── 511-ath9k_reduce_rxbuf.patch │ │ │ ├── 512-ath9k_channelbw_debugfs.patch │ │ │ ├── 513-ath9k_add_pci_ids.patch │ │ │ ├── 522-mac80211_configure_antenna_gain.patch │ │ │ ├── 530-ath9k_extra_leds.patch │ │ │ ├── 531-ath9k_extra_platform_leds.patch │ │ │ ├── 540-ath9k_reduce_ani_interval.patch │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ ├── 802-libertas-set-wireless-macaddr.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 │ │ │ ├── 900-wlcore-Add-support-for-DT-platform-data.patch │ │ │ ├── 910-00-rt2x00-enable-rt2800soc-for-mt7620.patch │ │ │ ├── 910-01-add-support-for-mt7620.patch │ │ │ ├── 920-ath10k_allow_fallback_to_board_bin_on_empty_otp_stream.patch │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ └── 930-ath10k_add_tpt_led_trigger.patch │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mmc_over_gpio │ │ ├── Makefile │ │ └── files │ │ │ ├── mmc_over_gpio.config │ │ │ └── mmc_over_gpio.init │ ├── mt76 │ │ └── Makefile │ ├── mwlwifi │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── qca-nss-gmac │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-nss-gmac-remove-IRQ-flag-IRQF_DISABLED.patch │ ├── 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 │ ├── cyassl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-respect_cflags.patch │ │ │ ├── 200-SSL_accept-handle-hello-garbage.patch │ │ │ └── 300-SSL_set_tlsext_host_name.patch │ ├── gettext-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 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 │ │ │ └── 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 │ ├── 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 │ ├── 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 │ ├── libubox │ │ └── Makefile │ ├── libusb-compat │ │ └── Makefile │ ├── libusb │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-timerfd.patch │ ├── lzo │ │ └── Makefile │ ├── ncurses │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-ncurses-5.6-20080112-urxvt.patch │ │ │ ├── 101-ncurses-5.6-20080628-kbs.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 │ │ │ ├── 210-termios_fix.patch │ │ │ └── 220-fix-no-ec-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 │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ └── zlib │ │ └── Makefile ├── network │ ├── config │ │ ├── firewall │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── firewall.config │ │ │ │ ├── firewall.hotplug │ │ │ │ ├── firewall.init │ │ │ │ └── firewall.user │ │ ├── gre │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── gre.sh │ │ ├── ipip │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── ipip.sh │ │ ├── ltq-adsl-app │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── dsl_control │ │ │ └── patches │ │ │ │ └── 010-eglibc_compile_fix.patch │ │ ├── ltq-vdsl-app │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── dsl_control │ │ │ └── patches │ │ │ │ └── 100-compat.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 │ ├── 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 │ │ ├── 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 │ │ ├── ead │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── aes.c │ │ │ │ ├── ead-client.c │ │ │ │ ├── ead-crypt.c │ │ │ │ ├── ead-crypt.h │ │ │ │ ├── ead-pcap.h │ │ │ │ ├── ead.c │ │ │ │ ├── ead.h │ │ │ │ ├── filter.c │ │ │ │ ├── libbridge.h │ │ │ │ ├── libbridge_init.c │ │ │ │ ├── libbridge_private.h │ │ │ │ ├── list.h │ │ │ │ ├── passwd │ │ │ │ ├── pfc.c │ │ │ │ ├── pw_encrypt_md5.c │ │ │ │ ├── sha1.c │ │ │ │ └── tinysrp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Notes │ │ │ │ ├── acconfig.h │ │ │ │ ├── acinclude.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── bn.h │ │ │ │ ├── bn_add.c │ │ │ │ ├── bn_asm.c │ │ │ │ ├── bn_ctx.c │ │ │ │ ├── bn_div.c │ │ │ │ ├── bn_exp.c │ │ │ │ ├── bn_lcl.h │ │ │ │ ├── bn_lib.c │ │ │ │ ├── bn_mul.c │ │ │ │ ├── bn_prime.h │ │ │ │ ├── bn_shift.c │ │ │ │ ├── bn_sqr.c │ │ │ │ ├── bn_word.c │ │ │ │ ├── clitest.c │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── install-sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── srvtest.c │ │ │ │ ├── stamp-h.in │ │ │ │ ├── t_client.c │ │ │ │ ├── t_client.h │ │ │ │ ├── t_conf.c │ │ │ │ ├── t_conv.c │ │ │ │ ├── t_defines.h │ │ │ │ ├── t_getconf.c │ │ │ │ ├── t_getpass.c │ │ │ │ ├── t_math.c │ │ │ │ ├── t_misc.c │ │ │ │ ├── t_pw.c │ │ │ │ ├── t_pwd.h │ │ │ │ ├── t_read.c │ │ │ │ ├── t_read.h │ │ │ │ ├── t_server.c │ │ │ │ ├── t_server.h │ │ │ │ ├── t_sha.c │ │ │ │ ├── t_sha.h │ │ │ │ ├── t_truerand.c │ │ │ │ ├── tconf.c │ │ │ │ ├── tinysrp.c │ │ │ │ ├── tinysrp.h │ │ │ │ ├── tpasswd │ │ │ │ └── tphrase.c │ │ ├── hostapd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── hostapd-full.config │ │ │ │ ├── hostapd-mini.config │ │ │ │ ├── hostapd.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── netifd.sh │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ ├── wpa_supplicant-mesh.config │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ ├── wpa_supplicant.sh │ │ │ │ └── wps-hotplug.sh │ │ │ └── patches │ │ │ │ ├── 001-P2P-Validate-SSID-element-length-before-copying-it-C.patch │ │ │ │ ├── 110-bool_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 │ │ │ │ ├── 440-max_num_sta_probe.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 │ │ ├── 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 │ │ │ │ ├── 001-priv-don-t-lookup-for-_lldpd-when-privsep-is-disable.patch │ │ │ │ └── 002-no-stack-protector.patch │ │ ├── mdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── mdns.config │ │ │ │ ├── mdns.init │ │ │ │ └── mdns.json │ │ ├── odhcpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.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-backport_cipher_none_fix.patch │ │ │ │ ├── 100-polarssl_compat.h │ │ │ │ └── 110-musl_compat.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 │ │ │ │ ├── 010-use_target_for_configure.patch │ │ │ │ ├── 100-debian_ip-ip_option.patch │ │ │ │ ├── 101-debian_close_dev_ppp.patch │ │ │ │ ├── 103-debian_fix_link_pidfile.patch │ │ │ │ ├── 105-debian_demand.patch │ │ │ │ ├── 106-debian_stripMSdomain.patch │ │ │ │ ├── 107-debian_pppoatm_wildcard.patch │ │ │ │ ├── 110-debian_defaultroute.patch │ │ │ │ ├── 120-debian_ipv6_updown_option.patch │ │ │ │ ├── 121-debian_adaptive_lcp_echo.patch │ │ │ │ ├── 130-no_cdefs_h.patch │ │ │ │ ├── 131-missing_prototype_macro.patch │ │ │ │ ├── 132-fix_linux_includes.patch │ │ │ │ ├── 133-fix_sha1_include.patch │ │ │ │ ├── 140-pppoe_compile_fix.patch │ │ │ │ ├── 200-makefile.patch │ │ │ │ ├── 201-mppe_mppc_1.1.patch │ │ │ │ ├── 202-no_strip.patch │ │ │ │ ├── 203-opt_flags.patch │ │ │ │ ├── 204-radius_config.patch │ │ │ │ ├── 205-no_exponential_timeout.patch │ │ │ │ ├── 206-compensate_time_change.patch │ │ │ │ ├── 207-lcp_mtu_max.patch │ │ │ │ ├── 208-fix_status_code.patch │ │ │ │ ├── 300-filter-pcap-includes-lib.patch │ │ │ │ ├── 310-precompile_filter.patch │ │ │ │ ├── 320-custom_iface_names.patch │ │ │ │ ├── 321-multilink_support_custom_iface_names.patch │ │ │ │ ├── 330-retain_foreign_default_routes.patch │ │ │ │ ├── 340-populate_default_gateway.patch │ │ │ │ ├── 400-simplify_kernel_checks.patch │ │ │ │ ├── 401-no_record_file.patch │ │ │ │ ├── 403-no_wtmp.patch │ │ │ │ ├── 404-remove_obsolete_protocol_names.patch │ │ │ │ ├── 405-no_multilink_option.patch │ │ │ │ ├── 500-add-pptp-plugin.patch │ │ │ │ ├── 510-pptp_compile_fix.patch │ │ │ │ ├── 520-uniq.patch │ │ │ │ ├── 530-pppoe_send_padt.patch │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ └── patches │ │ │ └── 100-missing_include.patch │ │ ├── curl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-check_long_long.patch │ │ │ ├── 200-no_docs_tests.patch │ │ │ └── 300-fix-disable-crypto-auth.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 100-do-not-use-defdname.patch │ │ │ └── 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 │ │ ├── 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 │ │ │ ├── 210-add-act_connmark.patch │ │ │ ├── 300-ip_tiny.patch │ │ │ ├── 900-drop_FAILED_POLICY.patch │ │ │ └── 910-sanitize_headers_for_musl.patch │ │ ├── ipset │ │ └── Makefile │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 020-iptables-disable-modprobe.patch │ │ │ ├── 030-no-libnfnetlink.patch │ │ │ ├── 100-bash-location.patch │ │ │ ├── 200-configurable_builtin.patch │ │ │ ├── 300-musl_fixes.patch │ │ │ ├── 400-lenient-restore.patch │ │ │ └── 500-add-xt_id-match.patch │ │ ├── iputils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-iputils.patch │ │ │ ├── 002-fix-ipv6.patch │ │ │ ├── 003-fix-makefile.patch │ │ │ ├── 010-ping6_uclibc_resolv.patch │ │ │ ├── 011-ping6_use_gnu_source.patch │ │ │ └── 020-include_fixes.patch │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 120-antenna_gain.patch │ │ │ └── 200-reduce_size.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ └── Makefile │ │ ├── linux-atm │ │ ├── Makefile │ │ ├── files │ │ │ └── br2684ctl │ │ └── patches │ │ │ ├── 000-debian_16.patch │ │ │ ├── 200-no_libfl.patch │ │ │ ├── 300-objcopy_path.patch │ │ │ └── 400-portability_fixes.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 │ │ ├── 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 │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ ├── mountd │ │ ├── Makefile │ │ ├── files │ │ │ ├── mountd.config │ │ │ └── mountd.init │ │ └── patches │ │ │ ├── 010-uci_rename_history_to_delta.patch │ │ │ ├── 020-handle_timeout.patch │ │ │ ├── 030-ext4_support.patch │ │ │ ├── 040-optional-daemonize.patch │ │ │ ├── 050-no_error_h.patch │ │ │ └── 060-link_libubox.patch │ ├── mtd │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── fis.c │ │ │ ├── fis.h │ │ │ ├── imagetag.c │ │ │ ├── jffs2.c │ │ │ ├── jffs2.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── mtd.c │ │ │ ├── mtd.h │ │ │ ├── seama.c │ │ │ ├── seama.h │ │ │ └── trx.c │ ├── opkg │ │ ├── Makefile │ │ ├── files │ │ │ ├── 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 │ ├── 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 │ ├── udev │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-build-don-t-use-gc-sections.patch │ │ │ ├── 0002-udevd-add-lrt-for-message-queue-symbols.patch │ │ │ └── 0003-add_btn_trigger_happy_define.patch │ ├── usign │ │ └── Makefile │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── admswconfig │ ├── Makefile │ ├── files │ │ ├── admswconfig │ │ └── admswswitch.sh │ └── patches │ │ └── 001-matrix.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 │ │ └── telnet │ └── patches │ │ ├── 001-resource_h_include.patch │ │ ├── 100-trylink_bash.patch │ │ ├── 101-gen_build_files_bash.patch │ │ ├── 110-no_static_libgcc.patch │ │ ├── 120-remove_uclibc_rpc_check.patch │ │ ├── 130-mconf_missing_sigwinch.patch │ │ ├── 200-udhcpc_reduce_msgs.patch │ │ ├── 201-udhcpc_changed_ifindex.patch │ │ ├── 203-udhcpc_renew_no_deconfig.patch │ │ ├── 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 │ │ ├── 280-fix_find_regression.patch │ │ └── 290-ash-fix-a-regression-in-handling-local-variables.patch │ ├── e2fsprogs │ ├── Makefile │ ├── files │ │ ├── e2fsck.conf │ │ └── e2fsck.sh │ └── patches │ │ └── 001-com_err_version.patch │ ├── fbtest │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── fbtest.c │ ├── fuse │ ├── Makefile │ └── patches │ │ ├── 100-missing_includes.patch │ │ └── 112-no_break_on_mknod.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 │ │ ├── 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 │ ├── otrx │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── otrx.c │ ├── px5g-standalone │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── library │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── havege.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── timing.c │ │ └── x509write.c │ │ ├── polarssl │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── bn_mul.h │ │ ├── config.h │ │ ├── havege.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── timing.h │ │ └── x509.h │ │ └── px5g.c │ ├── px5g │ ├── Makefile │ └── px5g.c │ ├── robocfg │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── etc53xx.h │ │ └── robocfg.c │ ├── spidev_test │ └── Makefile │ ├── ubi-utils │ ├── Makefile │ └── patches │ │ ├── 010-fix-rpmatch.patch │ │ ├── 100-fix_includes.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 │ │ ├── 0001-switch_root-improve-statfs-f_type-portability.patch │ │ ├── 0002-lib-colors-use-static-buffers-when-parse-scheme.patch │ │ ├── 001-no-printf-alloc.patch │ │ ├── 002-mkostemp.patch │ │ └── 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 ├── 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 ├── 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 ├── relink-lib.sh ├── remote-gdb ├── rstrip.sh ├── slugimage.pl ├── strip-kmod.sh ├── symlink-tree.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.mk │ │ ├── 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 │ │ │ │ ├── config │ │ │ │ └── network │ │ │ │ ├── diag.sh │ │ │ │ ├── init.d │ │ │ │ └── adam2 │ │ │ │ └── uci-defaults │ │ │ │ └── 02_network │ │ ├── config-3.18 │ │ ├── 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 │ │ │ ├── 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.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── net │ │ │ │ │ │ └── 10-ar922x-led-fix │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 81_load_ath10k_board_bin │ │ │ │ │ └── 82_patch_ath10k │ │ │ │ └── upgrade │ │ │ │ │ ├── allnet.sh │ │ │ │ │ ├── dir825.sh │ │ │ │ │ ├── openmesh.sh │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── wget2nand │ │ ├── config-3.18 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── ath79 │ │ │ │ │ ├── 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-ap96.c │ │ │ │ │ ├── mach-alfa-nx.c │ │ │ │ │ ├── mach-all0258n.c │ │ │ │ │ ├── mach-all0315n.c │ │ │ │ │ ├── mach-ap113.c │ │ │ │ │ ├── mach-ap132.c │ │ │ │ │ ├── mach-ap83.c │ │ │ │ │ ├── mach-ap96.c │ │ │ │ │ ├── mach-archer-c7.c │ │ │ │ │ ├── mach-aw-nr580.c │ │ │ │ │ ├── mach-bhu-bxu2000n2-a.c │ │ │ │ │ ├── mach-cap4200ag.c │ │ │ │ │ ├── mach-carambola2.c │ │ │ │ │ ├── mach-cpe510.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-825-b1.c │ │ │ │ │ ├── mach-dir-825-c1.c │ │ │ │ │ ├── mach-dragino2.c │ │ │ │ │ ├── mach-eap300v2.c │ │ │ │ │ ├── mach-eap7660d.c │ │ │ │ │ ├── mach-el-m150.c │ │ │ │ │ ├── mach-el-mini.c │ │ │ │ │ ├── mach-esr1750.c │ │ │ │ │ ├── mach-esr900.c │ │ │ │ │ ├── mach-ew-dorin.c │ │ │ │ │ ├── mach-f9k1115v2.c │ │ │ │ │ ├── mach-gl-inet.c │ │ │ │ │ ├── mach-gs-oolite.c │ │ │ │ │ ├── mach-hiwifi-hc6361.c │ │ │ │ │ ├── mach-hornet-ub.c │ │ │ │ │ ├── mach-ja76pf.c │ │ │ │ │ ├── mach-jwap003.c │ │ │ │ │ ├── mach-mc-mac1200r.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-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-tew-632brp.c │ │ │ │ │ ├── mach-tew-673gru.c │ │ │ │ │ ├── mach-tew-712br.c │ │ │ │ │ ├── mach-tew-732br.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-wa830re-v2.c │ │ │ │ │ ├── mach-tl-wa901nd-v2.c │ │ │ │ │ ├── mach-tl-wa901nd.c │ │ │ │ │ ├── mach-tl-wax50re.c │ │ │ │ │ ├── mach-tl-wdr3500.c │ │ │ │ │ ├── mach-tl-wdr4300.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.c │ │ │ │ │ ├── mach-tube2h.c │ │ │ │ │ ├── mach-ubnt.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-wpj344.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 │ │ │ │ │ ├── nvram.c │ │ │ │ │ ├── nvram.h │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ ├── pci-ath9k-fixup.h │ │ │ │ │ ├── routerboot.c │ │ │ │ │ └── routerboot.h │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ ├── fw │ │ │ │ │ └── myloader │ │ │ │ │ │ └── myloader.h │ │ │ │ │ └── mach-ath79 │ │ │ │ │ ├── ag71xx_platform.h │ │ │ │ │ ├── mach-rb750.h │ │ │ │ │ └── rb4xx_cpld.h │ │ │ ├── drivers │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio-latch.c │ │ │ │ │ └── gpio-nxp-74hc153.c │ │ │ │ ├── leds │ │ │ │ │ ├── leds-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 │ │ │ │ │ ├── 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 │ │ │ │ ├── alfa.mk │ │ │ │ ├── allnet.mk │ │ │ │ ├── atheros.mk │ │ │ │ ├── atlantis.mk │ │ │ │ ├── belkin.mk │ │ │ │ ├── bhu.mk │ │ │ │ ├── buffalo.mk │ │ │ │ ├── compex.mk │ │ │ │ ├── d-link.mk │ │ │ │ ├── dragino.mk │ │ │ │ ├── easylink.mk │ │ │ │ ├── engenius.mk │ │ │ │ ├── ew.mk │ │ │ │ ├── gl-connect.mk │ │ │ │ ├── hiwifi.mk │ │ │ │ ├── jjplus.mk │ │ │ │ ├── linksys.mk │ │ │ │ ├── mercury.mk │ │ │ │ ├── nclink.mk │ │ │ │ ├── netgear.mk │ │ │ │ ├── oolite.mk │ │ │ │ ├── openmesh.mk │ │ │ │ ├── pcs.mk │ │ │ │ ├── planex.mk │ │ │ │ ├── qihoo.mk │ │ │ │ ├── redwave.mk │ │ │ │ ├── rosewill.mk │ │ │ │ ├── senao.mk │ │ │ │ ├── sitecom.mk │ │ │ │ ├── tp-link.mk │ │ │ │ ├── trendnet.mk │ │ │ │ ├── ubnt.mk │ │ │ │ ├── wd.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 │ │ │ │ ├── netgear.mk │ │ │ │ └── zyxel.mk │ │ │ └── target.mk │ │ └── patches-3.18 │ │ │ ├── 102-MIPS-ath79-Avoid-using-unitialized-reg-variable.patch │ │ │ ├── 206-spi-ath79-make-chipselect-logic-more-flexible.patch │ │ │ ├── 213-MIPS-ath79-fix-ar933x-wmac-reset.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 │ │ │ ├── 425-net-phy-at803x-allow-to-configure-via-pdata.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 │ │ │ ├── 480-ar913x_wmac_external_reset.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-openwrt-machines.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 │ │ │ ├── 707-MIPS-ath79-add-support-for-QCA953x-SoC.patch │ │ │ ├── 727-MIPS-ath79-ar934x-wmac-revision.patch │ │ │ ├── 728-MIPS-ath79-fix-restart.patch │ │ │ ├── 735-MIPS-ath79-add-support-for-QCA956x-SoC.patch │ │ │ ├── 736-MIPS-ath79-add-MC-MAC1200R-support.patch │ │ │ ├── 736-MIPS-ath79-fix-chained-irq-disable.patch │ │ │ ├── 737-MIPS-ath79-add-om5p-an-support.patch │ │ │ ├── 800-MIPS-ath79-add-RB922GS-support.patch │ │ │ ├── 901-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 902-unaligned_access_hacks.patch │ │ │ └── 903-MIPS-ath79-ubnt-rocket-m-xw-support.patch │ ├── arm64 │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-default │ │ └── image │ │ │ ├── Makefile │ │ │ └── boot-wrapper │ │ │ └── Makefile │ ├── at91 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── config │ │ │ │ │ ├── firewall │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_at91.sh │ │ ├── config-default │ │ ├── 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 │ │ │ ├── 100-ARM-at91-build-dtb-for-LMU5000.patch │ │ │ ├── 101-ARM-at91-build-dtb-for-q5xr5.patch │ │ │ ├── 200-ARM-at91-udc-clockfix-backport.patch │ │ │ ├── 805-free_some_portc_pins.patch │ │ │ └── 901-AT91-flexibity-default-leds-to-heartbeat.patch │ │ └── sama5d3 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── atmel.mk │ │ │ └── target.mk │ ├── ath25 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── system │ │ │ │ ├── hotplug.d │ │ │ │ │ └── button │ │ │ │ │ │ └── 00-button │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── 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.mk │ │ ├── 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-3.18 │ │ ├── files │ │ │ ├── drivers │ │ │ │ ├── firmware │ │ │ │ │ └── broadcom │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── bcm47xx_nvram.c │ │ │ │ ├── misc │ │ │ │ │ └── bcm47xx-sprom.c │ │ │ │ └── mtd │ │ │ │ │ └── spi-nor │ │ │ │ │ └── bcm53xxspiflash.c │ │ │ └── include │ │ │ │ └── linux │ │ │ │ └── bcm47xx_nvram.h │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-3.18 │ │ │ ├── 003-mtd-spi-nor-from-3.19.patch │ │ │ ├── 004-mtd-spi-nor-from-3.20.patch │ │ │ ├── 043-ARM-BCM5301X-fix-early-serial-console.patch │ │ │ ├── 044-ARM-BCM5301X-Add-Broadcom-s-bus-axi-to-the-DTS-file.patch │ │ │ ├── 045-ARM-BCM5301X-Add-LEDs-for-Netgear-R6250-V1.patch │ │ │ ├── 046-ARM-BCM5301X-Add-IRQs-to-Broadcom-s-bus-axi-in-DTS-f.patch │ │ │ ├── 047-ARM-BCM5301X-Add-buttons-for-Netgear-R6250.patch │ │ │ ├── 048-ARM-BCM5301X-Add-DT-for-Netgear-R6300-V2.patch │ │ │ ├── 049-ARM-BCM5301X-Add-DT-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 050-ARM-BCM5301X-Add-DT-for-Asus-RT-N18U.patch │ │ │ ├── 051-ARM-BCM5301X-Add-DT-for-Buffalo-WZR-600DHP2.patch │ │ │ ├── 052-ARM-BCM5301X-Add-DT-for-Luxul-XWC-1000.patch │ │ │ ├── 053-ARM-BCM5301X-Drop-unused-poll-interval-from-gpio-key.patch │ │ │ ├── 054-ARM-BCM5301X-Add-LEDs-for-Buffalo-devices.patch │ │ │ ├── 055-ARM-BCM5301X-Add-DT-for-Buffalo-WZR-900DHP.patch │ │ │ ├── 056-ARM-BCM5301X-Add-DT-for-Netgear-R8000.patch │ │ │ ├── 057-ARM-BCM5301X-Fix-default-state-of-power-LEDs-on-Netg.patch │ │ │ ├── 080-watchdog-bcm47xx_wdt.c-add-restart-handler-support.patch │ │ │ ├── 081-watchdog-bcm47xx_wdt.c-allow-enabling-on-BCM5301X-ar.patch │ │ │ ├── 110-firmware-backport-NVRAM-driver.patch │ │ │ ├── 112-bcm53xx-sprom-add-sprom-driver.patch │ │ │ ├── 130-ARM-BCM5301X-register-bcma-bus.patch │ │ │ ├── 131-ARM-BCM5301X-Implement-SMP-support.patch │ │ │ ├── 132-ARM-BCM5301X-Ignore-another-BCM4709-specific-fault-c.patch │ │ │ ├── 133-ARM-BCM5301X-Add-DT-for-Asus-RT-AC68U.patch │ │ │ ├── 134-ARM-BCM5301X-Add-DT-for-Asus-RT-AC56U.patch │ │ │ ├── 150-pci-do-not-probe-too-early.patch │ │ │ ├── 170-pcie2-bcma-add-new-PCIe2-driver-for-bcma.patch │ │ │ ├── 180-bcma_set_gpio_base.patch │ │ │ ├── 181-bcma-ngpio-bcm4707.patch │ │ │ ├── 190-bcma_hcd_add_bcm5301x_support.patch │ │ │ ├── 191-bcma_hcd_add_gpio_power_control.patch │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-for-decompression.patch │ │ │ ├── 303-ARM-BCM5310X-Enable-earlyprintk-on-tested-devices.patch │ │ │ ├── 305-ARM-BCM53XX-set-customized-AUXCTL.patch │ │ │ ├── 306-ARM-BCM5301X-Specify-RAM-on-devices-by-including-HIG.patch │ │ │ ├── 322-ARM-BCM5301X-Add-DT-for-Asus-RT-AC87U.patch │ │ │ ├── 330-ARM-BCM5301X-Add-DT-for-Buffalo-WXR-1900DHP.patch │ │ │ ├── 331-ARM-BCM5301X-Add-USB-LED-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 332-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 340-ARM-BCM5301X-Add-profiling-support.patch │ │ │ ├── 351-ARM-BCM5301X-Enable-ChipCommon-UART-serial-console.patch │ │ │ ├── 400-mtd-bcm47xxpart-scan-whole-flash-on-ARCH_BCM_5301X.patch │ │ │ ├── 404-mtd-bcm53xxspiflash-new-driver-for-SPI-flahes-on-Bro.patch │ │ │ ├── 420-mtd-bcm5301x_nand.patch │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ └── 800-bcma-use-two-different-initcalls-if-built-in.patch │ │ └── profiles │ │ │ └── 100-Generic.mk │ ├── brcm2708 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── brcm2708.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_brcm2708.sh │ │ ├── bcm2708 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── RaspberryPi.mk │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── RaspberryPi2.mk │ │ │ └── target.mk │ │ ├── config-3.18 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ └── patches-3.18 │ │ │ ├── 0001-Main-bcm2708-linux-port.patch │ │ │ ├── 0002-Add-bcm2708_gpio-driver.patch │ │ │ ├── 0003-Add-quick-config.patch │ │ │ ├── 0004-Add-dwc_otg-driver.patch │ │ │ ├── 0005-bcm2708-watchdog-driver.patch │ │ │ ├── 0006-Add-non-mainline-source-for-rtl8192cu-wireless-drive.patch │ │ │ ├── 0007-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 0008-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 0009-bcm2708-framebuffer-driver.patch │ │ │ ├── 0010-bcm2708-vchiq-driver.patch │ │ │ ├── 0011-vchiq-Avoid-high-load-when-blocked-and-unkillable.patch │ │ │ ├── 0012-cma-Add-vc_cma-driver-to-enable-use-of-CMA.patch │ │ │ ├── 0013-bcm2708-alsa-sound-driver.patch │ │ │ ├── 0014-Add-hwrng-hardware-random-number-generator-driver.patch │ │ │ ├── 0015-lirc-added-support-for-RaspberryPi-GPIO.patch │ │ │ ├── 0016-Add-cpufreq-driver.patch │ │ │ ├── 0017-Added-hwmon-thermal-driver-for-reporting-core-temper.patch │ │ │ ├── 0018-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 0019-Add-Chris-Boot-s-i2c-and-spi-drivers.patch │ │ │ ├── 0020-Perform-I2C-combined-transactions-when-possible.patch │ │ │ ├── 0021-enabling-the-realtime-clock-1-wire-chip-DS1307-and-1.patch │ │ │ ├── 0022-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 0023-config-add-missing-options-from-3.6.y-kernel.patch │ │ │ ├── 0024-config-Enable-CONFIG_MEMCG-but-leave-it-disabled-due.patch │ │ │ ├── 0025-Add-FIQ-patch-to-dwc_otg-driver.-Enable-with-dwc_otg.patch │ │ │ ├── 0026-dwc_otg-fiq_fsm-Base-commit-for-driver-rewrite.patch │ │ │ ├── 0027-bcm2835-add-v4l2-camera-device.patch │ │ │ ├── 0028-V4L2-Fixes-from-6by9.patch │ │ │ ├── 0029-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 0030-ASoC-Add-support-for-BCM2708.patch │ │ │ ├── 0031-ASoC-Add-support-for-PCM5102A-codec.patch │ │ │ ├── 0032-BCM2708-Add-I2S-support-to-board-file.patch │ │ │ ├── 0033-ASoC-Add-support-for-HifiBerry-DAC.patch │ │ │ ├── 0034-BCM2708-Add-HifiBerry-DAC-to-board-file.patch │ │ │ ├── 0035-BCM2708-Add-I2S-and-DMA-support-to-default-config.patch │ │ │ ├── 0036-ASoC-BCM2708-Add-support-for-RPi-DAC.patch │ │ │ ├── 0037-ASoC-wm8804-Implement-MCLK-configuration-options-add.patch │ │ │ ├── 0038-ASoC-BCM-Add-support-for-HiFiBerry-Digi.-Driver-is-b.patch │ │ │ ├── 0039-BCM2708-Added-support-for-HiFiBerry-Digi-board-Board.patch │ │ │ ├── 0040-BCM2708-Added-HiFiBerry-Digi-configuration-option-It.patch │ │ │ ├── 0041-ASoC-wm8804-Set-idle_bias_off-to-false-Idle-bias-has.patch │ │ │ ├── 0042-Add-IQaudIO-Sound-Card-support-for-Raspberry-Pi.patch │ │ │ ├── 0043-pcm512x-Use-a-range-macro-for-Volume-and-rename-to-P.patch │ │ │ ├── 0044-vmstat-Workaround-for-issue-where-dirty-page-count-g.patch │ │ │ ├── 0045-dwc_otg-Fix-various-issues-with-root-port-and-transa.patch │ │ │ ├── 0046-fiq_fsm-Implement-hack-for-Split-Interrupt-transacti.patch │ │ │ ├── 0047-spi-bcm2708-Prepare-for-Common-Clock-Framework-migra.patch │ │ │ ├── 0048-BCM2708-Migrate-to-the-Common-Clock-Framework.patch │ │ │ ├── 0049-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 0050-BCM2708-armctrl-Add-IRQ-Device-Tree-support.patch │ │ │ ├── 0051-BCM2708-use-pinctrl-bcm2835.patch │ │ │ ├── 0052-spi-bcm2708-add-device-tree-support.patch │ │ │ ├── 0053-i2c-bcm2708-add-device-tree-support.patch │ │ │ ├── 0054-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 0055-usb-core-make-overcurrent-messages-more-prominent.patch │ │ │ ├── 0056-vcsm-VideoCore-shared-memory-service-for-BCM2835.patch │ │ │ ├── 0057-Revert-ARM-dma-Use-dma_pfn_offset-for-dma-address-tr.patch │ │ │ ├── 0058-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 0059-mmc-Disable-CMD23-transfers-on-all-cards.patch │ │ │ ├── 0060-Added-support-for-HiFiBerry-DAC.patch │ │ │ ├── 0061-Added-driver-for-HiFiBerry-Amp-amplifier-add-on-boar.patch │ │ │ ├── 0062-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 0063-bcm2708-Allow-option-card-devices-to-be-configured-v.patch │ │ │ ├── 0064-Adding-Device-Tree-support-for-some-RPi-audio-cards.patch │ │ │ ├── 0065-fdt-Add-support-for-the-CONFIG_CMDLINE_EXTEND-option.patch │ │ │ ├── 0066-config-Enable-device-tree.patch │ │ │ ├── 0067-DT-Add-overrides-to-enable-i2c0-i2c1-spi-and-i2s.patch │ │ │ ├── 0068-lirc-rpi-Add-device-tree-support-and-a-suitable-over.patch │ │ │ ├── 0069-Fix-the-activity-LED-in-DT-mode.patch │ │ │ ├── 0070-Adding-w1-gpio-device-tree-overlays.patch │ │ │ ├── 0071-config-Enable-CONFIG_PPS.patch │ │ │ ├── 0072-config-Add-CONFIG_IP_NF-options.patch │ │ │ ├── 0073-config-Restore-some-missing-options.patch │ │ │ ├── 0074-TAS5713-return-error-if-initialisation-fails.patch │ │ │ ├── 0075-scripts-dtc-Update-to-upstream-version-with-overlay-.patch │ │ │ ├── 0076-BCM2708_DT-Build-the-overlays-as-well.patch │ │ │ ├── 0077-Add-device-tree-overlay-for-HiFiBerry-Amp-Amp.patch │ │ │ ├── 0078-Add-pps-gpio-DT-overlay.patch │ │ │ ├── 0079-config-Remove-STRICT_DEVMEM.patch │ │ │ ├── 0080-I2C-Only-register-the-I2C-device-for-the-current-boa.patch │ │ │ ├── 0081-Added-support-to-reserve-enable-a-GPIO-pin-to-be-use.patch │ │ │ ├── 0082-BCM2708_DT-Correct-length-of-the-peripheral-space.patch │ │ │ ├── 0083-BCM2708_DT-Add-pcf8523-rtc-overlay.patch │ │ │ ├── 0084-Add-a-parameter-to-turn-off-SPDIF-output-if-no-audio.patch │ │ │ ├── 0085-bugfix-for-32kHz-sample-rate-was-missing.patch │ │ │ ├── 0086-Update-ds1307-driver-for-device-tree-support.patch │ │ │ ├── 0087-Add-device-tree-overlay-for-ds1307.patch │ │ │ ├── 0088-config-Add-DVB_USB_DVBSKY.patch │ │ │ ├── 0089-Add-2709-platform-for-Raspberry-Pi-2.patch │ │ │ ├── 0090-bcm2709-Simplify-and-strip-down-IRQ-handler.patch │ │ │ ├── 0091-dwc_otg-FIQ-support-on-SMP.-Set-up-FIQ-stack-and-han.patch │ │ │ ├── 0092-dwc_otg-introduce-fiq_fsm_spin-un-lock.patch │ │ │ ├── 0093-fiq_fsm-fix-build-on-bcm2708-and-bcm2709-platforms.patch │ │ │ ├── 0094-dwc_otg-put-some-barriers-back-where-they-should-be-.patch │ │ │ ├── 0095-mach_bcm2709-Add-Mailbox-resources-to-USB-driver.patch │ │ │ ├── 0096-bcm2709-dwc_otg-Setup-FIQ-on-core-1-if-1-core-active.patch │ │ │ ├── 0097-bcm2709-Port-pps-gpio-and-i2c-patches.patch │ │ │ ├── 0098-bcm2709-Also-accept-the-2708-machine-ID.patch │ │ │ ├── 0099-BCM2709_DT-Fix-bad-merge.patch │ │ │ ├── 0100-HiFiBerry-Amp-fix-device-tree-problems.patch │ │ │ ├── 0101-BCM270x_DT-Add-i2c0_baudrate-and-i2c1_baudrate-param.patch │ │ │ ├── 0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch │ │ │ ├── 0103-w1-gpio-Sort-out-the-pullup-parasitic-power-tangle.patch │ │ │ ├── 0104-config-Add-USBIP.patch │ │ │ ├── 0105-dwc_otg-fixup-read-modify-write-in-critical-paths.patch │ │ │ ├── 0106-BCM2709_DT-Set-the-always-on-flag-for-the-timer-to-e.patch │ │ │ ├── 0107-i2c_bcm2708-Fix-clock-reference-counting.patch │ │ │ ├── 0108-BCM270x_DT-Rename-the-activity-LED-back-to-the-prosa.patch │ │ │ ├── 0109-Add-device-tree-overlay-for-pcf2127.patch │ │ │ ├── 0110-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 0111-BCM2708_VCIO-Add-automatic-creation-of-device-node.patch │ │ │ ├── 0112-Fix-grabbing-lock-from-atomic-context-in-i2c-driver.patch │ │ │ ├── 0113-config-Add-ENC28J60-SPI-ethernet-module.patch │ │ │ └── 1000-BCM2708-fix-SPIDEV.patch │ ├── brcm47xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── init.d │ │ │ │ │ ├── netconfig │ │ │ │ │ └── wmacfixup │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_network_migration │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_init_interfaces_brcm │ │ │ │ └── 15_set_preinit_interface_brcm │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── 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-3.18 │ │ │ ├── 030-01-MIPS-BCM47XX-Get-rid-of-calls-to-KSEG1ADDR.patch │ │ │ ├── 030-02-MIPS-BCM47XX-Make-ssb-init-NVRAM-instead-of-bcm47xx-.patch │ │ │ ├── 030-03-MIPS-BCM47XX-Make-bcma-init-NVRAM-instead-of-bcm47xx.patch │ │ │ ├── 030-04-MIPS-BCM47XX-Move-SPROM-fallback-code-into-sprom.c.patch │ │ │ ├── 030-05-MIPS-BCM47XX-Initialize-bcma-bus-later-with-mm-avail.patch │ │ │ ├── 030-06-MIPS-BCM47XX-Use-mtd-as-an-alternative-way-API-to-ge.patch │ │ │ ├── 030-07-MIPS-BCM47XX-Clean-up-nvram-header.patch │ │ │ ├── 031-01-MIPS-BCM47XX-Support-SPROM-prefixes-for-PCI-devices.patch │ │ │ ├── 031-02-MIPS-BCM47XX-Fix-detecting-Microsoft-MN-700-Asus-WL5.patch │ │ │ ├── 031-03-MIPS-BCM47XX-Use-helpers-for-reading-NVRAM-content.patch │ │ │ ├── 031-04-MIPS-BCM47XX-Use-strnchr-to-avoid-reading-out-of-the.patch │ │ │ ├── 031-05-MIPS-BCM47xx-Move-NVRAM-header-to-the-include-linux.patch │ │ │ ├── 031-06-MIPS-BCM47XX-Fix-coding-style-to-match-kernel-standa.patch │ │ │ ├── 031-07-MIPS-BCM47XX-Include-io.h-directly-and-fix-brace-ind.patch │ │ │ ├── 031-08-MIPS-BCM47XX-Increase-NVRAM-buffer-size-to-64-KiB.patch │ │ │ ├── 031-09-MIPS-BCM47XX-Don-t-try-guessing-NVRAM-size-on-MTD-pa.patch │ │ │ ├── 031-10-MIPS-BCM47xx-Keep-ID-entries-for-non-standard-device.patch │ │ │ ├── 031-11-MIPS-BCM47xx-Devices-database-update-for-4.1-or-4.2.patch │ │ │ ├── 031-12-MIPS-BCM47xx-Add-generic-function-filling-SPROM-entr.patch │ │ │ ├── 031-13-MIPS-BCM47xx-Move-filling-most-of-SPROM-to-the-gener.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.0 │ │ │ ├── 030-01-MIPS-BCM47XX-Support-SPROM-prefixes-for-PCI-devices.patch │ │ │ ├── 030-02-MIPS-BCM47XX-Fix-detecting-Microsoft-MN-700-Asus-WL5.patch │ │ │ ├── 030-03-MIPS-BCM47XX-Use-helpers-for-reading-NVRAM-content.patch │ │ │ ├── 030-04-MIPS-BCM47XX-Use-strnchr-to-avoid-reading-out-of-the.patch │ │ │ ├── 030-05-MIPS-BCM47xx-Move-NVRAM-header-to-the-include-linux.patch │ │ │ ├── 030-06-MIPS-BCM47XX-Fix-coding-style-to-match-kernel-standa.patch │ │ │ ├── 030-07-MIPS-BCM47XX-Include-io.h-directly-and-fix-brace-ind.patch │ │ │ ├── 030-08-MIPS-BCM47XX-Increase-NVRAM-buffer-size-to-64-KiB.patch │ │ │ ├── 030-09-MIPS-BCM47XX-Don-t-try-guessing-NVRAM-size-on-MTD-pa.patch │ │ │ ├── 030-10-MIPS-BCM47xx-Keep-ID-entries-for-non-standard-device.patch │ │ │ ├── 030-11-MIPS-BCM47xx-Devices-database-update-for-4.1-or-4.2.patch │ │ │ ├── 030-12-MIPS-BCM47xx-Add-generic-function-filling-SPROM-entr.patch │ │ │ ├── 030-13-MIPS-BCM47xx-Move-filling-most-of-SPROM-to-the-gener.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 │ ├── brcm63xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 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-3.18 │ │ ├── dts │ │ │ ├── a226g.dts │ │ │ ├── a226m-fwb.dts │ │ │ ├── a226m.dts │ │ │ ├── a4001n.dts │ │ │ ├── a4001n1.dts │ │ │ ├── agpf-s0.dts │ │ │ ├── ar-5381u.dts │ │ │ ├── ar-5387un.dts │ │ │ ├── ar1004g.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 │ │ │ ├── fast2704v2.dts │ │ │ ├── gw6000.dts │ │ │ ├── gw6200.dts │ │ │ ├── hg520v.dts │ │ │ ├── hg553.dts │ │ │ ├── hg556a-a.dts │ │ │ ├── hg556a-b.dts │ │ │ ├── hg556a-c.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 │ │ │ ├── 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 │ │ │ └── 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 │ │ │ └── redbootscript.template │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-spi-spi-gpio-Add-dt-support-for-a-single-device-with.patch │ │ │ ├── 030-MIPS-Always-use-IRQ-domains-for-CPU-IRQs.patch │ │ │ ├── 031-MIPS-Rename-mips_cpu_intc_init-mips_cpu_irq_of_init.patch │ │ │ ├── 032-MIPS-Provide-a-generic-plat_irq_dispatch.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 │ │ │ ├── 204-USB-OHCI-allow-other-arches-to-use-the-BE-frame-numb.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 │ │ │ ├── 300-reset_buttons.patch │ │ │ ├── 301-led_count.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 │ │ │ ├── 366-MIPS-add-support-for-vmlinux.bin-appended-DTB.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 │ │ │ ├── 426-bcm63xx_enet-fix-napi-poll-return-value.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 │ │ │ ├── 553-boards_probe_switch.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 │ │ │ ├── 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 │ │ │ ├── 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-3.18 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── mach-cns3xxx │ │ │ │ │ ├── cns3xxx_fiq.S │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── headsmp.S │ │ │ │ │ ├── hotplug.c │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── smp.h │ │ │ │ │ ├── laguna.c │ │ │ │ │ ├── localtimer.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-3.18 │ │ │ ├── 000-cns3xxx_arch_include.patch │ │ │ ├── 001-cns3xxx_section_fix.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 │ │ │ ├── 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 │ │ │ ├── 085-ethernet_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 │ │ │ ├── 200-broadcom_phy_reinit.patch │ │ │ └── 210-dwc2_defaults.patch │ ├── gemini │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 05_set_ether_mac_gemini │ │ ├── config-3.18 │ │ ├── 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 │ │ ├── raidsonic │ │ │ ├── config-3.18 │ │ │ └── target.mk │ │ └── wiligear │ │ │ └── target.mk │ ├── generic │ │ ├── PATCHES │ │ ├── base-files │ │ │ └── init │ │ ├── config-3.18 │ │ ├── config-4.0 │ │ ├── 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_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 │ │ │ ├── 025-bcma_backport.patch │ │ │ ├── 026-bcma-from-3.20.patch │ │ │ ├── 027-bcma-from-4.1.patch │ │ │ ├── 030-nl80211-Allow-set-network-namespace-by-fd.patch │ │ │ ├── 040-mtd-bcm47xxpart-backports-from-3.19.patch │ │ │ ├── 041-mtd-bcm47xxpart-backports-from-3.20.patch │ │ │ ├── 050-backport_netfilter_rtcache.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 │ │ │ ├── 077-13-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 077-14-bgmac-reset-all-4-GMAC-cores-on-init.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-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-pppoe-Use-workqueue-to-die-properly-when-a-PADT-is-r.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 │ │ │ ├── 200-fix_localversion.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 204-module_strip.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-bridge_header_fix.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 │ │ │ ├── 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-support-for-Xiaomi-specific-board_da.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 │ │ │ ├── 501-yaffs-add-missing-flush-arguments.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 │ │ │ ├── 643-bridge_remove_ipv6_dependency.patch │ │ │ ├── 644-bridge_optimize_netfilter_hooks.patch │ │ │ ├── 645-bridge_multicast_to_unicast.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 652-atm_header_changes.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 731-phy_mvswitch_3.10_compilation.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 733-phy_mvsw61xx.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 │ │ │ ├── 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 │ │ │ ├── 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-seccomp_log.patch │ │ └── patches-4.0 │ │ │ ├── 000-keep_initrafs_the_default.patch │ │ │ ├── 020-ssb_update.patch │ │ │ ├── 021-bcma-from-4.1.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 070-bgmac-register-fixed-PHY-for-ARM-BCM470X-BCM5301X-ch.patch │ │ │ ├── 071-bgmac-allow-enabling-on-ARCH_BCM_5301X.patch │ │ │ ├── 072-01-bgmac-fix-descriptor-frame-start-end-definitions.patch │ │ │ ├── 072-02-bgmac-implement-GRO-and-use-build_skb.patch │ │ │ ├── 072-03-bgmac-implement-scatter-gather-support.patch │ │ │ ├── 072-04-bgmac-simplify-tx-ring-index-handling.patch │ │ │ ├── 072-05-bgmac-leave-interrupts-disabled-as-long-as-there-is-.patch │ │ │ ├── 072-06-bgmac-set-received-skb-headroom-to-NET_SKB_PAD.patch │ │ │ ├── 072-07-bgmac-simplify-rx-DMA-error-handling.patch │ │ │ ├── 072-08-bgmac-add-check-for-oversized-packets.patch │ │ │ ├── 072-09-bgmac-increase-rx-ring-size-from-511-to-512.patch │ │ │ ├── 072-10-bgmac-simplify-dma-init-cleanup.patch │ │ │ ├── 072-11-bgmac-fix-DMA-rx-corruption.patch │ │ │ ├── 072-12-bgmac-drop-ring-num_slots.patch │ │ │ ├── 072-13-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 072-14-bgmac-reset-all-4-GMAC-cores-on-init.patch │ │ │ ├── 072-15-bgmac-fix-requests-for-extra-polling-calls-from-NAPI.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 │ │ │ ├── 200-fix_localversion.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 204-module_strip.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-bridge_header_fix.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 │ │ │ ├── 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-support-for-Xiaomi-specific-board_da.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 │ │ │ ├── 501-yaffs-add-missing-flush-arguments.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 │ │ │ ├── 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 │ │ │ ├── 643-bridge_remove_ipv6_dependency.patch │ │ │ ├── 644-bridge_optimize_netfilter_hooks.patch │ │ │ ├── 645-bridge_multicast_to_unicast.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 652-atm_header_changes.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 │ │ │ ├── 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 │ │ │ ├── 731-phy_mvswitch_3.10_compilation.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 733-phy_mvsw61xx.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 │ │ │ ├── 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.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── imx6.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ ├── gw16083.c │ │ │ │ └── gw16083.h │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-3.18 │ │ │ ├── 100-bootargs.patch │ │ │ ├── 200-pci_designware_add-ability-for-custom-swizzle.patch │ │ │ ├── 201-pci_imx6_ventana_fixup-for-IRQ-mismapping.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-ARM-dts-imx6-ventana-Add-PCI-nodes-for-on-board-PCI-.patch │ │ └── profiles │ │ │ ├── 100-generic.mk │ │ │ ├── 110-wandboard.mk │ │ │ └── 120-gateworks.mk │ ├── ipq806x │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ ├── ipq806x.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_ipq806x.sh │ │ ├── config-3.18 │ │ ├── config-4.0 │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── 700-add-gmac-dts-suport.patch │ │ ├── patches-4.0 │ │ │ ├── 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 │ │ │ └── 700-add-gmac-dts-suport.patch │ │ └── profiles │ │ │ └── default.mk │ ├── ixp4xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ixp4xx.sh │ │ │ │ ├── preinit │ │ │ │ └── 05_set_ether_mac_ixp4xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── 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 │ ├── kirkwood │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ └── kirkwood.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-3.18 │ │ │ ├── 110-ib62x0.patch │ │ │ ├── 120-iomega_ix2_200.patch │ │ │ ├── 130-iconnect.patch │ │ │ ├── 140-dockstar.patch │ │ │ ├── 150-pogoplug_e02.patch │ │ │ ├── 160-ea4500.patch │ │ │ └── 170-ea3500.patch │ │ └── profiles │ │ │ ├── 100-generic.mk │ │ │ ├── 110-nas.mk │ │ │ ├── 115-router.mk │ │ │ └── 120-plug.mk │ ├── lantiq │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ ├── init.d │ │ │ │ │ ├── dsl_fs │ │ │ │ │ └── esi │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 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-3.18 │ │ ├── dts │ │ │ ├── ACMP252.dts │ │ │ ├── ARV4510PW.dts │ │ │ ├── ARV4518PWR01.dts │ │ │ ├── ARV4518PWR01A.dts │ │ │ ├── ARV4519PW.dts │ │ │ ├── ARV4520PW.dts │ │ │ ├── ARV4525PW.dts │ │ │ ├── ARV452CQW.dts │ │ │ ├── ARV7510PW22.dts │ │ │ ├── ARV7518PW.dts │ │ │ ├── ARV7519PW.dts │ │ │ ├── ARV7519RW22.dts │ │ │ ├── ARV7525PW.dts │ │ │ ├── ARV752DPW.dts │ │ │ ├── ARV752DPW22.dts │ │ │ ├── BTHOMEHUBV2B.dts │ │ │ ├── BTHOMEHUBV3A.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 │ │ │ ├── VG3503J.dts │ │ │ ├── VG3503J.dtsi │ │ │ ├── VG3503J_V2.dts │ │ │ ├── VGV7519.dtsi │ │ │ ├── VGV7519BRN.dts │ │ │ ├── VGV7519NOR.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-3.18 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0002-MIPS-lantiq-dtb-image-hack.patch │ │ │ ├── 0003-MIPS-lantiq-handle-vmmc-memory-reservation.patch │ │ │ ├── 0004-MIPS-lantiq-add-atm-hack.patch │ │ │ ├── 0005-MIPS-lantiq-add-reset-controller-api-support.patch │ │ │ ├── 0006-MIPS-lantiq-reboot-gphy-on-restart.patch │ │ │ ├── 0007-MIPS-lantiq-add-basic-tffs-driver.patch │ │ │ ├── 0008-MIPS-lantiq-backport-old-timer-code.patch │ │ │ ├── 0009-MIPS-lantiq-command-line-work-around.patch │ │ │ ├── 0010-MIPS-lantiq-export-soc-type.patch │ │ │ ├── 0011-lantiq-add-support-for-xrx200-firmware-depending-on-.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 │ │ │ ├── 0027-NET-add-of_get_mac_address_mtd.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 │ │ │ ├── 0033-SPI-MIPS-lantiq-adds-spi-xway.patch │ │ │ ├── 0034-reset-Fix-compile-when-reset-RESET_CONTROLLER-is-not.patch │ │ │ ├── 0035-owrt-lantiq-wifi-and-ethernet-eeprom-handling.patch │ │ │ ├── 0036-owrt-generic-dtb-image-hack.patch │ │ │ ├── 0037-MIPS-lantiq-move-eiu-init-after-irq_domain-register.patch │ │ │ ├── 0038-MIPS-lantiq-fpi-on-ar9.patch │ │ │ ├── 0039-MIPS-lantiq-initialize-usb-on-boot.patch │ │ │ ├── 0040-USB-DWC2-enable-usb-power-gpio.patch │ │ │ ├── 0041-USB-DWC2-add-ltq-params.patch │ │ │ ├── 0042-USB-DWC2-big-endian-support.patch │ │ │ ├── 0100-lantiq-xrx200-enable-remove-crc.patch │ │ │ ├── 0101-mtd-split.patch │ │ │ ├── 0150-lantiq-pinctrl-xway.patch │ │ │ ├── 0151-lantiq-ifxmips_pcie-use-of.patch │ │ │ ├── 0160-owrt-lantiq-multiple-flash.patch │ │ │ └── 0300-MTD-cfi-cmdset-0001-disable-buffered-writes.patch │ │ ├── xrx200 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── arv.mk │ │ │ │ ├── avm.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 │ │ │ │ └── inittab │ │ ├── be │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── be64 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ ├── le │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── le64 │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── patches │ │ │ └── 330-MIPS-Malta-Mark-kernel-code-and-kernel-data-segments.patch │ ├── mcs814x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── uci-defaults │ │ │ │ │ └── 01_leds │ │ │ └── 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 │ │ └── profiles │ │ │ ├── 000-Generic.mk │ │ │ └── 100-dLAN-USB-Extender.mk │ ├── mpc85xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mpc85xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 03_preinit_do_mpc85xx.sh │ │ │ │ └── 05_set_preinit_iface_mpc85xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── generic │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── p1020 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── patches-3.18 │ │ │ ├── 001-powerpc-85xx-add-gpio-keys-to-of-match-table.patch │ │ │ ├── 100-fix_mpc8568e_mds.patch │ │ │ ├── 110-fix_mpc8548_cds.patch │ │ │ ├── 120-mpc8548_cds_i8259_noirq_init.patch │ │ │ ├── 130-mpc8548_cds_disable_i8259_irq.patch │ │ │ ├── 140-powerpc-85xx-tl-wdr4900-v1-support.patch │ │ │ ├── 142-add-mpic-timer-clock-frequency.patch │ │ │ ├── 150-powerpc-85xx-fix-etsec-ranges.patch │ │ │ └── 210-spi-fsl-espi-preallocate-local-buffer.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── tp-link.mk │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── crontabs │ │ │ │ │ └── root │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_wireless │ │ │ ├── lib │ │ │ │ ├── mvebu.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 06_set_iface_mac │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ └── upgrade │ │ │ │ │ ├── linksys.sh │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── fan_ctrl.sh │ │ ├── config-3.18 │ │ ├── config-4.0 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── armada-385-linksys-caiman.dts │ │ │ │ ├── armada-385-linksys-cobra.dts │ │ │ │ └── armada-385-linksys.dtsi │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.18 │ │ │ ├── 001-add_mamba_support.patch │ │ │ ├── 002-add_mamba_powertables.patch │ │ │ ├── 003-add_mamba_switch.patch │ │ │ ├── 007-fix_the_aurora_l2_cache_node.patch │ │ │ ├── 008-armada-xp_consolidate_pinctrl_node.patch │ │ │ ├── 010-add_node_alias_to_pinctrl_and_add_base_address.patch │ │ │ ├── 011-use_pinctrl_node_alias.patch │ │ │ ├── 012-move_ge_pinctrl_settings_for_rgmii.patch │ │ │ ├── 013-add_ge0_pinctrl_settings_for_gmii.patch │ │ │ ├── 014-add_uartx_labels.patch │ │ │ ├── 015-move_armada_370_xp_pinctrl_node_definition.patch │ │ │ ├── 016-common_armada_xp_uart2_3_pinctrl.patch │ │ │ ├── 017-define_and_use_common_armada_xp_spi_pinctrl_setting.patch │ │ │ ├── 018-normalize_pinctrl_entries_for_armada_socs.patch │ │ │ ├── 020-ARM-mvebu-Add-a-number-of-pinctrl-functions.patch │ │ │ ├── 021-ARM-mvebu-Add-Armada-385-Access-Point-Development-Bo.patch │ │ │ ├── 022-ARM-mvebu-A385-AP-Enable-the-NAND-controller.patch │ │ │ ├── 023-pinctrl-mvebu-a38x-Add-UART1-muxing-options.patch │ │ │ ├── 024-ARM-mvebu-a38x-Fix-node-names.patch │ │ │ ├── 025-ARM-mvebu-Use-arm_coherent_dma_ops.patch │ │ │ ├── 030-do_not_register_custom_DMA_operations_when_coherency_is_disabled.patch │ │ │ ├── 031-disable_cpu_idle_on_armada_38x.patch │ │ │ ├── 050-leds_tlc59116_document_binding.patch │ │ │ ├── 051-leds_tlc59116_add_driver.patch │ │ │ ├── 060-cpuidle-mvebu-Fix-the-CPU-PM-notifier-usage.patch │ │ │ ├── 061-cpuidle-mvebu-Update-cpuidle-thresholds-for-Armada-X.patch │ │ │ ├── 099-build_linksys_a385_dts.patch │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 102-revert_i2c_delay.patch │ │ │ ├── 140-alias_mdio_node.patch │ │ │ ├── 150-use_the_cpufreq-dt_platform_data_for_independent_clocks.patch │ │ │ ├── 198-gpio_mvebu_suspend.patch │ │ │ ├── 199-gpio_mvebu_drop_owner.patch │ │ │ ├── 200-gpio_mvebu_checkpatch_fixes.patch │ │ │ ├── 201-gpio_mvebu_fix_probe_cleanup_on_error.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 │ │ │ ├── 300-add_missing_labels.patch │ │ │ └── 600-armada_38x_rtc.patch │ │ ├── patches-4.0 │ │ │ ├── 001-add_mamba_support.patch │ │ │ ├── 002-add_mamba_powertables.patch │ │ │ ├── 003-add_mamba_switch.patch │ │ │ ├── 005-build_linksys_a385_dts.patch │ │ │ ├── 022-ARM-mvebu-A385-AP-Enable-the-NAND-controller.patch │ │ │ ├── 031-disable_cpu_idle_on_armada_38x.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 │ │ │ └── 300-add_missing_labels.patch │ │ └── profiles │ │ │ ├── 000-Default.mk │ │ │ ├── globalscale.mk │ │ │ ├── linksys.mk │ │ │ ├── marvell.mk │ │ │ └── plathome.mk │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mxs.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_mxs.sh │ │ ├── config-3.18 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── imx28-duckbill.dts │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── gen_mxs_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-soc-audio-support.patch │ │ │ ├── 101-soc-audio-dts.patch │ │ │ └── 120-dt-add-i2c.patch │ │ └── profiles │ │ │ ├── 01-duckbill.mk │ │ │ ├── 02-olinuxino-maxi.mk │ │ │ └── 03-olinuxino-micro.mk │ ├── netlogic │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── uci-defaults │ │ │ │ │ └── 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.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── uci-defaults │ │ │ │ │ └── 01_network │ │ │ └── lib │ │ │ │ ├── functions │ │ │ │ └── octeon.sh │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.18 │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ ├── 120-octeon_platform_usb.patch │ │ │ ├── 130-MIPS-octeon-add-semaphore-to-serialize-bootbus-access.patch │ │ │ ├── 140-MIPS-OCTEON-Update-octeon-model.h-code-for-new-SoCs.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 │ │ ├── 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 │ │ │ └── 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.0 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.3 │ │ │ ├── 200-omap-platform.patch │ │ │ ├── 250-cbus.patch │ │ │ ├── 251-cbus-tahvo-lock-fix.patch │ │ │ ├── 252-cbus-retu-tahvo-ack-fix.patch │ │ │ ├── 254-cbus-retu-tahvo-irq-mask-init-fix.patch │ │ │ ├── 300-cbus-platform.patch │ │ │ ├── 309-omapfb-circular-mutex-workaround.patch │ │ │ ├── 310-n810-lcd.patch │ │ │ ├── 311-omapfb-clock-fixes.patch │ │ │ ├── 312-no-hwmod-reset.patch │ │ │ ├── 315-n800-touchscreen-and-keypad-drivers.patch │ │ │ ├── 320-nokia-various.patch │ │ │ ├── 330-n800-tsc2301-platform.patch │ │ │ ├── 350-n8x0-gpioswitch-input.patch │ │ │ ├── 400-bluetooth-hci_h4p.patch │ │ │ ├── 410-hci-h4p-fixes.patch │ │ │ ├── 420-hci-h4p-interrupt-workaround.patch │ │ │ ├── 597-cbus-tahvo-usb-platform.patch │ │ │ ├── 710-evdev-events-without-grab.patch │ │ │ ├── 810-mmc-fixes.patch │ │ │ ├── 830-omap2-serial-fixes.patch │ │ │ ├── 850-musb-tusb-modular-fixes.patch │ │ │ ├── 900-n810-battery-management.patch │ │ │ └── 910-omap-fix-section-mismatch-warnings.patch │ │ └── profiles │ │ │ ├── 100-n810.mk │ │ │ └── 110-n810-gui.mk │ ├── orion │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── hotplug.d │ │ │ │ └── usb │ │ │ │ │ └── 10-usb │ │ │ │ └── uci-defaults │ │ │ │ └── 10-network │ │ ├── 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.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ ├── oxnas.sh │ │ │ │ ├── preinit │ │ │ │ └── 03_preinit_do_oxnas.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── config-4.0 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ ├── boot │ │ │ │ │ └── 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 │ │ │ │ ├── pci │ │ │ │ └── host │ │ │ │ │ └── pcie-oxnas.c │ │ │ │ ├── pinctrl │ │ │ │ └── pinctrl-oxnas.c │ │ │ │ ├── reset │ │ │ │ └── reset-ox820.c │ │ │ │ └── usb │ │ │ │ └── host │ │ │ │ └── ehci-oxnas.c │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.18 │ │ │ ├── 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 │ │ │ ├── 800-oxnas-ehci.patch │ │ │ ├── 900-more-boards.patch │ │ │ └── 999-libata-hacks.patch │ │ ├── patches-4.0 │ │ │ ├── 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 │ │ │ ├── 800-oxnas-ehci.patch │ │ │ ├── 900-more-boards.patch │ │ │ └── 999-libata-hacks.patch │ │ └── profiles │ │ │ └── 100-Generic.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 │ ├── pxa │ │ ├── Makefile │ │ ├── config-3.10 │ │ ├── config-3.3 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.10 │ │ │ ├── 001-gumstix_verdex_pro_arch_support.patch │ │ │ ├── 002-verdex_lcd_support.patch │ │ │ ├── 003-gumstix_h_verdex_pro_support.patch │ │ │ ├── 004-smsc911x_verdex_pro_support.patch │ │ │ ├── 005-verdex_pcmcia_support.patch │ │ │ └── a01-arm-debugll-printk.patch │ │ ├── patches-3.3 │ │ │ ├── 001-gumstix_verdex_pro_arch_support.patch │ │ │ ├── 002-verdex_lcd_support.patch │ │ │ ├── 003-gumstix_h_verdex_pro_support.patch │ │ │ ├── 004-smsc911x_verdex_pro_support.patch │ │ │ ├── 005-verdex_pcmcia_support.patch │ │ │ └── a01-arm-debugll-printk.patch │ │ └── profiles │ │ │ ├── 100-Default.mk │ │ │ └── 200-Gumstix.mk │ ├── ramips │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── 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 │ │ ├── dts │ │ │ ├── 3G-6200N.dts │ │ │ ├── 3G-6200NL.dts │ │ │ ├── 3G150B.dts │ │ │ ├── 3G300M.dts │ │ │ ├── A5-V11.dts │ │ │ ├── AIBR100.dts │ │ │ ├── AIR3GII.dts │ │ │ ├── ALL0239-3G.dts │ │ │ ├── ALL0256N-4M.dts │ │ │ ├── ALL0256N-8M.dts │ │ │ ├── ALL5002.dts │ │ │ ├── ALL5003.dts │ │ │ ├── AR670W.dts │ │ │ ├── AR725W.dts │ │ │ ├── ARGUS_ATP52B.dts │ │ │ ├── ASL26555-16M.dts │ │ │ ├── ASL26555-8M.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 │ │ │ ├── CY-SWR1100.dts │ │ │ ├── D105.dts │ │ │ ├── DAP-1350.dts │ │ │ ├── DCS-930.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 │ │ │ ├── F5D8235_V1.dts │ │ │ ├── F5D8235_V2.dts │ │ │ ├── F7C027.dts │ │ │ ├── FIREWRT.dts │ │ │ ├── FONERA20N.dts │ │ │ ├── FREESTATION5.dts │ │ │ ├── HG255D.dts │ │ │ ├── HLKRM04.dts │ │ │ ├── HT-TM02.dts │ │ │ ├── HW550-3G.dts │ │ │ ├── IP2202.dts │ │ │ ├── M2M.dts │ │ │ ├── M3.dts │ │ │ ├── M4-4M.dts │ │ │ ├── M4-8M.dts │ │ │ ├── MLW221.dts │ │ │ ├── MLWG2.dts │ │ │ ├── MOFI3500-3GN.dts │ │ │ ├── MPRA1.dts │ │ │ ├── MPRA2.dts │ │ │ ├── MT7620a.dts │ │ │ ├── MT7620a_MT7530.dts │ │ │ ├── MT7620a_MT7610e.dts │ │ │ ├── MT7620a_V22SG.dts │ │ │ ├── MT7621.dts │ │ │ ├── MT7628.dts │ │ │ ├── MZK-750DHP.dts │ │ │ ├── MZK-W300NH2.dts │ │ │ ├── MicroWRT.dts │ │ │ ├── NA930.dts │ │ │ ├── NBG-419N.dts │ │ │ ├── NCS601W.dts │ │ │ ├── NW718.dts │ │ │ ├── OMNI-EMB-HPM.dts │ │ │ ├── OMNI-EMB.dts │ │ │ ├── OMNI-PLUG.dts │ │ │ ├── PSR-680W.dts │ │ │ ├── PWH2004.dts │ │ │ ├── PX4885-4M.dts │ │ │ ├── PX4885-8M.dts │ │ │ ├── PX4885.dtsi │ │ │ ├── RP-N53.dts │ │ │ ├── RT-G32-B1.dts │ │ │ ├── RT-N10-PLUS.dts │ │ │ ├── RT-N13U.dts │ │ │ ├── RT-N14U.dts │ │ │ ├── RT-N15.dts │ │ │ ├── RTN56U.dts │ │ │ ├── RUT5XX.dts │ │ │ ├── SL-R7205.dts │ │ │ ├── TEW-691GR.dts │ │ │ ├── TEW-692GR.dts │ │ │ ├── UR-326N4G.dts │ │ │ ├── UR-336UN.dts │ │ │ ├── V11STFE.dts │ │ │ ├── V22RW-2X2.dts │ │ │ ├── VOCORE.dts │ │ │ ├── W150M.dts │ │ │ ├── W306R_V20.dts │ │ │ ├── W502U.dts │ │ │ ├── WCR150GN.dts │ │ │ ├── WHR-1166D.dts │ │ │ ├── WHR-300HP2.dts │ │ │ ├── WHR-600D.dts │ │ │ ├── WHR-G300N.dts │ │ │ ├── WIZARD8800.dts │ │ │ ├── WL-351.dts │ │ │ ├── WL341V3.dts │ │ │ ├── WLI-TX4-AG300N.dts │ │ │ ├── WL_330N.dts │ │ │ ├── WL_330N3G.dts │ │ │ ├── WMR300.dts │ │ │ ├── WNCE2001.dts │ │ │ ├── WR512-3GN-4M.dts │ │ │ ├── WR512-3GN-8M.dts │ │ │ ├── WR6202.dts │ │ │ ├── WR8305RT.dts │ │ │ ├── WRTNODE.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 │ │ │ ├── XIAOMI-MIWIFI-MINI.dts │ │ │ ├── Y1.dts │ │ │ ├── Y1.dtsi │ │ │ ├── Y1S.dts │ │ │ ├── ZBT-WA05.dts │ │ │ ├── ZTE-Q7.dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620n.dtsi │ │ │ ├── mt7621.dtsi │ │ │ ├── mt7628an.dtsi │ │ │ ├── rt2880.dtsi │ │ │ ├── rt3050.dtsi │ │ │ ├── rt3352.dtsi │ │ │ ├── rt3883.dtsi │ │ │ └── rt5350.dtsi │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ └── mach-ralink │ │ │ │ │ └── rt305x_esw_platform.h │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── ralink │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── esw_rt3052.c │ │ │ │ ├── esw_rt3052.h │ │ │ │ ├── gsw_mt7620a.c │ │ │ │ ├── gsw_mt7620a.h │ │ │ │ ├── mdio.c │ │ │ │ ├── mdio.h │ │ │ │ ├── mdio_rt2880.c │ │ │ │ ├── mdio_rt2880.h │ │ │ │ ├── mt7530.c │ │ │ │ ├── mt7530.h │ │ │ │ ├── ralink_ethtool.c │ │ │ │ ├── ralink_ethtool.h │ │ │ │ ├── ralink_soc_eth.c │ │ │ │ ├── ralink_soc_eth.h │ │ │ │ ├── soc_mt7620.c │ │ │ │ ├── soc_rt2880.c │ │ │ │ ├── soc_rt305x.c │ │ │ │ └── soc_rt3883.c │ │ ├── image │ │ │ ├── Makefile │ │ │ └── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── Makefile │ │ │ │ ├── board-ralink.c │ │ │ │ ├── cache.c │ │ │ │ ├── cache.h │ │ │ │ ├── cacheops.h │ │ │ │ ├── config.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ ├── lantiq.mk │ │ │ │ ├── loader.c │ │ │ │ ├── loader.lds │ │ │ │ ├── loader2.lds │ │ │ │ ├── lzma-data.lds │ │ │ │ ├── printf.c │ │ │ │ ├── printf.h │ │ │ │ └── ralink.mk │ │ ├── modules.mk │ │ ├── mt7620 │ │ │ ├── config-3.18 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── aigale.mk │ │ │ │ ├── linksys.mk │ │ │ │ ├── mediatek.mk │ │ │ │ ├── microwrt.mk │ │ │ │ └── xiaomi-miwifi-mini.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── config-3.18 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ └── firefly.mk │ │ │ └── target.mk │ │ ├── mt7628 │ │ │ ├── config-3.18 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-3.18 │ │ │ ├── 0001-MIPS-ralink-add-verbose-pmu-info.patch │ │ │ ├── 0002-MIPS-ralink-add-a-helper-for-reading-the-ECO-version.patch │ │ │ ├── 0003-MIPS-ralink-add-rt_sysc_m32-helper.patch │ │ │ ├── 0004-MIPS-ralink-adds-a-bootrom-dumper-module.patch │ │ │ ├── 0005-MIPS-ralink-add-illegal-access-driver.patch │ │ │ ├── 0006-MIPS-ralink-add-missing-clk_set_rate-to-clk.c.patch │ │ │ ├── 0007-MIPS-ralink-add-support-for-MT7620n.patch │ │ │ ├── 0008-MIPS-ralink-allow-manual-memory-override.patch │ │ │ ├── 0009-MIPS-ralink-define-the-wmac-clock-on-mt7620.patch │ │ │ ├── 0010-MIPS-ralink-define-the-wmac-clock-on-rt3883.patch │ │ │ ├── 0011-MIPS-ralink-add-rt2880-wmac-clock.patch │ │ │ ├── 0012-MIPS-ralink-add-MT7621-support.patch │ │ │ ├── 0013-MIPS-ralink-add-MT7621-defconfig.patch │ │ │ ├── 0015-MIPS-ralink-cleanup-early_printk.patch │ │ │ ├── 0016-MIPS-ralink-add-MT7621-pcie-driver.patch │ │ │ ├── 0017-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ ├── 0019-MIPS-ralink-add-pseudo-pwm-led-trigger-based-on-time.patch │ │ │ ├── 0021-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ ├── 0022-MIPS-ralink-copy-the-commandline-from-the-devicetree.patch │ │ │ ├── 0023-MIPS-ralink-mt7620-fix-usb-issue-during-frequency-sc.patch │ │ │ ├── 0025-MIPS-ralink-allow-loading-irq-registers-from-the-dev.patch │ │ │ ├── 0026-MIPS-ralink-add-mt7628an-support.patch │ │ │ ├── 0027-serial-ralink-adds-mt7620-serial.patch │ │ │ ├── 0028-serial-ralink-the-core-has-a-size-of-0x100-and-not-0.patch │ │ │ ├── 0029-serial-of-allow-au1x00-and-rt288x-to-load-from-OF.patch │ │ │ ├── 0030-GPIO-add-named-gpio-exports.patch │ │ │ ├── 0030-pinctrl-ralink-add-pinctrl-driver.patch │ │ │ ├── 0031-PCI-MIPS-adds-rt2880-pci-support.patch │ │ │ ├── 0032-PCI-MIPS-adds-mt7620a-pcie-driver.patch │ │ │ ├── 0033-NET-multi-phy-support.patch │ │ │ ├── 0034-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 0035-NET-MIPS-add-ralink-SoC-ethernet-driver.patch │ │ │ ├── 0037-USB-phy-add-ralink-SoC-driver.patch │ │ │ ├── 0038-USB-add-OHCI-EHCI-OF-binding.patch │ │ │ ├── 0041-mtd-fix-cfi-cmdset-0002-erase-status-check.patch │ │ │ ├── 0042-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ ├── 0043-mtd-ralink-add-mt7620-nand-driver.patch │ │ │ ├── 0044-mtd-add-chunked-read-io-to-m25p80.patch │ │ │ ├── 0045-mtd-add-mt7621-nand-support.patch │ │ │ ├── 0046-DT-Add-documentation-for-gpio-ralink.patch │ │ │ ├── 0047-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ ├── 0048-GPIO-ralink-add-mt7621-gpio-controller.patch │ │ │ ├── 0049-DT-Add-documentation-for-spi-rt2880.patch │ │ │ ├── 0050-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ ├── 0051-rt5350-spi-second-device.patch │ │ │ ├── 0052-i2c-MIPS-adds-ralink-I2C-driver.patch │ │ │ ├── 0053-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch │ │ │ ├── 0054-DMA-ralink-add-rt2880-dma-engine.patch │ │ │ ├── 0055-asoc-add-mt7620-support.patch │ │ │ ├── 0056-watchdog-add-MT7621-support.patch │ │ │ ├── 0057-uvc-add-iPassion-iP2970-support.patch │ │ │ ├── 0059-USB-fix-dwc2.patch │ │ │ ├── 0060-soc_type.patch │ │ │ ├── 0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch │ │ │ ├── 0062-mt7621-add-ECHI-OCHI-XCHI-support.patch │ │ │ ├── 0063-cevt-rt3352.patch │ │ │ ├── 0100-mtd-split-remove-padding.patch │ │ │ ├── 0101-mtd-add-rtn56u-support.patch │ │ │ ├── 0103-MIPS-OWRTDTB.patch │ │ │ ├── 0110-fix_bootargs_handling.patch │ │ │ ├── 0111-i2c-MIPS-add-mt7621-I2C-driver.patch │ │ │ ├── 0112-add-mt7621-support-high-memory.patch │ │ │ ├── 0113-add-mt7621-support-automatic-recognition-memory-size.patch │ │ │ ├── 100-mt7621-add-cpu-feature-overrides.patch │ │ │ ├── 8001-firefly-add-temporary-sdmmc-driver-for-512mb-sdram.patch │ │ │ ├── 999-no-pm_poweroff.patch │ │ │ ├── 999-non-pci-mt7620.patch │ │ │ └── 999-pci-reset.patch │ │ ├── rt288x │ │ │ ├── config-3.18 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── asus.mk │ │ │ │ ├── belkin.mk │ │ │ │ └── edimax.mk │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── config-3.18 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── allnet.mk │ │ │ │ ├── alpha.mk │ │ │ │ ├── asiarf.mk │ │ │ │ ├── asus.mk │ │ │ │ ├── aztech.mk │ │ │ │ ├── belkin.mk │ │ │ │ ├── broadway.mk │ │ │ │ ├── dlink.mk │ │ │ │ ├── easyacc.mk │ │ │ │ ├── engenius.mk │ │ │ │ ├── fon.mk │ │ │ │ ├── freestation5.mk │ │ │ │ ├── hame.mk │ │ │ │ ├── hg255d.mk │ │ │ │ ├── hilink.mk │ │ │ │ ├── hootoo.mk │ │ │ │ ├── m2m.mk │ │ │ │ ├── misc.mk │ │ │ │ ├── nexx.mk │ │ │ │ ├── poray.mk │ │ │ │ ├── sevenlinks.mk │ │ │ │ ├── tenda.mk │ │ │ │ ├── upvel.mk │ │ │ │ ├── vocore.mk │ │ │ │ └── wansview.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── config-3.18 │ │ │ ├── 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-3.18 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── gen_image.sh │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 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 │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ └── 02-network │ │ ├── config-3.18 │ │ └── image │ │ │ └── Makefile │ ├── sunxi │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_sunxi.sh │ │ │ │ └── 02_b53_hack.sh │ │ │ │ └── sunxi.sh │ │ ├── config-3.18 │ │ ├── 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 │ │ └── 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 │ │ │ ├── pcduino.mk │ │ │ └── pcduino3.mk │ ├── uml │ │ ├── Makefile │ │ ├── README │ │ ├── config │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.18 │ │ │ ├── 001-fix_make_headers_install.patch │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ ├── x86 │ │ ├── 64 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 15_essential_fs_x86 │ │ │ │ ├── 20_check_iso │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── 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 │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 006-yenta_mistery.patch │ │ │ ├── 009-rdc321x_select_embedded.patch │ │ │ ├── 010-rdc_cpu_ident.patch │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 012-export_erase_write.patch │ │ │ ├── 100-rdc_boards.patch │ │ │ ├── 120-panic_on_unrecovered_nmi.patch │ │ │ ├── 150-pit-tick-rate.patch │ │ │ └── 160-kexec-fix.patch │ │ ├── rdc │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── config │ │ │ │ │ │ └── network │ │ │ │ │ └── diag.sh │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 05_set_ether_mac_rdc │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── ar525w.mk │ │ │ │ ├── bifferboard.mk │ │ │ │ ├── r8610.mk │ │ │ │ └── sitecom.mk │ │ │ └── target.mk │ │ └── xen_domu │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-default │ │ │ └── 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 ├── 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 │ ├── Makefile │ └── patches │ │ └── linaro │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ └── 400-mips_no_dynamic_linking_sym.patch ├── gcc │ ├── Config.in │ ├── Config.version │ ├── common.mk │ ├── files │ │ └── alternate-arch-cc.in │ ├── final │ │ └── Makefile │ ├── initial │ │ └── Makefile │ ├── minimal │ │ └── Makefile │ └── patches │ │ ├── 4.6-linaro │ │ ├── 010-documentation.patch │ │ ├── 020-gcc_bug_54295.patch │ │ ├── 030-gcc_bug_48403.patch │ │ ├── 040-gcc_bug_49696.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl.patch │ │ ├── 301-missing-execinfo_h.patch │ │ ├── 302-c99-snprintf.patch │ │ ├── 305-libmudflap-susv3-legacy.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 │ │ ├── 860-uclibc_use_eh_frame.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 900-bad-mips16-crt │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 940-no-clobber-stamp-bits.patch │ │ └── 999-coldfire.patch │ │ ├── 4.8-linaro │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-weak_data_fix.patch │ │ ├── 003-universal_initializer.patch │ │ ├── 004-case_insensitive.patch │ │ ├── 010-documentation.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 │ │ ├── 208-musl_gomp.patch │ │ ├── 209-musl_libstdc++.patch │ │ ├── 210-disable_libsanitizer_off_t_check.patch │ │ ├── 220-musl_mips_softfloat.patch │ │ ├── 221-musl_mips64.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 │ │ ├── 860-use_eh_frame.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 │ │ └── 951-arm_bug_58595.patch │ │ └── 4.9-linaro │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.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 │ │ ├── 208-musl_gomp.patch │ │ ├── 209-musl_libstdc++.patch │ │ ├── 210-disable_libsanitizer_off_t_check.patch │ │ ├── 220-musl_mips_softfloat.patch │ │ ├── 221-musl_mips64.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 │ │ ├── 860-use_eh_frame.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 ├── gdb │ ├── Makefile │ └── patches │ │ ├── 100-ppc_compile_fix.patch │ │ ├── 110-no_extern_inline.patch │ │ └── 600-fix-compile-flag-mismatch.patch ├── glibc │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── config │ │ └── Config.in │ ├── headers │ │ └── Makefile │ ├── include │ │ └── libintl.h │ └── patches │ │ ├── 2.15 │ │ ├── 001-fix_autoconf_macro.patch │ │ ├── 005-versions.patch │ │ ├── 050-all_glibc-2.14-leak-revert-crash.patch │ │ ├── 100-fix_cross_rpcgen.patch │ │ ├── 110-fix_cross_zic.patch │ │ ├── 120-use_host_cflags.patch │ │ └── 200-add-dl-search-paths.patch │ │ ├── 2.19 │ │ ├── 100-fix_cross_rpcgen.patch │ │ ├── 200-add-dl-search-paths.patch │ │ └── 300-require-autoconf-2.69.patch │ │ └── 2.21 │ │ ├── 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.in │ ├── 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-git-2015-03-28.patch │ │ ├── 100-add_glob_onlydir.patch │ │ └── 900-iconv_size_hack.patch ├── uClibc │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── config-0.9.33.2 │ │ ├── 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 │ ├── patches-0.9.33.2 │ │ ├── 009_backport_mount.h-update.patch │ │ ├── 010-backport_sscanf_alloc.patch │ │ ├── 011-dlsym_rtld_next_fix.patch │ │ ├── 020-endian.h-add-some-handy-macros-to-be-used-in-syscall.patch │ │ ├── 021-add-posix_madvise.c.patch │ │ ├── 022-libc-add-posix_fallocate.patch │ │ ├── 023-libc-add-fallocate-and-fallocate64.patch │ │ ├── 024-i386-bits-syscalls.h-allow-immediate-values-as-6th-s.patch │ │ ├── 025-libc-sync_file_range.patch │ │ ├── 100-fix_unifdef.patch │ │ ├── 110-compat_macros.patch │ │ ├── 120-adjtimex.patch │ │ ├── 131-inet-fix-__read_etc_hosts_r-segfault.patch │ │ ├── 132-inet_fix_res_init.patch │ │ ├── 133-inet6-scoped-getnameinfo.patch │ │ ├── 135-inet_fix_threaded_use_of_res_functions.patch │ │ ├── 136-inet_make_res_init_thread_safe.patch │ │ ├── 137-inet_fix_threaded_res_init.patch │ │ ├── 150-vasprintf_size_reduce.patch │ │ ├── 170-math_finite.patch │ │ ├── 180-pthread_cleanup_fix.patch │ │ ├── 190-nptl_use_arch_default_stack_limit.patch │ │ ├── 200-no_forced_unwind.patch │ │ ├── 210-mips_use_pic_crt1.patch │ │ ├── 350-use-fputs_unlocked.patch │ │ ├── 410-llvm_workaround.patch │ │ ├── 450-powerpc_copysignl.patch │ │ ├── 460-powerpc_ptrace_h.patch │ │ ├── 470-powerpc_syscall6.patch │ │ ├── 480-powerpc_rel24_support.patch │ │ ├── 500-eventfd.patch │ │ ├── 600-mips64_abi_selection.patch │ │ ├── 610-mips64_syscall_fix.patch │ │ ├── 611-mips_syscall_error_argument.patch │ │ ├── 612-mips64_relocation_fix.patch │ │ ├── 613-mips64_more_relocation_fixes.patch │ │ ├── 614-mips64_fix_setjmp_longjmp.patch │ │ ├── 615-mips_fix_sigev_pad_size.patch │ │ ├── 616-mips_fix_stat_time.patch │ │ ├── 617-mips_fix_setjmp_ptrsize.patch │ │ ├── 618-mips64_fix_syscall_error.patch │ │ ├── 619-mips64_fix_sysdep_cancel.patch │ │ ├── 960-remove_eabi_oabi_selection.patch │ │ ├── 970-add___kernel_long_and___kernel_ulong.patch │ │ ├── 981-fix_setting_arch_native_bit.patch │ │ ├── 990-no-stack-cache.patch │ │ ├── 991-gen_wctype.patch │ │ └── 999-eventfd_use_bits_scheme.patch │ └── utils │ │ └── Makefile └── wrapper │ └── Makefile └── tools ├── Makefile ├── autoconf ├── Makefile └── patches │ ├── 000-relocatable.patch │ └── 001-no_emacs_lib.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 ├── ccache ├── Makefile └── files │ ├── ccache_cc │ └── ccache_cxx ├── cloog └── Makefile ├── cmake ├── Makefile └── patches │ ├── 100-disable_qt_tests.patch │ └── 110-freebsd-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 ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── findutils ├── Makefile └── patches │ └── 21-Fix-time_t-vs-long-int-mismatches.patch ├── firmware-utils ├── Makefile └── src │ ├── add_header.c │ ├── addpattern.c │ ├── airlink.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 │ ├── 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 │ ├── 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 │ ├── 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-remove_no_undefined.patch ├── flock ├── Makefile └── src │ └── flock.c ├── gengetopt ├── Makefile └── patches │ └── 100-dependency_fix.patch ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h ├── getline.h └── sys │ └── sysmacros.h ├── 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 │ └── 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 │ └── 100-freebsd-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 │ ├── 120-cygwin_fixes.patch │ ├── 130-lzma_jffs2.patch │ ├── 131-fix_lib_compile.patch │ ├── 133-error-fix.patch │ ├── 134-freebsd_loff_t.patch │ ├── 135-mkubifs_optional_lzo.patch │ ├── 136-mkfs.ubifs-xz-support.patch │ ├── 137-no_extern_inline.patch │ ├── 200-libubigen-add-ubigen_write_terminator-function.patch │ └── 201-ubinize-add-terminator-support.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 └── patches │ └── 001-fix-package-rebuild.patch ├── 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 ├── sed └── Makefile ├── sparse └── Makefile ├── squashfs ├── Makefile └── patches │ ├── 100-lzma.patch │ └── 110-no_nonstatic_inline.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 ├── sstrip ├── Makefile └── src │ └── sstrip.c ├── 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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/README -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/adding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/adding.tex -------------------------------------------------------------------------------- /docs/bugs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/bugs.tex -------------------------------------------------------------------------------- /docs/build.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/build.tex -------------------------------------------------------------------------------- /docs/config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/config.tex -------------------------------------------------------------------------------- /docs/debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/debugging.tex -------------------------------------------------------------------------------- /docs/init-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/init-scripts.tex -------------------------------------------------------------------------------- /docs/network-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/network-scripts.tex -------------------------------------------------------------------------------- /docs/network.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/network.tex -------------------------------------------------------------------------------- /docs/openwrt.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/openwrt.sty -------------------------------------------------------------------------------- /docs/openwrt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/openwrt.tex -------------------------------------------------------------------------------- /docs/submitting-patches.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/submitting-patches.tex -------------------------------------------------------------------------------- /docs/wireless.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/wireless.tex -------------------------------------------------------------------------------- /docs/working.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/docs/working.tex -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/feeds.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/host.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/scons.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/bin/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/bin/login.sh -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/etc/preinit -------------------------------------------------------------------------------- /package/base-files/files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/etc/profile -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.button/failsafe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${TYPE}" = "switch" ] || echo ${BUTTON} > /tmp/failsafe_button 4 | -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.button/power: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${ACTION}" = "released" ] || exit 0 4 | 5 | exec /sbin/poweroff 6 | -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/etc/rc.local -------------------------------------------------------------------------------- /package/base-files/files/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/etc/services -------------------------------------------------------------------------------- /package/base-files/files/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/sbin/led.sh -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/apex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/apex/Makefile -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/rbcfg/src/cyg_crc32.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /package/boot/uboot-ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-ar71xx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-envtools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-envtools/Config.in -------------------------------------------------------------------------------- /package/boot/uboot-envtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-envtools/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-envtools/files/mxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-envtools/files/mxs -------------------------------------------------------------------------------- /package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-kirkwood/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-pxa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-pxa/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-sunxi/uEnv.txt -------------------------------------------------------------------------------- /package/boot/uboot-xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/uboot-xburst/Makefile -------------------------------------------------------------------------------- /package/boot/yamonenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/boot/yamonenv/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/oprofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/devel/oprofile/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/firmware/am33x-cm3/Makefile -------------------------------------------------------------------------------- /package/kernel/acx-mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/acx-mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/ar7-atm/Config.in -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/ar7-atm/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/broadcom-wl/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/src/wlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/block.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/block.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/can.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/hwmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/hwmon.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/i2c.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/input.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/input.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/leds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/leds.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/lib.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/nls.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/other.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/other.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/sound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/sound.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/spi.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/usb.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/video.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/video.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/wpan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/linux/modules/wpan.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mmc_over_gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/mmc_over_gpio/Makefile -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/om-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/om-watchdog/Makefile -------------------------------------------------------------------------------- /package/kernel/qca-nss-gmac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/qca-nss-gmac/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/rtc-rv5c386a/Makefile -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/kernel/trelay/src/trelay.c -------------------------------------------------------------------------------- /package/kernel/w1-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_W1_MASTER_GPIO_CUSTOM} += w1-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/wrt55agv2-spidevs/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += wrt55agv2_spidevs.o 2 | -------------------------------------------------------------------------------- /package/libs/cyassl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/cyassl/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gettext/src/m4/intl.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv-full/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libiconv/src/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libiconv/src/m4/iconv.m4 -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/attr.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/cache.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/error.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/genl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/msg.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/nl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/object.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/socket.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/unl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl-tiny/src/unl.c -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libreadline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libreadline/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/librpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/librpc/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/patches/210-termios_fix.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/libs/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/polarssl/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/config/gre/Makefile -------------------------------------------------------------------------------- /package/network/config/ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/config/ipip/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/qos-scripts/files/usr/bin/qos-start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | qos-stop 3 | /usr/lib/qos/generate.sh all | sh 4 | 5 | -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/files/6rd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/6rd/files/6rd.sh -------------------------------------------------------------------------------- /package/network/ipv6/6rd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/6rd/src/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/ds-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/ds-lite/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/map/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/files/map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/map/files/map.sh -------------------------------------------------------------------------------- /package/network/ipv6/odhcp6c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/ipv6/odhcp6c/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/comgt/Makefile -------------------------------------------------------------------------------- /package/network/utils/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/curl/Config.in -------------------------------------------------------------------------------- /package/network/utils/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/curl/Makefile -------------------------------------------------------------------------------- /package/network/utils/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/dante/Makefile -------------------------------------------------------------------------------- /package/network/utils/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/iftop/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/iperf/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/iperf3/Makefile -------------------------------------------------------------------------------- /package/network/utils/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/ipset/Makefile -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/iwcap/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/iwinfo/Makefile -------------------------------------------------------------------------------- /package/network/utils/umbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/umbim/Makefile -------------------------------------------------------------------------------- /package/network/utils/uqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/uqmi/Makefile -------------------------------------------------------------------------------- /package/network/utils/wwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/network/utils/wwan/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fstools/files/mount.hotplug: -------------------------------------------------------------------------------- 1 | /sbin/block hotplug 2 | -------------------------------------------------------------------------------- /package/system/fstools/files/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/fstools/files/snapshot -------------------------------------------------------------------------------- /package/system/mountd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mountd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/opkg/files/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/opkg/files/opkg.conf -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/nand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/procd/files/nand.sh -------------------------------------------------------------------------------- /package/system/procd/files/procd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/procd/files/procd.sh -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/rpcd/files/rpcd.config -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/udev/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/udev/Config.in -------------------------------------------------------------------------------- /package/system/udev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/udev/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/admswconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/admswconfig/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/busybox/files/cron -------------------------------------------------------------------------------- /package/utils/busybox/files/sysntpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/busybox/files/sysntpd -------------------------------------------------------------------------------- /package/utils/busybox/files/telnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/busybox/files/telnet -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /package/utils/hostap-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/hostap-utils/Makefile -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mkelfimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/mkelfimage/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/files/nvram.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/files/nvram.init -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/nvram/src/sdinitvals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/nvram/src/sdinitvals.h -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/robocfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/robocfg/Makefile -------------------------------------------------------------------------------- /package/utils/robocfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/robocfg/src/Makefile -------------------------------------------------------------------------------- /package/utils/robocfg/src/etc53xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/robocfg/src/etc53xx.h -------------------------------------------------------------------------------- /package/utils/robocfg/src/robocfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/robocfg/src/robocfg.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ubi-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/ubi-utils/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/gps.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/ugps/files/gps.config -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbreset/src/usbreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/usbreset/src/usbreset.c -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /scripts/config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /scripts/config/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/zconf.l -------------------------------------------------------------------------------- /scripts/config/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/config/zconf.y -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/flashing/adam2flash-502T.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/flashing/adam2flash-502T.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/freebsd.sh -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/metadata.pl -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/openbsd.sh -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /scripts/update-package-md5sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/scripts/update-package-md5sum -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/adm5120/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/adm5120/modules.mk -------------------------------------------------------------------------------- /target/linux/adm5120/router_le/config-3.8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/adm8668/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/adm8668/Makefile -------------------------------------------------------------------------------- /target/linux/adm8668/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/adm8668/base-files.mk -------------------------------------------------------------------------------- /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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar7/Makefile -------------------------------------------------------------------------------- /target/linux/ar7/ac49x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar7/ac49x/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar7/base-files.mk -------------------------------------------------------------------------------- /target/linux/ar7/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar7/config-3.18 -------------------------------------------------------------------------------- /target/linux/ar7/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar7/generic/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar7/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar71xx/base-files.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar71xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/ar71xx/generic/config-default: -------------------------------------------------------------------------------- 1 | CONFIG_CMDLINE="rootfstype=squashfs,jffs2 noinitrd" 2 | -------------------------------------------------------------------------------- /target/linux/ar71xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar71xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ar71xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/arm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/arm64/Makefile -------------------------------------------------------------------------------- /target/linux/arm64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/arm64/README -------------------------------------------------------------------------------- /target/linux/arm64/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/arm64/config-default -------------------------------------------------------------------------------- /target/linux/arm64/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/arm64/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/at91/config-default -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/at91/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ath25/config-3.18 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/au1000/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/au1000/config-3.18 -------------------------------------------------------------------------------- /target/linux/au1000/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/au1000/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/au1000/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/bcm53xx/base-files.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/bcm53xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/bcm53xx/files/drivers/firmware/broadcom/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_BCM47XX_NVRAM) += bcm47xx_nvram.o 2 | -------------------------------------------------------------------------------- /target/linux/brcm2708/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm2708/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm2708/config-3.18 -------------------------------------------------------------------------------- /target/linux/brcm2708/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm2708/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm47xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/brcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm63xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/vg50.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm63xx/dts/vg50.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/brcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/cns3xxx/config-3.18 -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/gemini/config-3.18 -------------------------------------------------------------------------------- /target/linux/gemini/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/gemini/image/Makefile -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/generic/config-3.18 -------------------------------------------------------------------------------- /target/linux/generic/config-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/generic/config-4.0 -------------------------------------------------------------------------------- /target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/imx6/base-files.mk -------------------------------------------------------------------------------- /target/linux/imx6/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/imx6/config-3.18 -------------------------------------------------------------------------------- /target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ipq806x/base-files.mk -------------------------------------------------------------------------------- /target/linux/ipq806x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ipq806x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ipq806x/config-4.0 -------------------------------------------------------------------------------- /target/linux/ipq806x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ipq806x/modules.mk -------------------------------------------------------------------------------- /target/linux/ixp4xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ixp4xx/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ixp4xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/ixp4xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ixp4xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ixp4xx/modules.mk -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/kirkwood/config-3.18 -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/base-files.mk -------------------------------------------------------------------------------- /target/linux/lantiq/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/config-3.18 -------------------------------------------------------------------------------- /target/linux/lantiq/dts/GR7000.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/dts/GR7000.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/H201L.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/dts/H201L.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/WBMR.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/dts/WBMR.dts -------------------------------------------------------------------------------- /target/linux/lantiq/dts/ar9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/dts/ar9.dtsi -------------------------------------------------------------------------------- /target/linux/lantiq/dts/vr9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/dts/vr9.dtsi -------------------------------------------------------------------------------- /target/linux/lantiq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/image/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/lantiq/xway/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/lantiq/xway/target.mk -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/be64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/be64/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/config-3.18 -------------------------------------------------------------------------------- /target/linux/malta/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/image/Makefile -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/malta/le64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/malta/le64/target.mk -------------------------------------------------------------------------------- /target/linux/mcs814x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mcs814x/Makefile -------------------------------------------------------------------------------- /target/linux/mcs814x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mcs814x/config-3.18 -------------------------------------------------------------------------------- /target/linux/mcs814x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mcs814x/modules.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mpc85xx/base-files.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mpc85xx/config-3.18 -------------------------------------------------------------------------------- /target/linux/mpc85xx/generic/config-default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mvebu/base-files.mk -------------------------------------------------------------------------------- /target/linux/mvebu/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mvebu/config-3.18 -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mvebu/config-4.0 -------------------------------------------------------------------------------- /target/linux/mvebu/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mvebu/image/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mxs/config-3.18 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/mxs/modules.mk -------------------------------------------------------------------------------- /target/linux/netlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/netlogic/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/octeon/base-files.mk -------------------------------------------------------------------------------- /target/linux/octeon/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/octeon/config-3.18 -------------------------------------------------------------------------------- /target/linux/octeon/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/octeon/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/omap/config-3.18 -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/omap24xx/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/config-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/omap24xx/config-4.0 -------------------------------------------------------------------------------- /target/linux/omap24xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/omap24xx/modules.mk -------------------------------------------------------------------------------- /target/linux/orion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/orion/Makefile -------------------------------------------------------------------------------- /target/linux/orion/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/orion/config-default -------------------------------------------------------------------------------- /target/linux/orion/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/orion/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/oxnas/base-files.mk -------------------------------------------------------------------------------- /target/linux/oxnas/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/oxnas/config-3.18 -------------------------------------------------------------------------------- /target/linux/oxnas/config-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/oxnas/config-4.0 -------------------------------------------------------------------------------- /target/linux/oxnas/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/oxnas/image/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc40x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc40x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc40x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc40x/image/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc40x/modules.mk -------------------------------------------------------------------------------- /target/linux/ppc44x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc44x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc44x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc44x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc44x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ppc44x/image/Makefile -------------------------------------------------------------------------------- /target/linux/pxa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/pxa/Makefile -------------------------------------------------------------------------------- /target/linux/pxa/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/pxa/config-3.10 -------------------------------------------------------------------------------- /target/linux/pxa/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/pxa/config-3.3 -------------------------------------------------------------------------------- /target/linux/pxa/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/pxa/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/base-files.mk -------------------------------------------------------------------------------- /target/linux/ramips/dts/3G150B.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/3G150B.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/3G300M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/3G300M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/A5-V11.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/A5-V11.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/AR670W.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/AR670W.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/AR725W.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/AR725W.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/BC2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/BC2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/D105.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/D105.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/E1700.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/E1700.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/F7C027.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/F7C027.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HG255D.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/HG255D.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/IP2202.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/IP2202.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M2M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/M2M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/M3.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4-4M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/M4-4M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4-8M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/M4-8M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MLW221.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/MLW221.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MLWG2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/MLWG2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MPRA1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/MPRA1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MPRA2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/MPRA2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MT7621.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/MT7621.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/MT7628.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/MT7628.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/NA930.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/NA930.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/NW718.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/NW718.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RP-N53.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/RP-N53.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RT-N15.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/RT-N15.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RTN56U.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/RTN56U.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/RUT5XX.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/RUT5XX.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/VOCORE.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/VOCORE.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/W150M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/W150M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/W502U.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/W502U.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WL-351.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/WL-351.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WMR300.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/WMR300.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WR6202.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/WR6202.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/X5.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X8.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/X8.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/Y1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/Y1.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1S.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/Y1S.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/ZTE-Q7.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/dts/ZTE-Q7.dts -------------------------------------------------------------------------------- /target/linux/ramips/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/rb532/base-files.mk -------------------------------------------------------------------------------- /target/linux/rb532/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/rb532/config-3.18 -------------------------------------------------------------------------------- /target/linux/rb532/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/rb532/image/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /target/linux/realview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/realview/Makefile -------------------------------------------------------------------------------- /target/linux/realview/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/realview/README -------------------------------------------------------------------------------- /target/linux/realview/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/realview/config-3.18 -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/sunxi/base-files.mk -------------------------------------------------------------------------------- /target/linux/sunxi/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/sunxi/config-3.18 -------------------------------------------------------------------------------- /target/linux/sunxi/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/sunxi/image/Config.in -------------------------------------------------------------------------------- /target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/64/config-default -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/config-3.18 -------------------------------------------------------------------------------- /target/linux/x86/ep80579/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/ep80579/target.mk -------------------------------------------------------------------------------- /target/linux/x86/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/generic/target.mk -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/image/Config.in -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/image/grub.cfg -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/x86/rdc/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/x86/rdc/target.mk -------------------------------------------------------------------------------- /target/linux/xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/xburst/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/xburst/config-3.18 -------------------------------------------------------------------------------- /target/linux/xburst/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/xburst/image/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/linux/xburst/modules.mk -------------------------------------------------------------------------------- /target/linux/xburst/qi_lb60/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=QI Ben Nanonote (qi_lb60) 2 | -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/Config.in -------------------------------------------------------------------------------- /toolchain/glibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/Config.version -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/config/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/config/Config.in -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/glibc/include/libintl.h -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/insight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/insight/Makefile -------------------------------------------------------------------------------- /toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/Config.in -------------------------------------------------------------------------------- /toolchain/musl/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/Config.version -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/include/sys/cdefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/musl/include/sys/queue.h -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/uClibc/Config.version -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bc/patches/001-no_doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/bc/patches/001-no_doc.patch -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/cloog/Makefile -------------------------------------------------------------------------------- /tools/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/airlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/airlink.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/bcm_tag.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/bcmalgo.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/bcmalgo.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/csysimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/csysimg.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/cyg_crc.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcasfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/mkcasfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/mkzcfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzynfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/mkzynfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/spw303v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/spw303v.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx2usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/trx2usr.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/wrt400n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/wrt400n.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyxbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/firmware-utils/src/zyxbcm.c -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/include/getline.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzma/patches/002-lzmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/lzma/patches/002-lzmp.patch -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/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/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch-image/src/patch-dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/patch-image/src/patch-dtb.c -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/pkg-config/files/pkg-config -------------------------------------------------------------------------------- /tools/ppl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/ppl/Makefile -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/scons/Makefile -------------------------------------------------------------------------------- /tools/scons/files/pywrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/scons/files/pywrap.sh -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfs4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/squashfs4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/upx/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/wrt350nv2-builder/src/md5.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/wrt350nv2-builder/src/md5.h -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireWRT/FireWRT-OpenWrt-Firefly-FireWRT-SDK/HEAD/tools/yaffs2/Makefile --------------------------------------------------------------------------------