├── README.md ├── original ├── UserGuide ├── bootcode.tar.gz └── document │ ├── OpenWrt_realtek_SDK_ApplicatioNote.pdf │ ├── OpenWrt_realtek_SDK_ReleaseNote.pdf │ ├── RTK_Repeater_WEB_guide.pdf │ └── UserGuide └── rtk_openwrt_sdk ├── .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 ├── ltqtapi.mk ├── netfilter.mk ├── nls.mk ├── package-bin.mk ├── package-defaults.mk ├── package-dumpinfo.mk ├── package-ipkg.mk ├── package.mk ├── prereq-build.mk ├── prereq.mk ├── quilt.mk ├── scan.mk ├── scons.mk ├── shell.sh ├── site │ ├── arm-linux │ ├── arm-openwrt-linux-gnu │ ├── arm-openwrt-linux-gnueabi │ ├── arm-openwrt-linux-musl │ ├── arm-openwrt-linux-muslgnueabi │ ├── arm-openwrt-linux-uclibc │ ├── arm-openwrt-linux-uclibcgnueabi │ ├── armeb-linux │ ├── armeb-openwrt-linux-gnu │ ├── armeb-openwrt-linux-gnueabi │ ├── armeb-openwrt-linux-musl │ ├── armeb-openwrt-linux-muslgnueabi │ ├── armeb-openwrt-linux-uclibc │ ├── armeb-openwrt-linux-uclibcgnueabi │ ├── avr32-linux │ ├── avr32-openwrt-linux-gnu │ ├── avr32-openwrt-linux-uclibc │ ├── cris-linux │ ├── cris-openwrt-linux-gnu │ ├── cris-openwrt-linux-uclibc │ ├── i486-linux │ ├── i486-openwrt-linux-gnu │ ├── i486-openwrt-linux-musl │ ├── i486-openwrt-linux-uclibc │ ├── i686-linux │ ├── i686-openwrt-linux-gnu │ ├── i686-openwrt-linux-musl │ ├── i686-openwrt-linux-uclibc │ ├── linux │ ├── linux-gnu │ ├── linux-uclibc │ ├── m68k-linux │ ├── m68k-openwrt-linux-gnu │ ├── m68k-openwrt-linux-uclibc │ ├── mips-linux │ ├── mips-linux-gnu │ ├── mips-openwrt-linux-gnu │ ├── mips-openwrt-linux-musl │ ├── mips-openwrt-linux-uclibc │ ├── mips-rlx4181-linux │ ├── mips-rlx5281-linux │ ├── mips64-linux │ ├── mips64-openwrt-linux-gnu │ ├── mips64-openwrt-linux-uclibc │ ├── mips64el-linux │ ├── mips64el-openwrt-linux-gnu │ ├── mips64el-openwrt-linux-uclibc │ ├── mipsel-linux │ ├── mipsel-linux-gnu │ ├── mipsel-openwrt-linux-gnu │ ├── mipsel-openwrt-linux-musl │ ├── mipsel-openwrt-linux-uclibc │ ├── mipsel-openwrt-linux2.4-uclibc │ ├── powerpc-linux │ ├── powerpc-openwrt-linux-gnu │ ├── powerpc-openwrt-linux-gnuspe │ ├── powerpc-openwrt-linux-musl │ ├── powerpc-openwrt-linux-uclibc │ ├── powerpc-openwrt-linux-uclibcspe │ ├── sparc-linux │ ├── sparc-linux-gnu │ ├── sparc-openwrt-linux-gnu │ ├── sparc-openwrt-linux-uclibc │ ├── x86_64-linux │ ├── x86_64-openwrt-linux-gnu │ ├── x86_64-openwrt-linux-musl │ └── x86_64-openwrt-linux-uclibc ├── subdir.mk ├── target.mk ├── toolchain-build.mk ├── toplevel.mk ├── uclibc++.mk ├── unpack.mk ├── verbose.mk └── version.mk ├── package ├── Makefile ├── base-files │ ├── Makefile │ ├── files │ │ ├── bin │ │ │ ├── ipcalc.sh │ │ │ └── login.sh │ │ ├── etc │ │ │ ├── banner │ │ │ ├── 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.sh │ │ │ ├── preinit │ │ │ │ ├── 02_default_set_state │ │ │ │ ├── 10_indicate_failsafe │ │ │ │ ├── 10_indicate_preinit │ │ │ │ ├── 30_failsafe_wait │ │ │ │ ├── 40_run_failsafe_hook │ │ │ │ ├── 50_indicate_regular_preinit │ │ │ │ ├── 70_initramfs_test │ │ │ │ ├── 80_mount_root │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ └── 99_10_run_init │ │ │ └── upgrade │ │ │ │ ├── common.sh │ │ │ │ └── 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 │ ├── imx-bootlets │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-skip_sb_generation.patch │ │ │ ├── 002-set_elftosb_config.patch │ │ │ └── 003-add-olinuxino.patch │ ├── kexec-tools │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0004-mips_regdefs.patch │ │ │ └── 100-reduce_size.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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── uboot-mxs │ │ └── Makefile │ ├── uboot-omap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-switch_omap4_ext4.patch │ │ │ └── 002-fix_jffs2.patch │ ├── uboot-pxa │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-squashfs_rootfstype_cmdline.patch │ ├── uboot-sunxi │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 001-zuperman-d57e8f49a52e59486f49346975c826cf4c298d7e.patch │ │ │ ├── 002-pcduino3.patch │ │ │ └── 003-bananapi.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 ├── chinadns │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── chinadns.config │ │ └── chinadns.init │ └── patches │ │ ├── 0001-refine-chnroute-list.patch │ │ └── 0002-Use-to-define-trusted-DNS.patch ├── devel │ ├── binutils │ │ └── Makefile │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-gdb-pr14523-mips-signal-number.patch │ ├── oprofile │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-use_insmod_instead_of_modprobe.patch │ │ │ └── 110-fix_compile_error.patch │ ├── 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 │ │ └── 120-no_linux_ptrace_h.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 │ │ └── 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 │ │ └── 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 │ ├── fastpath │ │ ├── Makefile │ │ ├── Makefile.build │ │ ├── Makefile.release │ │ ├── release │ │ │ ├── fast_l2tp_core-4181.S │ │ │ ├── fast_l2tp_core-5281.S │ │ │ ├── fast_l2tp_core-msdk-el.S │ │ │ ├── fast_l2tp_core-msdk.S │ │ │ ├── fast_pppoe_core-4181.S │ │ │ ├── fast_pppoe_core-5281.S │ │ │ ├── fast_pppoe_core-msdk-el.S │ │ │ ├── fast_pppoe_core-msdk.S │ │ │ ├── fast_pptp_core-4181.S │ │ │ ├── fast_pptp_core-5281.S │ │ │ ├── fast_pptp_core-msdk-el.S │ │ │ ├── fast_pptp_core-msdk.S │ │ │ ├── fastpath_core-4181.S │ │ │ ├── fastpath_core-5281.S │ │ │ ├── fastpath_core-msdk-el.S │ │ │ ├── fastpath_core-msdk.S │ │ │ ├── filter-4181.S │ │ │ ├── filter-5281.S │ │ │ ├── filter-msdk-el.S │ │ │ └── filter-msdk.S │ │ └── src │ │ │ ├── Makefile │ │ │ ├── fast_filter.c │ │ │ ├── fast_ipv6_core.c │ │ │ └── fastpath_common.c │ ├── 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 │ │ ├── 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 │ ├── mac80211 │ │ ├── Makefile │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ └── regdb.txt │ │ └── patches │ │ │ ├── 000-fix_kconfig.patch │ │ │ ├── 001-fix_build.patch │ │ │ ├── 002-change_allconfig.patch │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ ├── 004-backports-add-led_trigger_blink-_oneshot.patch │ │ │ ├── 005-make-genregdb.awk-skip-antenna-gain.patch │ │ │ ├── 007-select_queue.patch │ │ │ ├── 008-fix_netdev_unregister.patch │ │ │ ├── 010-disable_rfkill.patch │ │ │ ├── 030-rt2x00_options.patch │ │ │ ├── 040-brcmutil_option.patch │ │ │ ├── 050-lib80211_option.patch │ │ │ ├── 060-no_local_ssb_bcma.patch │ │ │ ├── 070-add-missing-header.patch │ │ │ ├── 080-disable_clk_backport.patch │ │ │ ├── 100-revert_aes_ccm_port.patch │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ ├── 200-ath5k_pci_dependency.patch │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ ├── 300-pending_work.patch │ │ │ ├── 310-ap_scan.patch │ │ │ ├── 400-ath_move_debug_code.patch │ │ │ ├── 401-ath9k_blink_default.patch │ │ │ ├── 402-ath9k-fix-invalid-mac-address-handling.patch │ │ │ ├── 403-ath_regd_optional.patch │ │ │ ├── 404-world_regd_fixup.patch │ │ │ ├── 405-regd_no_assoc_hints.patch │ │ │ ├── 406-ath_regd_us.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-eeprom_endianess.patch │ │ │ ├── 502-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 │ │ │ ├── 520-mac80211_cur_txpower.patch │ │ │ ├── 521-ath9k_cur_txpower.patch │ │ │ ├── 522-mac80211_configure_antenna_gain.patch │ │ │ ├── 523-ath9k_use_configured_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-allow-to-disable-bands-via-platform-data.patch │ │ │ ├── 550-ath9k_entropy_from_adc.patch │ │ │ ├── 551-ath9k-ar933x-usb-hang-workaround.patch │ │ │ ├── 560-ath9k_pcoem_optional.patch │ │ │ ├── 561-ath9k_remove_gain_tables.patch │ │ │ ├── 562-ath9k_ani_ws_detect.patch │ │ │ ├── 563-ath9k_rxorn_intr_fix.patch │ │ │ ├── 564-ath9k_cleanup_reset_debug.patch │ │ │ ├── 565-ath9k_restart_after_nfcal_failure.patch │ │ │ ├── 566-ath9k_nfcal_xor_percal.patch │ │ │ ├── 567-ath9k_fix_init_nfcal.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 │ │ │ ├── 606-rt2x00_no_realign.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 │ │ │ ├── 800-b43-backports-form-wireless-testing-master-master-20.patch │ │ │ ├── 801-fix-5ghz.patch │ │ │ ├── 805-b43-gpio-mask-module-option.patch │ │ │ ├── 810-b43_no_pio.patch │ │ │ ├── 820-b43-add-antenna-control.patch │ │ │ ├── 830-b43-workaround-pcie-bcm4716.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 │ │ │ ├── 901-wlcore-don-t-switch-channels-on-disconnected-STA-vif.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 │ │ │ ├── 930-rtk-compat.wirless.patch │ │ │ ├── 931-rtk-add.wifi.iwrpiv.cmds.patch │ │ │ ├── 932-rtk.adhoc.patch │ │ │ ├── 933-rtk.monitor.mode.patch │ │ │ ├── 934-rtk.clent.patch │ │ │ └── 935-rtk.regd.patch │ ├── mmc_over_gpio │ │ ├── Makefile │ │ └── files │ │ │ ├── mmc_over_gpio.config │ │ │ └── mmc_over_gpio.init │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── rotary-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── rotary-gpio-custom.c │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── rtl_dev_stats │ │ ├── Makefile.build │ │ └── Makefile.release │ ├── rtl_fs │ │ ├── Makefile │ │ ├── Makefile.build │ │ ├── Makefile.release │ │ └── release │ │ │ └── r274734 │ │ │ ├── chkexfat │ │ │ ├── chkhfs │ │ │ ├── chkntfs │ │ │ ├── chkufsd │ │ │ ├── jnl.ko │ │ │ ├── mkexfat │ │ │ ├── mkhfs │ │ │ ├── mkntfs │ │ │ └── ufsd.ko │ ├── rtl_nf │ │ ├── Makefile │ │ ├── Makefile.build │ │ ├── Makefile.release │ │ └── release │ │ │ ├── rtl_nf-4181.ko │ │ │ ├── rtl_nf-5281.ko │ │ │ ├── rtl_nf-msdk.ko │ │ │ └── rtl_nf-msdkl.ko │ ├── rtl_sendfile │ │ ├── Makefile │ │ ├── Makefile.build │ │ ├── Makefile.release │ │ ├── release │ │ │ ├── reverse_sendfile-4181.S │ │ │ ├── reverse_sendfile-5281.S │ │ │ ├── reverse_sendfile-msdk.S │ │ │ └── reverse_sendfile-msdkl.S │ │ └── src │ │ │ ├── Makefile │ │ │ └── reverse_sendfile_common.c │ ├── spi-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── spi-gpio-custom.c │ ├── spi-ks8995 │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── spi_ks8995.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 │ ├── 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 │ ├── 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 │ ├── libmnl │ │ └── Makefile │ ├── libnetfilter-conntrack │ │ └── Makefile │ ├── libnfnetlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-missing_include.patch │ ├── 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 │ │ │ └── 300-rtk.monitor.mode.patch │ ├── libreadline │ │ └── Makefile │ ├── libroxml │ │ └── Makefile │ ├── librpc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-compat_fix.patch │ │ │ └── 110-musl_fixes.patch │ ├── 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 │ │ └── patches │ │ │ ├── 0001-Updated-mini-gmp.patch │ │ │ ├── 0002-Added-option-to-use-mini-gmp-in-hogweed.patch │ │ │ ├── 0003-Include-local-macros-in-nettle.m4-to-allow-regenerat.patch │ │ │ ├── 0004-Added-auto-generated-nettle-config.h.patch │ │ │ └── 0005-allow-der-iterator-to-be-used-with-mini-gmp.patch │ ├── 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 │ ├── polarssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable_sslv3.patch │ │ │ ├── 200-reduce_config.patch │ │ │ └── 210-gen_key_config_fix.patch │ ├── popt │ │ ├── Makefile │ │ └── patches │ │ │ └── 002-no-intl.patch │ ├── sysfsutils │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-mnt_path_check.patch │ ├── toolchain │ │ ├── Makefile │ │ └── eglibc-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 │ │ ├── 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 │ │ │ └── patches │ │ │ │ ├── 001-musl_af_inet_include.patch │ │ │ │ ├── 002-rtk.wds.patch │ │ │ │ └── 003-rtk.5m10m.patch │ │ ├── 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 │ │ ├── dnsmasq │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.hotplug │ │ │ │ └── dnsmasq.init │ │ │ └── patches │ │ │ │ ├── 001-Build-config-add-DNO_GMP-for-use-with-nettle-mini-gm.patch │ │ │ │ ├── 002-fix-race-on-interface-flaps.patch │ │ │ │ ├── 100-fix-dhcp-no-address-warning.patch │ │ │ │ └── 110-ipset-remove-old-kernel-support.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-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ ├── wpa_supplicant.sh │ │ │ │ └── wps-hotplug.sh │ │ │ ├── madwifi │ │ │ │ ├── include │ │ │ │ │ └── compat.h │ │ │ │ └── net80211 │ │ │ │ │ ├── _ieee80211.h │ │ │ │ │ ├── ieee80211.h │ │ │ │ │ ├── ieee80211_crypto.h │ │ │ │ │ └── ieee80211_ioctl.h │ │ │ └── patches │ │ │ │ ├── 001-fix_pmksa_cache.patch │ │ │ │ ├── 002-Add-os_exec-helper-to-run-external-programs.patch │ │ │ │ ├── 003-wpa_cli-Use-os_exec-for-action-script-execution.patch │ │ │ │ ├── 004-hostapd_cli-Use-os_exec-for-action-script-execution.patch │ │ │ │ ├── 100-madwifi_key_fixes.patch │ │ │ │ ├── 110-bool_fix.patch │ │ │ │ ├── 120-daemonize_fix.patch │ │ │ │ ├── 130-no_eapol_fix.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 │ │ │ │ ├── 410-bring_down_interface.patch │ │ │ │ ├── 420-fix_wps_pin_crash.patch │ │ │ │ ├── 430-wps_single_auth_enc_type.patch │ │ │ │ ├── 450-limit_debug_messages.patch │ │ │ │ ├── 460-indicate-features.patch │ │ │ │ ├── 470-hostapd_cli_ifdef.patch │ │ │ │ ├── 471-wpa_cli_ifdef.patch │ │ │ │ ├── 480-max_num_sta_probe.patch │ │ │ │ ├── 490-scan_wait.patch │ │ │ │ ├── 500-wpa_supplicant-add-new-config-params-to-be-used-with.patch │ │ │ │ ├── 501-driver_nl80211-use-new-parameters-during-ibss-join.patch │ │ │ │ ├── 502-wpa_s-support-htmode-param.patch │ │ │ │ ├── 600-ubus_support.patch │ │ │ │ ├── 700-rtk.vap.patch │ │ │ │ ├── 701-macfilter-support.patch │ │ │ │ ├── 702-rtk-wep-disableAC.patch │ │ │ │ ├── 703-repeater-autoconnect-vht40MHz.patch │ │ │ │ ├── 705-rtk-repeater-20M.patch │ │ │ │ └── 706-rtk-repeater-BW.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 │ │ │ │ ├── 100-use-monotic-clock-instead-of-time-of-day.patch │ │ │ │ └── 200-allow_wildcard_addr.patch │ │ ├── ipset-dns │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── ipset-dns.config │ │ │ │ └── ipset-dns.init │ │ │ └── patches │ │ │ │ └── 100-simultaneous-ipv4-ipv6.patch │ │ ├── lldpd │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── lldpd.config │ │ │ │ └── lldpd.init │ │ │ └── patches │ │ │ │ └── 002-no-stack-protector.patch │ │ ├── mdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── mdns.config │ │ │ │ └── mdns.init │ │ ├── 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.lua │ │ │ │ ├── openvpn.upgrade │ │ │ │ ├── openvpn_client_start.sh │ │ │ │ ├── openvpn_server_start.sh │ │ │ │ ├── openvpn_start.sh │ │ │ │ └── secret.key │ │ │ └── patches │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ │ └── 920-rtl_sendfile-samba.patch │ │ └── uhttpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── ubus.default │ │ │ ├── uhttpd.config │ │ │ └── uhttpd.init │ └── utils │ │ ├── arptables │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-always_optimize.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 │ │ │ ├── setmode.gcom │ │ │ └── setpin.gcom │ │ └── patches │ │ │ └── 001-compile_fix.patch │ │ ├── conntrack-tools │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile_fix.patch │ │ ├── curl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-check_long_long.patch │ │ │ └── 200-no_docs_tests.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 100-do-not-use-defdname.patch │ │ │ └── 200-fix-RTLD_NEXT.patch │ │ ├── ebtables │ │ └── Makefile │ │ ├── ifenslave │ │ └── Makefile │ │ ├── iftop │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-force-ncurses.patch │ │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-set-report-next-time-in-single-thread-mode.patch │ │ ├── iproute2 │ │ ├── Makefile │ │ ├── files │ │ │ └── 15-teql │ │ └── patches │ │ │ ├── 001-config.patch │ │ │ ├── 004-darwin_fixes.patch │ │ │ ├── 006-no_sctp.patch │ │ │ ├── 007-no_arpd.patch │ │ │ ├── 008-no_netem.patch │ │ │ ├── 100-allow_pfifo_fast.patch │ │ │ ├── 110-extra-ccopts.patch │ │ │ ├── 120-libnetlink-pic.patch │ │ │ ├── 200-add-tc_esfq.patch │ │ │ ├── 210-add-act_connmark.patch │ │ │ ├── 300-ip_tiny.patch │ │ │ └── 900-drop_FAILED_POLICY.patch │ │ ├── ipset │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-timeout-size.patch │ │ ├── iptables │ │ ├── Makefile │ │ ├── files │ │ │ └── l7 │ │ │ │ ├── aim.pat │ │ │ │ ├── bittorrent.pat │ │ │ │ ├── edonkey.pat │ │ │ │ ├── fasttrack.pat │ │ │ │ ├── ftp.pat │ │ │ │ ├── gnutella.pat │ │ │ │ ├── http.pat │ │ │ │ ├── ident.pat │ │ │ │ ├── irc.pat │ │ │ │ ├── jabber.pat │ │ │ │ ├── msnmessenger.pat │ │ │ │ ├── ntp.pat │ │ │ │ ├── pop3.pat │ │ │ │ ├── smtp.pat │ │ │ │ ├── ssl.pat │ │ │ │ └── vnc.pat │ │ └── patches │ │ │ ├── 002-layer7_2.22.patch │ │ │ ├── 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 │ │ └── src │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── api │ │ │ ├── broadcom.h │ │ │ ├── madwifi.h │ │ │ ├── nl80211.h │ │ │ └── wext.h │ │ │ ├── hardware.txt │ │ │ ├── include │ │ │ ├── iwinfo.h │ │ │ └── iwinfo │ │ │ │ ├── lua.h │ │ │ │ └── utils.h │ │ │ ├── iwinfo_cli.c │ │ │ ├── iwinfo_lib.c │ │ │ ├── iwinfo_lua.c │ │ │ ├── iwinfo_madwifi.c │ │ │ ├── iwinfo_nl80211.c │ │ │ ├── iwinfo_nl80211.h │ │ │ ├── iwinfo_utils.c │ │ │ ├── iwinfo_wext.c │ │ │ ├── iwinfo_wext.h │ │ │ ├── iwinfo_wext_scan.c │ │ │ └── iwinfo_wl.c │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── xtables-addons │ │ ├── Makefile │ │ ├── patches-1.x │ │ ├── 001-no_depmod.patch │ │ ├── 002-fix-kernel-version-detection.patch │ │ ├── 003-redundant-bracket.patch │ │ ├── 100-add-rtsp-conntrack.patch │ │ ├── 101-rtsp-linux-3.6-compat.patch │ │ ├── 200-add-lua-packetscript.patch │ │ ├── 201-fix-lua-packetscript.patch │ │ └── 300-geoip-endian-detection.patch │ │ └── patches │ │ ├── 001-no_depmod.patch │ │ ├── 002-fix-kernel-version-detection.patch │ │ ├── 003-fix-kernel-3.9.patch │ │ ├── 004-fix-kernel-3.14.patch │ │ ├── 100-add-rtsp-conntrack.patch │ │ ├── 101-rtsp-linux-3.6-compat.patch │ │ ├── 102-rtsp-linux-3.7-compat.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 │ │ └── patches │ │ │ └── 0001-mount_root-fix-jffs2-nandflash-read-cleanmarker.patch │ ├── 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 │ │ │ ├── 1000-auto-mount_rtl-fs.patch │ │ │ └── 1001-chk-metadata-and-exfat-support.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-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 │ ├── procd │ │ ├── Makefile │ │ └── files │ │ │ ├── hotplug-preinit.json │ │ │ ├── hotplug.json │ │ │ ├── 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 │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── admswconfig │ ├── Makefile │ ├── files │ │ ├── admswconfig │ │ └── admswswitch.sh │ └── patches │ │ └── 001-matrix.patch │ ├── bluez │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── bluetooth.config │ │ ├── bluetooth.dbus │ │ ├── bluez.init │ │ ├── bluez_test │ │ │ ├── bluezutils.py │ │ │ ├── dbusdef.py │ │ │ ├── endian_test │ │ │ ├── ftp-client │ │ │ ├── list-devices │ │ │ ├── map-client │ │ │ ├── monitor-bluetooth │ │ │ ├── opp-client │ │ │ ├── pbap-client │ │ │ ├── sap_client.py │ │ │ ├── service-did.xml │ │ │ ├── service-ftp.xml │ │ │ ├── service-opp.xml │ │ │ ├── service-record.dtd │ │ │ ├── service-spp.xml │ │ │ ├── simple-agent │ │ │ ├── simple-endpoint │ │ │ ├── simple-player │ │ │ ├── test-adapter │ │ │ ├── test-alert │ │ │ ├── test-cyclingspeed │ │ │ ├── test-device │ │ │ ├── test-discovery │ │ │ ├── test-health │ │ │ ├── test-health-sink │ │ │ ├── test-heartrate │ │ │ ├── test-hfp │ │ │ ├── test-manager │ │ │ ├── test-nap │ │ │ ├── test-network │ │ │ ├── test-profile │ │ │ ├── test-proximity │ │ │ ├── test-sap-server │ │ │ └── test-thermometer │ │ ├── givepin │ │ ├── hciattach_rtk.c │ │ ├── main.conf │ │ └── rtk_bluetooth_firmware │ │ │ ├── serial │ │ │ ├── rtl8723a │ │ │ │ ├── device-rtl.mk │ │ │ │ ├── log.txt │ │ │ │ ├── rlt8723a_fw │ │ │ │ ├── rtk8723_bt_config - maxTxPower │ │ │ │ ├── rtl8723a_config │ │ │ │ └── rtl8723a_config_1.5M_addr │ │ │ ├── rtl8723b │ │ │ │ ├── device-rtl.mk │ │ │ │ ├── rtl8723b_config │ │ │ │ ├── rtl8723b_config_1.5M_address │ │ │ │ ├── rtl8723b_config_3M │ │ │ │ ├── rtl8723b_config_3M_address │ │ │ │ ├── rtl8723b_fw │ │ │ │ └── rtl8723b_mp_chip_bt40_fw_asic_rom_patch_linux_uart_0x1E2F_9F73_131210_1113_new_log.txt │ │ │ ├── rtl8761a │ │ │ │ ├── device-rtl.mk │ │ │ │ ├── rtl8761a_config │ │ │ │ ├── rtl8761a_config_1.5M_address │ │ │ │ ├── rtl8761a_fw │ │ │ │ └── rtl8761a_mp_chip_bt40_fw_asic_rom_patch_linux_uart_0x1E2F_A23A_131217_2250_new_log.txt │ │ │ └── rtl8821a │ │ │ │ ├── device-rtl.mk │ │ │ │ ├── rtl8821a_config │ │ │ │ ├── rtl8821a_config_1.5M_address │ │ │ │ ├── rtl8821a_fw │ │ │ │ └── rtl8821a_mp_chip_bt40_fw_asic_rom_patch_linux_uart_0x1E2F_A042_131212_1801_new_log.txt │ │ │ └── usb │ │ │ ├── 8723A │ │ │ ├── Makefile │ │ │ └── rtl8723a_fw │ │ │ ├── 8723B │ │ │ ├── Makefile │ │ │ ├── rtl8723b_config │ │ │ ├── rtl8723b_fw │ │ │ └── rtl8723b_mp_chip_bt40_fw_asic_rom_patch_linux_usb_0x0E2F_9F73_131210_1125_new_log.txt │ │ │ ├── 8761A │ │ │ ├── Makefile │ │ │ ├── rtl8761au8192ee_fw │ │ │ ├── rtl8761au8812ae_fw │ │ │ ├── rtl8761au_fw │ │ │ └── rtl8761aw8192eu_fw │ │ │ └── 8821A │ │ │ ├── Makefile │ │ │ ├── rtl8821a_fw │ │ │ └── rtl8821a_mp_chip_bt40_fw_asic_rom_patch_linux_usb_0x0E2F_A041_131212_1702_new_log.txt │ └── patches │ │ ├── 001-bluez-rtk.patch │ │ ├── 002-bluez-adapter.patch │ │ └── 003-bluez-rtk_map.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 │ │ ├── sysntpd │ │ └── telnet │ └── patches │ │ ├── 001-resource_h_include.patch │ │ ├── 002-upstream_ash_fix.patch │ │ ├── 003-upstream_date_fix.patch │ │ ├── 004-upstream_iplink_fix.patch │ │ ├── 005-upstream_nc_fix.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 │ ├── e2fsprogs │ ├── Makefile │ ├── files │ │ ├── e2fsck.conf │ │ └── e2fsck.sh │ └── patches │ │ ├── 001-link-against-libuuid.patch │ │ ├── 002-no_malloc_h.patch │ │ └── 003-com_err_version.patch │ ├── fbtest │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── fbtest.c │ ├── fuse │ ├── Makefile │ └── patches │ │ └── 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 │ │ ├── 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 │ ├── 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 │ ├── rtk_app │ ├── Makefile │ ├── files │ │ ├── rtk_app.conf │ │ └── rtk_app.init │ └── src │ │ ├── Makefile │ │ ├── apmib.h │ │ ├── mibdef.h │ │ ├── mibhw.c │ │ ├── mibtbl.h │ │ ├── packet_capture.c │ │ ├── rtk_bootinfo.c │ │ ├── rtk_tx_calibration.c │ │ └── rtk_wpsled.c │ ├── rtk_cloud │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── cloud_device.c │ │ ├── cloud_user.c │ │ └── lib │ │ ├── cgi.c │ │ ├── cgi.h │ │ ├── http.c │ │ ├── http.h │ │ ├── xml.c │ │ └── xml.h │ ├── 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 │ └── files │ │ ├── usbmode.hotplug │ │ └── usbmode.init │ ├── usbreset │ ├── Makefile │ └── src │ │ └── usbreset.c │ ├── usbutils │ └── Makefile │ ├── util-linux │ ├── Makefile │ └── patches │ │ ├── 001-no-printf-alloc.patch │ │ ├── 002-mkostemp.patch │ │ ├── 003-unshare-include-libmount.h-to-provide-missing-MS_-de.patch │ │ └── 100-fdisk_use_qsort.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 ├── rtk_deconfig ├── defconfig_rtl8196e ├── defconfig_rtl8197f ├── defconfig_rtl8197f_usb_samba ├── defconfig_rtl8198c ├── defconfig_rtl8198c_samba ├── defconfig_rtl819xd ├── defconfig_rtl819xd_samba ├── defconfig_rtl8881a ├── defconfig_rtl8881a_samba └── defconfig_rtl8954e ├── rtk_scripts ├── patches │ ├── fstools │ │ └── 0001-mount_root-fix-jffs2-nandflash-read-cleanmarker.patch │ ├── luci │ │ ├── 100-rtk-support-ac.patch │ │ └── 110-rtk-support-vpn.patch │ ├── mountd │ │ ├── 1000-auto-mount_rtl-fs.patch │ │ └── 1001-chk-metadata-and-exfat-support.patch │ └── samba36 │ │ ├── 920-rtl_sendfile-samba.patch │ │ ├── rtl_sendfile-samba-makefile.patch │ │ └── smb1-and-fsync-smbconf.patch └── rtk_init.sh ├── 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 ├── 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.8 │ │ ├── files │ │ │ ├── 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.8 │ │ │ ├── 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 │ │ │ ├── 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-3.8 │ │ │ ├── profiles │ │ │ │ └── RB1xx.mk │ │ │ └── target.mk │ │ ├── router_be │ │ │ ├── config-3.8 │ │ │ ├── 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.3 │ │ ├── files │ │ │ ├── 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.3 │ │ │ ├── 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 │ ├── amazon │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── network │ │ ├── config-3.3 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── amazon │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.c │ │ │ │ │ ├── dma-core.c │ │ │ │ │ ├── dma-core.h │ │ │ │ │ ├── interrupt.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ └── setup.c │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ └── mach-amazon │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── mangle-port.h │ │ │ │ │ └── war.h │ │ │ ├── drivers │ │ │ │ ├── atm │ │ │ │ │ └── amazon_tpe.c │ │ │ │ ├── char │ │ │ │ │ ├── amazon_mei.c │ │ │ │ │ └── ifx_ssc.c │ │ │ │ ├── mtd │ │ │ │ │ └── maps │ │ │ │ │ │ └── amazon.c │ │ │ │ ├── net │ │ │ │ │ └── ethernet │ │ │ │ │ │ ├── admmod.c │ │ │ │ │ │ └── amazon_sw.c │ │ │ │ ├── tty │ │ │ │ │ └── serial │ │ │ │ │ │ └── amazon_asc.c │ │ │ │ └── watchdog │ │ │ │ │ └── amazon_wdt.c │ │ │ └── include │ │ │ │ └── asm-mips │ │ │ │ └── amazon │ │ │ │ ├── adm6996.h │ │ │ │ ├── amazon.h │ │ │ │ ├── amazon_dma.h │ │ │ │ ├── amazon_mei.h │ │ │ │ ├── amazon_mei_app.h │ │ │ │ ├── amazon_mei_app_ioctl.h │ │ │ │ ├── amazon_mei_ioctl.h │ │ │ │ ├── amazon_sw.h │ │ │ │ ├── amazon_tpe.h │ │ │ │ ├── amazon_wdt.h │ │ │ │ ├── atm_defines.h │ │ │ │ ├── atm_mib.h │ │ │ │ ├── ifx_peripheral_definitions.h │ │ │ │ ├── ifx_ssc.h │ │ │ │ ├── ifx_ssc_defines.h │ │ │ │ ├── irq.h │ │ │ │ ├── model.h │ │ │ │ ├── port.h │ │ │ │ └── serial.h │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.3 │ │ │ ├── 000-mips-bad-intctl.patch │ │ │ ├── 010-mips_clocksource_init_war.patch │ │ │ ├── 017-wdt-driver.patch │ │ │ ├── 100-board.patch │ │ │ ├── 130-mtd_drivers.patch │ │ │ ├── 140-net_drivers.patch │ │ │ ├── 150-serial_driver.patch │ │ │ └── 160-cfi-swap.patch │ ├── 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.10 │ │ ├── files-3.10 │ │ │ └── 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.10 │ │ │ ├── 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 │ │ │ └── 972-cpmac_fixup.patch │ │ └── src │ │ │ └── adam2patcher.c │ ├── ar71xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── defconfig │ │ │ │ │ └── wndr3700 │ │ │ │ │ │ └── network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ │ └── net │ │ │ │ │ │ └── 10-ar922x-led-fix │ │ │ │ ├── init.d │ │ │ │ │ └── defconfig │ │ │ │ ├── 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 │ │ │ │ └── upgrade │ │ │ │ │ ├── allnet.sh │ │ │ │ │ ├── dir825.sh │ │ │ │ │ ├── openmesh.sh │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── wget2nand │ │ ├── config-3.10 │ │ ├── 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-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-eap7660d.c │ │ │ │ │ ├── mach-ew-dorin.c │ │ │ │ │ ├── mach-hornet-ub.c │ │ │ │ │ ├── mach-ja76pf.c │ │ │ │ │ ├── mach-jwap003.c │ │ │ │ │ ├── mach-mr600.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-om2p.c │ │ │ │ │ ├── mach-pb42.c │ │ │ │ │ ├── mach-pb92.c │ │ │ │ │ ├── mach-rb2011.c │ │ │ │ │ ├── mach-rb4xx.c │ │ │ │ │ ├── mach-rb750.c │ │ │ │ │ ├── mach-rb91x.c │ │ │ │ │ ├── mach-rb95x.c │ │ │ │ │ ├── mach-rw2458n.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-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.c │ │ │ │ │ ├── mach-tl-wr941nd.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.c │ │ │ │ │ ├── mach-wnr2200.c │ │ │ │ │ ├── mach-wp543.c │ │ │ │ │ ├── mach-wpe72.c │ │ │ │ │ ├── mach-wrt160nl.c │ │ │ │ │ ├── mach-wrt400n.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-nxp-74hc153.c │ │ │ │ ├── leds │ │ │ │ │ ├── leds-rb750.c │ │ │ │ │ └── leds-wndr3700-usb.c │ │ │ │ ├── mtd │ │ │ │ │ ├── nand │ │ │ │ │ │ ├── ar934x_nfc.c │ │ │ │ │ │ ├── rb4xx_nand.c │ │ │ │ │ │ ├── rb750_nand.c │ │ │ │ │ │ └── rb91x_nand.c │ │ │ │ │ ├── tplinkpart.c │ │ │ │ │ └── wrt160nl_part.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 │ │ │ │ │ └── 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 │ │ │ │ ├── bhu.mk │ │ │ │ ├── buffalo.mk │ │ │ │ ├── compex.mk │ │ │ │ ├── d-link.mk │ │ │ │ ├── dragino.mk │ │ │ │ ├── ew.mk │ │ │ │ ├── jjplus.mk │ │ │ │ ├── linksys.mk │ │ │ │ ├── netgear.mk │ │ │ │ ├── openmesh.mk │ │ │ │ ├── pcs.mk │ │ │ │ ├── planex.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-wndr4300.ini │ │ ├── mikrotik │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 01-minimal.mk │ │ │ │ └── 02-ath5k.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── netgear.mk │ │ │ └── target.mk │ │ └── patches-3.10 │ │ │ ├── 100-MIPS-ath79-don-t-hardwire-cpu_has_dsp-2-to-0.patch │ │ │ ├── 101-MIPS-ath79-simplify-platform_get_resource_byname-dev.patch │ │ │ ├── 102-MIPS-ath79-Avoid-using-unitialized-reg-variable.patch │ │ │ ├── 103-tty-ar933x_uart-convert-to-use-devm_-functions.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-wrt160nl-trx-parser.patch │ │ │ ├── 405-mtd-tp-link-partition-parser.patch │ │ │ ├── 406-mtd-m25p80-allow-to-specify-max-read-size.patch │ │ │ ├── 407-mtd-m25p80-allow-to-pass-probe-types-via-platform-data.patch │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ ├── 409-mtd-rb4xx_nand_driver.patch │ │ │ ├── 410-mtd-rb750-nand-driver.patch │ │ │ ├── 411-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 412-mtd-m25p80-zero-partition-parser-data.patch │ │ │ ├── 413-mtd-ar934x-nand-driver.patch │ │ │ ├── 414-mtd-rb91x-nand-driver.patch │ │ │ ├── 420-net-ar71xx_mac_driver.patch │ │ │ ├── 422-dsa-trailer-tag-validation-fix.patch │ │ │ ├── 423-dsa-add-88e6063-driver.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ ├── 431-spi-add-various-flags.patch │ │ │ ├── 432-spi-rb4xx-spi-driver.patch │ │ │ ├── 433-spi-rb4xx-cpld-driver.patch │ │ │ ├── 434-spi-ap83_spi_controller.patch │ │ │ ├── 435-spi-vsc7385_driver.patch │ │ │ ├── 440-leds-wndr3700-usb-led-driver.patch │ │ │ ├── 441-leds-rb750-led-driver.patch │ │ │ ├── 450-gpio-nxp-74hc153-gpio-chip-driver.patch │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 700-MIPS-ath79-add-TL-WA801NDv2-suport.patch │ │ │ ├── 701-MIPS-ath79-add-TL-WA901ND-v3-support.patch │ │ │ ├── 702-MIPS-ath79-add-MyNet-N750-support.patch │ │ │ ├── 703-MIPS-ath79-add-RB91x-support.patch │ │ │ ├── 901-mdio_bitbang_ignore_ta_value.patch │ │ │ └── 902-unaligned_access_hacks.patch │ ├── at91 │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── config │ │ │ │ ├── firewall │ │ │ │ └── network │ │ ├── config-default │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ ├── boot │ │ │ │ │ └── dts │ │ │ │ │ │ └── lmu5000.dts │ │ │ │ │ └── mach-at91 │ │ │ │ │ └── board-tqma9263.c │ │ │ └── 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 │ │ ├── modules.mk │ │ ├── patches │ │ │ ├── 100-ARM-at91-build-dtb-for-LMU5000.patch │ │ │ ├── 700-tqma9263-support.patch │ │ │ ├── 805-free_some_portc_pins.patch │ │ │ └── 901-AT91-flexibity-default-leds-to-heartbeat.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ ├── atmel.mk │ │ │ └── calamp.mk │ ├── atheros │ │ ├── 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.10 │ │ ├── config-3.8 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.10 │ │ │ ├── 001-get_c0_compare_int_fix.patch │ │ │ ├── 100-board.patch │ │ │ ├── 101-early-printk-support.patch │ │ │ ├── 105-ar2315_pci.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 │ │ │ └── 230-3_10-updates.patch │ │ └── patches-3.8 │ │ │ ├── 001-get_c0_compare_int_fix.patch │ │ │ ├── 100-board.patch │ │ │ ├── 101-early-printk-support.patch │ │ │ ├── 105-ar2315_pci.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 │ ├── au1000 │ │ ├── Makefile │ │ ├── au1500 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── Atheros.mk │ │ │ │ ├── InternetBox.mk │ │ │ │ └── MeshCube.mk │ │ │ └── target.mk │ │ ├── au1550 │ │ │ ├── config-3.3 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── DBAu1550.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.6 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.6 │ │ │ ├── 002-openwrt_rootfs.patch │ │ │ ├── 003-au1000_eth_ioctl.patch │ │ │ └── 004-watchdog_low_init.patch │ ├── avr32 │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── u-boot │ │ │ │ ├── Makefile │ │ │ │ └── patches │ │ │ │ └── 100-ngw100_enable_lzma_support.patch │ │ ├── modules.mk │ │ └── patches-3.10 │ │ │ └── 110-openwrt_flashmap.patch │ ├── bcm53xx │ │ ├── Makefile │ │ ├── config-3.10 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.10 │ │ │ ├── 001-clocksource-arm_global_timer-Add-ARM-global-timer-su.patch │ │ │ ├── 051-bcm53xx-initial-support-for-the-BCM5301-BCM470X-SoC-.patch │ │ │ ├── 052-bcm53xx-register-bcma-bus.patch │ │ │ ├── 111-bcma-register-bcma-as-device-tree-driver.patch │ │ │ ├── 121-bcma-fix-dma-mask.patch │ │ │ ├── 122-bcma-add-arm-support.patch │ │ │ └── 202-bgmac-make-bgmac-work-on-systems-without-nvram.patch │ │ └── profiles │ │ │ └── 100-Generic.mk │ ├── brcm2708 │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── config │ │ │ │ └── network │ │ │ │ └── inittab │ │ ├── config-3.10 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-3.10 │ │ │ ├── 001-Add-dwc_otg-driver.patch │ │ │ ├── 002-Main-bcm2708-linux-port.patch │ │ │ ├── 003-bcm2708-watchdog-driver.patch │ │ │ ├── 004-bcm2708-framebuffer-driver.patch │ │ │ ├── 005-bcm2708-vchiq-driver.patch │ │ │ ├── 006-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 007-bcm2708_hw_random-driver.patch │ │ │ ├── 008-lirc_rpi_driver.patch │ │ │ ├── 009-bcm2708-spi-driver.patch │ │ │ ├── 010-bcm2835-thermal-driver.patch │ │ │ ├── 011-bcm2835-cpufreq-driver.patch │ │ │ ├── 012-bcm2708-sound-driver.patch │ │ │ ├── 013-bcm2835-hwmon-driver.patch │ │ │ ├── 014-bcm2708-sdhci-driver.patch │ │ │ ├── 015-bcm2708-i2c-driver.patch │ │ │ └── 016-amba-pl011-fifosize.patch │ │ └── profiles │ │ │ └── 100-RaspberryPi.mk │ ├── brcm47xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── init.d │ │ │ │ │ ├── netconfig │ │ │ │ │ └── wmacfixup │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_init_interfaces_brcm │ │ │ │ ├── 05_set_failsafe_switch_brcm │ │ │ │ └── 15_set_preinit_interface_brcm │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── decompress.c │ │ │ │ ├── decompress.lds.in │ │ │ │ ├── head.S │ │ │ │ └── loader.lds.in │ │ ├── modules.mk │ │ ├── patches-3.10 │ │ │ ├── 026-mtd-bcm47xxpart-find-boot-partition-by-CFE-magic.patch │ │ │ ├── 027-mtd-bcm47xxpart-get-nvram.patch │ │ │ ├── 029-mtd-bcm47xxpart_detect_block_aligned_Squashfs_partition.patch │ │ │ ├── 030-mtd-bcm47xxpart_detect_factory_partition.patch │ │ │ ├── 050-mtd_bcm47xxsflash_implement_ChipCommon_RW_ops.patch │ │ │ ├── 051-mtd_bcm47xxsflash_implement_polling_chip_status.patch │ │ │ ├── 052-mtd_bcm47xxsflash_implement_erasing_support.patch │ │ │ ├── 053-mtd_bcm47xxsflash_writing_support.patch │ │ │ ├── 054-mtd_bcm47xxsflash_convert_kzalloc_to_avoid_invalid_access.patch │ │ │ ├── 055-mtd_bcm47xxsflash_convert_to_module_platform_driver.patch │ │ │ ├── 070-MIPS-BCM47XX-add-board-detection.patch │ │ │ ├── 071-MIPS-BCM47XX-print-board-name-in-proc-cpuinfo.patch │ │ │ ├── 072-MIPS-BCM47XX-only-print-SoC-name-in-system-type-in-c.patch │ │ │ ├── 073-MIPS-BCM47XX-print-board-name-in-machine-entry-in-cp.patch │ │ │ ├── 075-MIPS-BCM47XX-fix-detection-of-some-boards.patch │ │ │ ├── 076-MIPS-BCM47XX-fix-detection-of-some-boards-2.patch │ │ │ ├── 080-MIPS-Add-8250-16550-serial-early-printk-driver.patch │ │ │ ├── 081-MIPS-BCM47XX-Remove-CFE-support.patch │ │ │ ├── 082-MIPS-BCM47XX-add-EARLY_PRINTK_8250-support.patch │ │ │ ├── 085-MIPS-BCM47XX-Get-GPIO-pin-from-nvram-configuration.patch │ │ │ ├── 090-MIPS-BCM47XX-fix-clock-detection-for-BCM5354-with-20.patch │ │ │ ├── 091-MIPS-BCM47XX-fix-detected-clock-on-Asus-WL520GC-and-.patch │ │ │ ├── 095-MIPS-BCM47XX-Cocci-spatch-noderef.patch │ │ │ ├── 110-MIPS-BCM47XX-add-vint-irq.patch │ │ │ ├── 111-MIPS-BCM47XX-add-cpu-overwrite.patch │ │ │ ├── 150-cpu_fixes.patch │ │ │ ├── 160-kmap_coherent.patch │ │ │ ├── 170-fix-74k-cpu.patch │ │ │ ├── 200-b44-add-support-for-Byte-Queue-Limits.patch │ │ │ ├── 201-b44-use-B44_FLAG_EXTERNAL_PHY.patch │ │ │ ├── 202-b44-rename-B44_PHY_ADDR_NO_PHY-to-B44_PHY_ADDR_NO_LO.patch │ │ │ ├── 203-b44-abort-when-no-PHY-is-available-at-all.patch │ │ │ ├── 204-b44-rename-b44_mii_-read-write-to-b44_mdio_-read-wri.patch │ │ │ ├── 205-b44-add-phylib-support.patch │ │ │ ├── 206-b44-activate-PHY-when-MAC-is-off.patch │ │ │ ├── 207-b44-do-not-set-phy-addr-to-30-for-every-ext-phy.patch │ │ │ ├── 208-b44-add-dummy-phy-device-if-we-do-not-find-any.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 │ │ │ ├── 400-arch-bcm47xx.patch │ │ │ ├── 610-pci_ide_fix.patch │ │ │ ├── 790-tg3-phylib.patch │ │ │ ├── 812-disable_wgt634u_crap.patch │ │ │ ├── 820-wgt634u-nvram-fix.patch │ │ │ ├── 830-huawei_e970_support.patch │ │ │ ├── 920-cache-wround.patch │ │ │ ├── 940-bcm47xx-yenta.patch │ │ │ ├── 976-ssb_increase_pci_delay.patch │ │ │ ├── 980-wnr834b_no_cardbus_invariant.patch │ │ │ └── 999-wl_exports.patch │ │ └── 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 │ │ │ ├── PS-1208MFG.mk │ │ │ ├── WGT634U.mk │ │ │ ├── WL500GPv1-ATH.mk │ │ │ ├── WRT350Nv1.mk │ │ │ └── WRTSL54GS.mk │ ├── brcm63xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 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.10 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ ├── 100-Broadcom.mk │ │ │ │ ├── 101-Broadcom-wl.mk │ │ │ │ ├── 102-Atheros.mk │ │ │ │ ├── 103-Ralink.mk │ │ │ │ ├── 104-No-WiFi.mk │ │ │ │ ├── 105-Broadcom-brcmsmac.mk │ │ │ │ ├── 200-GW6X00.mk │ │ │ │ └── 201-HW556.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── README.images-bcm63xx │ │ │ └── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── decompress.c │ │ │ │ ├── decompress.lds.in │ │ │ │ ├── head.S │ │ │ │ └── loader.lds.in │ │ ├── modules.mk │ │ ├── patches-3.10 │ │ │ ├── 030-MTD-bcm63xxpart-use-size-macro-for-CFE-block-size.patch │ │ │ ├── 031-MIPS-BCM63XX-export-PSI-size-from-nvram.patch │ │ │ ├── 032-MTD-bcm63xxpart-use-nvram-for-PSI-size.patch │ │ │ ├── 033-MIPS-BCM63XX-Handle-SW-IRQs-0-1.patch │ │ │ ├── 034-MIPS-BCM63XX-select-BMIPS4350-and-default-to-2-CPUs-.patch │ │ │ ├── 035-MIPS-BCM63XX-select-BOOT_RAW.patch │ │ │ ├── 036-MIPS-BCM63XX-add-support-for-BCM3368-Cable-Modem.patch │ │ │ ├── 037-MIPS-BCM63XX-recognize-Cable-Modem-firmware-format.patch │ │ │ ├── 038-MIPS-BCM63XX-provide-a-MAC-address-for-BCM3368-chips.patch │ │ │ ├── 039-MIPS-BCM63XX-let-board-specify-an-external-GPIO-to-r.patch │ │ │ ├── 040-MIPS-BCM63XX-add-support-for-the-Netgear-CVG834G.patch │ │ │ ├── 041-MIPS-BCM63XX-remove-bogus-Kconfig-selects.patch │ │ │ ├── 042-MIPS-BMIPS-support-booting-from-physical-CPU-other-t.patch │ │ │ ├── 043-MIPS-BCM63XX-Add-SMP-support-to-prom.c.patch │ │ │ ├── 044-MIPS-BCM63XX-Enable-second-core-SMP-on-BCM6328-if-av.patch │ │ │ ├── 045-bcm63xx_enet-implement-reset-autoneg-ethtool-callbac.patch │ │ │ ├── 046-bcm63xx_enet-split-DMA-channel-register-accesses.patch │ │ │ ├── 047-bcm63xx_enet-add-support-for-Broadcom-BCM63xx-integr.patch │ │ │ ├── 048-bcm63xx_enet-add-support-Broadcom-BCM6345-Ethernet.patch │ │ │ ├── 100-MIPS-bmips-fix-compilation-for-BMIPS5000.patch │ │ │ ├── 101-MIPS-allow-asm-cpu.h-to-be-included-from-assembly.patch │ │ │ ├── 102-MIPS-bmips-add-macros-for-testing-the-current-bmips-.patch │ │ │ ├── 103-MIPS-bmips-change-compile-time-checks-to-runtime-che.patch │ │ │ ├── 104-MIPS-bmips-merge-CPU-options-into-one-option.patch │ │ │ ├── 105-MIPS-BCM63XX-let-the-individual-SoCs-select-the-appr.patch │ │ │ ├── 106-MIPS-bmips-add-a-helper-function-for-registering-smp.patch │ │ │ ├── 107-MIPS-BCM63XX-always-register-bmips-smp-ops.patch │ │ │ ├── 108-MIPS-BCM63XX-change-the-guard-to-a-BMIPS4350-check.patch │ │ │ ├── 109-MIPS-BCM63XX-disable-SMP-also-on-BCM3368.patch │ │ │ ├── 110-MIPS-BCM63XX-add-USB-host-clock-enable-delay.patch │ │ │ ├── 111-MIPS-BCM63XX-add-USB-device-clock-enable-delay-to-cl.patch │ │ │ ├── 112-MIPS-BCM63XX-move-code-touching-the-USB-private-regi.patch │ │ │ ├── 113-MIPS-BCM63XX-add-OHCI-EHCI-configuration-bits-to-com.patch │ │ │ ├── 114-MIPS-BCM63XX-introduce-BCM63XX_OHCI-configuration-sy.patch │ │ │ ├── 115-MIPS-BCM63XX-add-support-for-the-on-chip-OHCI-contro.patch │ │ │ ├── 116-MIPS-BCM63XX-register-OHCI-controller-if-board-enabl.patch │ │ │ ├── 117-MIPS-BCM63XX-introduce-BCM63XX_EHCI-configuration-sy.patch │ │ │ ├── 118-MIPS-BCM63XX-add-support-for-the-on-chip-EHCI-contro.patch │ │ │ ├── 119-MIPS-BCM63XX-register-EHCI-controller-if-board-enabl.patch │ │ │ ├── 120-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 │ │ │ ├── 300-reset_buttons.patch │ │ │ ├── 301-led_count.patch │ │ │ ├── 302-extended-platform-devices.patch │ │ │ ├── 303-spi-board-info.patch │ │ │ ├── 304-boardid_fixup.patch │ │ │ ├── 306-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch │ │ │ ├── 307-MIPS-BCM63XX-add-HSSPI-register-definitions.patch │ │ │ ├── 308-board_leds_naming.patch │ │ │ ├── 309-cfe_version_mod.patch │ │ │ ├── 313-MIPS-BCM63XX-rename-__dispatch_internal-to-__dispatc.patch │ │ │ ├── 314-MIPS-BCM63XX-replace-irq-dispatch-code-with-a-generi.patch │ │ │ ├── 315-MIPS-BCM63XX-append-cpu-number-to-irq_-stat-mask.patch │ │ │ ├── 316-MIPS-BCM63XX-populate-irq_-stat-mask-_addr-for-secon.patch │ │ │ ├── 317-MIPS-BCM63XX-use-a-helper-for-getting-the-right-regi.patch │ │ │ ├── 318-MIPS-BCM63XX-add-cpu-argument-to-dispatch-internal.patch │ │ │ ├── 319-MIPS-BCM63XX-protect-irq-register-accesses.patch │ │ │ ├── 320-MIPS-BCM63XX-wire-up-the-second-CPU-s-irq-line.patch │ │ │ ├── 321-MIPS-BCM63XX-use-irq_desc-as-argument-for-un-mask.patch │ │ │ ├── 322-MIPS-BCM63XX-allow-setting-affinity-for-IPIC.patch │ │ │ ├── 323-cfe_simplify_detection.patch │ │ │ ├── 324-bcm63xxpart_use_cfedetection.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 │ │ │ ├── 409-MIPS-BCM63XX-add-HS-SPI-platform-device-and-register.patch │ │ │ ├── 410-SPI-MIPS-BCM63XX-Add-HS-SPI-driver.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-store-the-flash-type-in-global-variable.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 │ │ │ ├── 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-board_livebox.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_963281T_TEF.patch │ │ │ ├── 531-board_96328A-1441N1.patch │ │ │ ├── 532-board_96328a-1241N.patch │ │ │ ├── 533-board_rta770bw.patch │ │ │ ├── 534-board_hw556.patch │ │ │ ├── 535-board_rta770w.patch │ │ │ ├── 550-alice_gate2_leds.patch │ │ │ ├── 551-96348gw_a_leds.patch │ │ │ ├── 552-board_96348gw-10_reset_button.patch │ │ │ ├── 553-boards_probe_switch.patch │ │ │ ├── 554-board_DWVS0_leds_buttons.patch │ │ │ ├── 800-wl_exports.patch │ │ │ ├── 801-ssb_export_fallback_sprom.patch │ │ │ └── 802-rtl8367r_fix_RGMII_support.patch │ │ └── smp │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ ├── 100-Broadcom.mk │ │ │ ├── 101-Broadcom-wl.mk │ │ │ ├── 102-Atheros.mk │ │ │ ├── 103-Ralink.mk │ │ │ ├── 104-No-WiFi.mk │ │ │ └── 105-Broadcom-brcmsmac.mk │ │ │ └── target.mk │ ├── cns21xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ └── 01_leds │ │ │ └── lib │ │ │ │ ├── cns21xx.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.10 │ │ │ ├── 002-arm-debugll-printk.patch │ │ │ ├── 003-arm-introduce-fa-platform.patch │ │ │ ├── 004-arm-add-fa-time.patch │ │ │ ├── 005-arm-add-fa-gpio-driver.patch │ │ │ ├── 006-arm-add-fa-watchdog-driver.patch │ │ │ ├── 100-cns21xx-core.patch │ │ │ ├── 101-cns21xx-serial-support.patch │ │ │ ├── 102-cns21xx-gpiolib-support.patch │ │ │ ├── 103-cns21xx-usb-ohci-support.patch │ │ │ ├── 104-cns21xx-usb-ehci-support.patch │ │ │ ├── 105-cns21xx-spi-driver.patch │ │ │ ├── 106-cns21xx-gec-driver.patch │ │ │ ├── 201-cns21xx-add-usb-devices.patch │ │ │ ├── 202-cns21xx-add-watchdog-device.patch │ │ │ ├── 203-cns21xx-add-spi-master-device.patch │ │ │ ├── 204-cns21xx-add-gec-device.patch │ │ │ ├── 301-cns21xx-mach-ns-k330.patch │ │ │ └── 302-cns21xx-mach-nsb3ast.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── cns3xxx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── init.d │ │ │ │ │ └── netdev-cpu │ │ │ └── lib │ │ │ │ ├── cns3xxx.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.8 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── mach-cns3xxx │ │ │ │ │ ├── cns3xxx_fiq.S │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── headsmp.S │ │ │ │ │ ├── hotplug.c │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── platform.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 │ │ │ │ └── usb │ │ │ │ └── dwc │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── otg_attr.c │ │ │ │ ├── otg_attr.h │ │ │ │ ├── otg_cil.c │ │ │ │ ├── otg_cil.h │ │ │ │ ├── otg_cil_intr.c │ │ │ │ ├── otg_driver.c │ │ │ │ ├── otg_driver.h │ │ │ │ ├── otg_hcd.c │ │ │ │ ├── otg_hcd.h │ │ │ │ ├── otg_hcd_intr.c │ │ │ │ ├── otg_hcd_queue.c │ │ │ │ ├── otg_pcd.c │ │ │ │ ├── otg_pcd.h │ │ │ │ ├── otg_pcd_intr.c │ │ │ │ ├── otg_plat.h │ │ │ │ └── otg_regs.h │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.8 │ │ │ ├── 010-move_virtual_io_space.patch │ │ │ ├── 015-clkdev_support.patch │ │ │ ├── 020-watchdog_support.patch │ │ │ ├── 021-cache_force_multi.patch │ │ │ ├── 025-smp_support.patch │ │ │ ├── 030-pcie_clock.patch │ │ │ ├── 035-add_io_spaces.patch │ │ │ ├── 040-fiq_support.patch │ │ │ ├── 045-twd_base.patch │ │ │ ├── 055-pcie_io.patch │ │ │ ├── 060-pcie_abort.patch │ │ │ ├── 065-pcie_early_init.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 │ │ │ ├── 200-dwc_otg_support.patch │ │ │ ├── 300-laguna_support.patch │ │ │ └── 305-laguna_sdhci_card_detect.patch │ ├── cobalt │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── diag.sh │ │ ├── config-3.3 │ │ ├── image │ │ │ └── Makefile │ │ └── modules.mk │ ├── ep93xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 05_set_ether_mac_rdc │ │ ├── config-3.6 │ │ ├── config-3.8 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.6 │ │ │ ├── 001-ep93xx_cpuinfo.patch │ │ │ ├── 003-ep93xx_touchscreen.patch │ │ │ └── 004-simone_add_mmc_spi.patch │ │ ├── patches-3.8 │ │ │ ├── 001-ep93xx_cpuinfo.patch │ │ │ ├── 003-ep93xx_touchscreen.patch │ │ │ └── 004-simone_add_mmc_spi.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── 01-simone.mk │ ├── gemini │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 05_set_ether_mac_gemini │ │ ├── config-default │ │ ├── image │ │ │ └── Makefile │ │ └── patches │ │ │ ├── 000-ARM-gemini-get-platform-to-build-again.patch │ │ │ ├── 002-arm-gemini-fix-platform_register_rtc-prototype.patch │ │ │ ├── 110-watchdog-add-gemini_wdt-driver.patch │ │ │ ├── 111-arm-gemini-add-watchdog-device.patch │ │ │ ├── 112-arm-gemini-register-watchdog-devices.patch │ │ │ ├── 120-net-add-gemini-gmac-driver.patch │ │ │ ├── 121-arm-gemini-add-ethernet-device.patch │ │ │ ├── 122-arm-gemini-wbd111-register-ethernet.patch │ │ │ ├── 123-arm-gemini-wbd222-register-eth.patch │ │ │ ├── 124-arm-gemini-rut100-register-ethernet.patch │ │ │ ├── 130-usb-ehci-gemini-fot2gxx-support.patch │ │ │ ├── 131-arm-gemini-add-usb-platform-device.patch │ │ │ ├── 132-arm-gemini-wbd111-register-usb.patch │ │ │ ├── 133-arm-gemini-wbd222-register-usb.patch │ │ │ ├── 134-arm-gemini-rut100-register-usb.patch │ │ │ ├── 135-arm-gemini-nas4220-register-usb.patch │ │ │ └── 140-arm-gemini-add-pci-support.patch │ ├── generic │ │ ├── PATCHES │ │ ├── base-files │ │ │ └── init │ │ ├── config-3.10 │ │ ├── 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.c │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ ├── mtdsplit_lzma.c │ │ │ │ │ ├── mtdsplit_seama.c │ │ │ │ │ ├── mtdsplit_squashfs.c │ │ │ │ │ ├── mtdsplit_uimage.c │ │ │ │ │ └── myloader.c │ │ │ │ └── net │ │ │ │ │ └── phy │ │ │ │ │ ├── adm6996.c │ │ │ │ │ ├── adm6996.h │ │ │ │ │ ├── ar8216.c │ │ │ │ │ ├── ar8216.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 │ │ │ │ │ ├── micrel.c │ │ │ │ │ ├── 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 │ │ └── patches-3.10 │ │ │ ├── 003-11-001-MIPS-Declare-emulate_load_store_microMIPS-as-a-stati.patch │ │ │ ├── 003-11-002-MIPS-Only-set-cpu_has_mmips-if-SYS_SUPPORTS_MICROMIP.patch │ │ │ ├── 003-11-003-of-pci-Add-of_pci_get_devfn-function.patch │ │ │ ├── 003-11-004-hso-Earlier-catch-of-error-condition.patch │ │ │ ├── 003-11-008-hso-Fix-stack-corruption-on-some-architectures.patch │ │ │ ├── 003-12-001-mtd-chips-Add-support-for-PMC-SPI-Flash-chips-in-m25.patch │ │ │ ├── 009-mtd_m25p80_add_support_for_esmt_f25l32pa.patch │ │ │ ├── 020-ssb_update.patch │ │ │ ├── 025-bcma_backport.patch │ │ │ ├── 040-UBI-R-O-block-driver-on-top-of-UBI-volumes.patch │ │ │ ├── 041-UBI-block-do-not-use-term-attach.patch │ │ │ ├── 042-UBI-block-Mark-init-only-symbol-as-__initdata.patch │ │ │ ├── 043-UBI-block-Use-u64-for-the-64-bit-dividend.patch │ │ │ ├── 044-UBI-rename-block-device-ioctls.patch │ │ │ ├── 045-UBI-block-Remove-__initdata-from-ubiblock_param_ops.patch │ │ │ ├── 046-UBI-avoid-workqueue-format-string-leak.patch │ │ │ ├── 047-UBI-make-UBI_IOCVOLCRBLK-take-a-parameter-for-future.patch │ │ │ ├── 060-hso_devices.patch │ │ │ ├── 061-arm_xz_decompressor_build_fix.patch │ │ │ ├── 062-mips_decompressor_build_fix.patch │ │ │ ├── 063-arm-fix-fiq-vivt.patch │ │ │ ├── 070-net_bridge_backports.patch │ │ │ ├── 100-overlayfs.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 130-mips_remove_plat_dma_functions.patch │ │ │ ├── 131-improve_noncoherent_dma_checks.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 140-revert_usb_unbind_interfaces.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 │ │ │ ├── 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 │ │ │ ├── 261-move_bcm963xx_tag.patch │ │ │ ├── 262-compressor_kconfig_hack.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.patch │ │ │ ├── 307-mips-Reimplement-get_cycles.patch │ │ │ ├── 309-mips_fuse_workaround.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 320-ppc4xx_optimization.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 322-ppc4xx-crypto-compile-fix.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-use-mtd_get_squashfs_len-in-split_squasfh.patch │ │ │ ├── 405-mtd-add-more-helper-functions.patch │ │ │ ├── 406-mtd-add-squashfs-parser.patch │ │ │ ├── 407-mtd-hook-mtdsplit_uimage-into-Kbuild.patch │ │ │ ├── 408-mtd-hook-mtdsplit_seama-into-Kbuild.patch │ │ │ ├── 409-mtd-hook-mtdsplit_lzma-into-Kbuild.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 │ │ │ ├── 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 │ │ │ ├── 471-mtd-m25p80-allow-to-disable-small-sector-erase.patch │ │ │ ├── 472-mtd-m25p80-add-support-for-Winbond-W25X05-flash.patch │ │ │ ├── 473-mtd-m25p80-add-support-for-EON-EN25QH128-flash.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 490-mtd-ubi-add-EOF-marker-support.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 │ │ │ ├── 500-yaffs-Kbuild-integration.patch │ │ │ ├── 501-yaffs-3.5-convert-to-use-kuid_t-kgid_t.patch │ │ │ ├── 502-yaffs-3.10-disable-proc-entry.patch │ │ │ ├── 503-yaffs-add-tags-9bytes-mount-option.patch │ │ │ ├── 504-yaffs-fix-compat-tags-handling.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 │ │ │ ├── 552-ubifs-respect-silent-mount-flag.patch │ │ │ ├── 600-netfilter_layer7_2.22.patch │ │ │ ├── 601-netfilter_layer7_pktmatch.patch │ │ │ ├── 602-netfilter_layer7_match.patch │ │ │ ├── 603-netfilter_layer7_2.6.36_fix.patch │ │ │ ├── 604-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 │ │ │ ├── 614-netfilter_arpt_arp_padding_fix.patch │ │ │ ├── 615-netfilter_add_xt_id_match.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 617-netfilter_skip_filter_sysctl.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 │ │ │ ├── 686-flow_dissector-clean-up-IPIP-case.patch │ │ │ ├── 687-flow_dissector-add-support-for-IPPROTO_IPV6.patch │ │ │ ├── 688-net-flow_dissector-add-802.1ad-support.patch │ │ │ ├── 700-swconfig.patch │ │ │ ├── 701-phy_extension.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 720-phy_adm6996.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 722-phy_mvswitch.patch │ │ │ ├── 723-phy_ip175c.patch │ │ │ ├── 724-phy_ar8216.patch │ │ │ ├── 725-phy_rtl8306.patch │ │ │ ├── 726-phy_rtl8366.patch │ │ │ ├── 727-phy-rtl8367.patch │ │ │ ├── 728-phy-micrel.patch │ │ │ ├── 729-phy-rtl8367b.patch │ │ │ ├── 729-phy-tantos.patch │ │ │ ├── 730-phy_b53.patch │ │ │ ├── 731-phy_mvswitch_3.10_compilation.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 750-hostap_txpower.patch │ │ │ ├── 770-bgmac-backport.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 775-bgmac-check-length-of-received-frame.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 │ │ │ ├── 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 │ │ │ ├── 950-vm_exports.patch │ │ │ ├── 960-decompress_unlzo_fix.patch │ │ │ ├── 970-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 980-arm_openwrt_machtypes.patch │ │ │ ├── 990-gpio_wdt.patch │ │ │ ├── 992-mpcore_wdt_fix_watchdog_counter_loading.patch │ │ │ ├── 993-mpcore_wdt_fix_wdioc_setoptions_handling.patch │ │ │ ├── 994-mpcore_wdt_fix_timer_mode_setup.patch │ │ │ ├── 995-mpcore_twd_calibrate_single_core.patch │ │ │ ├── 996-zsmalloc_allow_module_build.patch │ │ │ └── 997-device_tree_cmdline.patch │ ├── imx6 │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── 02_network │ │ ├── config-3.10 │ │ ├── config-3.12 │ │ ├── files-3.10 │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ ├── imx6dl-gw51xx.dts │ │ │ │ │ ├── imx6dl-gw52xx.dts │ │ │ │ │ ├── imx6dl-gw53xx.dts │ │ │ │ │ ├── imx6q-gw5400-a.dts │ │ │ │ │ └── imx6q-gw54xx.dts │ │ │ └── drivers │ │ │ │ └── pci │ │ │ │ └── host │ │ │ │ ├── pcie-designware.c │ │ │ │ └── pcie-designware.h │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-3.10 │ │ │ ├── 0001-usb-chipidea-improve-kconfig.patch │ │ │ ├── 0002-usb-chipidea-fix-the-build-error-with-randconfig.patch │ │ │ ├── 0003-usb-chipidea-improve-kconfig-2.0.patch │ │ │ ├── 0004-i2c-imx-retry-on-NAK.patch │ │ │ ├── 0005-ahci_imx-add-ahci-sata-support-on-imx-platforms.patch │ │ │ ├── 0006-ARM-imx6q-update-the-sata-bits-definitions-of-gpr13.patch │ │ │ ├── 0007-ARM-dtsi-enable-ahci-sata-on-imx6q-platforms.patch │ │ │ ├── 0008-ahci_imx-depend-on-CONFIG_MFD_SYSCON.patch │ │ │ ├── 0009-of-pci-Provide-support-for-parsing-PCI-DT-ranges-pro.patch │ │ │ ├── 0010-ARM-imx6q-Add-PCIe-bits-to-GPR-syscon-definition.patch │ │ │ ├── 0011-PCI-imx6-Add-support-for-i.MX6-PCIe-controller.patch │ │ │ ├── 0012-ARM-imx-Add-LVDS-general-purpose-clocks-to-i.MX6Q.patch │ │ │ ├── 0013-ARM-imx6q-clock-and-Kconfig-update-for-PCIe-support.patch │ │ │ ├── 0014-ARM-dts-imx6qdl-add-pcie-device-node.patch │ │ │ ├── 0015-thermal-add-imx-thermal-driver-support.patch │ │ │ ├── 0019-regulator-pfuze100-add-pfuze100-regulator-driver.patch │ │ │ ├── 0020-regulator-pfuze100-REGULATOR_PFUZE100-needs-to-selec.patch │ │ │ ├── 0021-regulator-pfuze100-fix-build-warning-and-correct-the.patch │ │ │ ├── 0022-regulator-pfuze100-add-MODULE_LICENSE-in-pfuze100-dr.patch │ │ │ ├── 0023-regulator-pfuze100-Use-i2c_-set-get-_clientdata.patch │ │ │ ├── 0024-regulator-pfuze100-Fix-module-alias-prefix.patch │ │ │ ├── 0025-regulator-pfuze100-Use-regulator_map_voltage_ascend.patch │ │ │ ├── 0026-regulator-pfuze100-Fix-n_voltages-setting-for-SW2-SW.patch │ │ │ ├── 0027-regulator-pfuze100-Simplify-pfuze100_set_ramp_delay-.patch │ │ │ ├── 0028-regulator-pfuze100-Fix-off-by-one-for-max_register-s.patch │ │ │ ├── 0029-regulator-pfuze100-allow-misprogrammed-ID.patch │ │ │ ├── 0030-PCI-imx6-remove-outbound-io-mem-ATU-region-mapping.patch │ │ │ ├── 0031-PCI-imx6-init-must-be-early.patch │ │ │ ├── 0032-PCI-imx6-fix-imprecise-abort-handler.patch │ │ │ ├── 0033-PCI-imx6-increase-link-startup.patch │ │ │ ├── 0034-PCI-imx6-add-support-for-legacy-irqs.patch │ │ │ ├── 0050-sky2-allow-mac-to-come-from-dt.patch │ │ │ ├── 0060-flexcan.patch │ │ │ ├── 0061-can-flexcan-use-correct-clock-as-base-for-bit-rate-c.patch │ │ │ ├── 010-pcie-backport-fixes.patch │ │ │ ├── 100-bootargs.patch │ │ │ ├── 110-gw5400-a.patch │ │ │ ├── 111-gw54xx.patch │ │ │ ├── 112-gw51xx.patch │ │ │ ├── 113-gw52xx.patch │ │ │ ├── 114-gw53xx.patch │ │ │ └── 120-ventana-init.ptach │ │ ├── patches-3.12 │ │ │ ├── 0001-ARM-dts-imx6qdl-add-pcie-device-node.patch │ │ │ ├── 0002-ARM-imx6q-Add-pll4_audio_div-to-clock-tree.patch │ │ │ ├── 0003-ARM-imx-add-soc-revision-helper-functions.patch │ │ │ ├── 0004-ARM-imx6q-use-common-soc-revision-helpers.patch │ │ │ ├── 0005-ARM-imx-Add-LVDS-general-purpose-clocks-to-i.MX6Q.patch │ │ │ ├── 0006-ARM-imx6q-clock-and-Kconfig-update-for-PCIe-support.patch │ │ │ ├── 0007-ARM-dts-added-several-new-imx-pinmux-groups.patch │ │ │ ├── 0008-ARM-dts-add-Gateworks-Ventana-support.patch │ │ │ ├── 0009-imx-add-PCI-fixup-for-PEX860X-on-Gateworks-board.patch │ │ │ ├── 0010-ARM-imx6q-Add-PCIe-bits-to-GPR-syscon-definition.patch │ │ │ ├── 0011-PCI-imx6-Add-support-for-i.MX6-PCIe-controller.patch │ │ │ ├── 0030-PCI-imx6-remove-outbound-io-mem-ATU-region-mapping.patch │ │ │ ├── 0031-PCI-imx6-init-must-be-early.patch │ │ │ ├── 0032-PCI-imx6-fix-imprecise-abort-handler.patch │ │ │ ├── 0033-PCI-imx6-increase-link-startup.patch │ │ │ ├── 0034-PCI-imx6-add-support-for-legacy-irqs.patch │ │ │ ├── 0040-i2c-imx-retry-on-NAK.patch │ │ │ ├── 0050-sky2-allow-mac-to-come-from-dt.patch │ │ │ └── 100-bootargs.patch │ │ └── profiles │ │ │ ├── 100-generic.mk │ │ │ ├── 110-wandboard.mk │ │ │ └── 120-gateworks.mk │ ├── iop32x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── network │ │ ├── config-3.3 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.3 │ │ │ ├── 001-ARM-Fix-missing-linux-types.h-inclusion-in-asm-hardw.patch │ │ │ ├── 002-Disintegrate-asm-system.h-for-ARM.patch │ │ │ └── 003-plat-iop-fix-section-mismatch.patch │ ├── ixp4xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ixp4xx.sh │ │ │ │ ├── preinit │ │ │ │ └── 05_set_ether_mac_ixp4xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── 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.10 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── uci-defaults │ │ │ │ ├── 01_leds │ │ │ │ └── 02_network │ │ ├── config-3.10 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── patches-3.10 │ │ │ ├── 0001-of-pci-Provide-support-for-parsing-PCI-DT-ranges-pro.patch │ │ │ ├── 0003-of-pci-Add-of_pci_parse_bus_range-function.patch │ │ │ ├── 0004-clk-mvebu-create-parent-child-relation-for-PCIe-cloc.patch │ │ │ ├── 0005-clk-mvebu-add-more-PCIe-clocks-for-Armada-XP.patch │ │ │ ├── 0006-pci-PCIe-driver-for-Marvell-Armada-370-XP-systems.patch │ │ │ ├── 0007-arm-mvebu-PCIe-support-is-now-available-on-mvebu.patch │ │ │ ├── 0008-pci-mvebu-fix-return-value-check-in-mvebu_pcie_probe.patch │ │ │ ├── 0009-pci-mvebu-enable-driver-usage-on-Kirkwood.patch │ │ │ ├── 0010-arm-kirkwood-move-PCIe-window-init-to-legacy-driver.patch │ │ │ ├── 0011-arm-kirkwood-add-SoC-level-Device-Tree-data-for-PCIe.patch │ │ │ ├── 0012-arm-kirkwood-convert-Iomega-Iconnect-to-use-DT-for-t.patch │ │ │ ├── 0013-arm-kirkwood-convert-MPL-CEC4-to-use-DT-for-the-PCIe.patch │ │ │ ├── 0014-arm-kirkwood-convert-ZyXEL-NSA310-to-use-DT-for-the-.patch │ │ │ ├── 0015-arm-kirkwood-convert-QNAP-TS219-to-use-DT-for-the-PC.patch │ │ │ ├── 0016-arm-kirkwood-convert-db-88f6281-db-88f6282-to-the-De.patch │ │ │ ├── 0017-pci-mvebu-no-longer-fake-the-slot-location-of-downst.patch │ │ │ ├── 0018-pci-mvebu-allow-the-enumeration-of-devices-beyond-ph.patch │ │ │ ├── 0019-pci-mvebu-fix-the-emulation-of-the-status-register.patch │ │ │ ├── 0020-net-mv643xx_eth-use-phy_disconnect-instead-of-phy_de.patch │ │ │ ├── 0021-net-mv643xx_eth-use-managed-devm_ioremap-for-port-re.patch │ │ │ ├── 0022-net-mv643xx_eth-add-phy_node-to-platform_data-struct.patch │ │ │ ├── 0023-net-mv643xx_eth-use-of_phy_connect-if-phy_node-prese.patch │ │ │ ├── 0024-net-mv643xx_eth-proper-initialization-for-Kirkwood-S.patch │ │ │ ├── 0025-net-mv643xx_eth-add-DT-parsing-support.patch │ │ │ ├── 0026-ARM-kirkwood-add-gigabit-ethernet-and-mvmdio-device-.patch │ │ │ ├── 0027-ARM-kirkwood-remove-redundant-DT-board-files.patch │ │ │ ├── 0028-ARM-kirkwood-remove-legacy-clk-alias-for-mv643xx_eth.patch │ │ │ ├── 0029-net-mv643xx_eth-do-not-use-port-number-as-platform-d.patch │ │ │ ├── 0050-of-add-support-for-parsing-mac-addresses-from-mtd.patch │ │ │ ├── 110-ib62x0.patch │ │ │ └── 120-pogoplug_e02.patch │ │ └── profiles │ │ │ ├── 100-generic.mk │ │ │ ├── 110-nas.mk │ │ │ └── 120-pogoplug.mk │ ├── lantiq │ │ ├── Makefile │ │ ├── ase │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 001-netgear.mk │ │ │ └── target.mk │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_wireless-wps │ │ │ └── lib │ │ │ │ ├── functions │ │ │ │ └── lantiq.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-default │ │ ├── dts │ │ │ ├── ACMP252.dts │ │ │ ├── ARV4510PW.dts │ │ │ ├── ARV4518PWR01.dts │ │ │ ├── ARV4518PWR01A.dts │ │ │ ├── ARV4519PW.dts │ │ │ ├── ARV4520PW.dts │ │ │ ├── ARV4525PW.dts │ │ │ ├── ARV452CQW.dts │ │ │ ├── ARV7518PW.dts │ │ │ ├── ARV7525PW.dts │ │ │ ├── ARV752DPW.dts │ │ │ ├── ARV752DPW22.dts │ │ │ ├── DGN1000B.dts │ │ │ ├── DGN3500.dts │ │ │ ├── DGN3500.dtsi │ │ │ ├── DGN3500B.dts │ │ │ ├── EASY50712.dts │ │ │ ├── EASY50810.dts │ │ │ ├── EASY80920.dtsi │ │ │ ├── EASY80920NAND.dts │ │ │ ├── EASY80920NOR.dts │ │ │ ├── EASY98000NOR.dts │ │ │ ├── EASY98000SFLASH.dts │ │ │ ├── FRITZ3370.dts │ │ │ ├── FRITZ7320.dts │ │ │ ├── GIGASX76X.dts │ │ │ ├── GR7000.dts │ │ │ ├── H201L.dts │ │ │ ├── P2601HNFX.dts │ │ │ ├── TDW8970.dts │ │ │ ├── VG3503J.dts │ │ │ ├── VGV7519.dtsi │ │ │ ├── VGV7519BRN.dts │ │ │ ├── VGV7519NOR.dts │ │ │ ├── WBMR.dts │ │ │ ├── amazonse.dtsi │ │ │ ├── ar9.dtsi │ │ │ ├── danube.dtsi │ │ │ ├── falcon.dtsi │ │ │ └── vr9.dtsi │ │ ├── falcon │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── lantiq.mk │ │ │ └── target.mk │ │ ├── files │ │ │ └── firmware │ │ │ │ └── lantiq │ │ │ │ ├── vr9_phy11g_a1x.bin │ │ │ │ ├── vr9_phy11g_a2x.bin │ │ │ │ ├── vr9_phy22f_a1x.bin │ │ │ │ └── vr9_phy22f_a2x.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── eva.dummy.squashfs │ │ │ ├── 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.cfg │ │ ├── modules.mk │ │ ├── patches-3.10 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0002-MIPS-lantiq-adds-minimal-dcdc-driver.patch │ │ │ ├── 0004-MIPS-lantiq-falcon-add-cpu-feature-override.h.patch │ │ │ ├── 0005-MIPS-lantiq-falcon-fix-asc-clock-definition.patch │ │ │ ├── 0006-MIPS-lantiq-dtb-image-hack.patch │ │ │ ├── 0007-MIPS-lantiq-handle-vmmc-memory-reservation.patch │ │ │ ├── 0008-NET-PHY-adds-driver-for-lantiq-PHY11G.patch │ │ │ ├── 0009-MIPS-lantiq-add-atm-hack.patch │ │ │ ├── 0010-MIPS-lantiq-wifi-and-ethernet-eeprom-handling.patch │ │ │ ├── 0011-MIPS-lantiq-add-reset-controller-api-support.patch │ │ │ ├── 0012-MTD-m25p80-allow-loading-mtd-name-from-OF.patch │ │ │ ├── 0013-MTD-lantiq-Add-NAND-support-on-Lantiq-Falcon-SoC.patch │ │ │ ├── 0014-MTD-lantiq-handle-NO_XIP-on-cfi0001-flash.patch │ │ │ ├── 0015-MTD-lantiq-xway-fix-invalid-operator.patch │ │ │ ├── 0016-MTD-lantiq-xway-the-latched-command-should-be-persis.patch │ │ │ ├── 0017-MTD-lantiq-xway-remove-endless-loop.patch │ │ │ ├── 0018-MTD-lantiq-xway-add-missing-write_buf-and-read_buf-t.patch │ │ │ ├── 0019-NET-lantiq-adds-PHY11G-firmware-blobs.patch │ │ │ ├── 0020-NET-MIPS-lantiq-adds-xrx200-net.patch │ │ │ ├── 0021-NET-MIPS-lantiq-update-etop-driver-for-devicetree.patch │ │ │ ├── 0022-NET-multi-phy-support.patch │ │ │ ├── 0023-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 0024-GPIO-MIPS-lantiq-add-gpio-driver-for-falcon-SoC.patch │ │ │ ├── 0025-GPIO-add-gpio_export_with_name.patch │ │ │ ├── 0026-pinctrl-lantiq-fix-up-pinmux.patch │ │ │ ├── 0027-pinctrl-lantiq-add-missing-gphy-led-setup.patch │ │ │ ├── 0028-pinctrl-lantiq-add-missing-pin-definition-to-falcon-.patch │ │ │ ├── 0029-serial-MIPS-lantiq-add-clk_enable-call-to-driver.patch │ │ │ ├── 0030-serial-MIPS-lantiq-fix-clock-error-check.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 │ │ │ ├── 0100-mtd-split.patch │ │ │ ├── 0101-timer-backport.patch │ │ │ ├── 0102-generic-dtb-image-hack.patch │ │ │ └── 0200-NET-fix-etop-registers.patch │ │ ├── svip_be │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 000-generic.mk │ │ │ │ └── 001-lantiq.mk │ │ │ └── target.mk │ │ ├── svip_le │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 000-generic.mk │ │ │ │ └── 001-lantiq.mk │ │ │ └── target.mk │ │ ├── xrx200 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── arv.mk │ │ │ │ ├── avm.mk │ │ │ │ ├── lantiq.mk │ │ │ │ └── tplink.mk │ │ │ └── target.mk │ │ └── xway │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ ├── arv.mk │ │ │ ├── audiocodes.mk │ │ │ ├── avm.mk │ │ │ ├── aztech.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.10 │ │ ├── config-3.12 │ │ ├── image │ │ │ └── Makefile │ │ ├── le │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── le64 │ │ │ ├── config-default │ │ │ └── target.mk │ ├── mcs814x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── uci-defaults │ │ │ │ │ └── 01_leds │ │ │ └── lib │ │ │ │ ├── mcs814x.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_mcs814x.sh │ │ ├── config-default │ │ ├── files-3.3 │ │ │ ├── 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 │ │ │ │ │ │ ├── memory.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.3 │ │ │ ├── 001-platform.patch │ │ │ ├── 003-ethernet.patch │ │ │ ├── 004-usb.patch │ │ │ ├── 005-mcs814x_rng.patch │ │ │ ├── 006-mcs814x_wdt.patch │ │ │ ├── 008-mcs814x_gpio.patch │ │ │ ├── 010-fdt_config_cmdline_extend.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 │ ├── mpc52xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-3.8 │ │ └── image │ │ │ └── Makefile │ ├── mpc83xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mpc83xx.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_mpc83xx.sh │ │ ├── config-3.8 │ │ ├── files │ │ │ └── scripts │ │ │ │ └── mkits.sh │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.8 │ │ │ ├── 100-powerpc_create_fit_uImages.patch │ │ │ ├── 101-mpc8377_wlan-dts-add-gpio-leds.patch │ │ │ ├── 110-vitesse_8601.patch │ │ │ ├── 111-etsec27_war.patch │ │ │ ├── 120-ucc_tdm.patch │ │ │ ├── 200-powerpc-add-rbppc-support.patch │ │ │ ├── 201-powerpc-add-rb_iomap.patch │ │ │ ├── 202-ata-add-pata_rbppc_cf-driver.patch │ │ │ ├── 203-mtd-add-rbppc_nand-driver.patch │ │ │ └── 300-mpc8377_wlan-dts-add-openwrt-hacks.patch │ ├── mpc85xx │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 00_inittab-console-fixup │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mpc85xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 03_preinit_do_mpc85xx.sh │ │ │ │ └── 05_set_preinit_iface_mpc85xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── generic │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── p1020 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── patches-3.10 │ │ │ ├── 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 │ │ │ └── 200-fix_gianfar_napi_poll.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── tp-link.mk │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── mvebu.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_mvebu.sh │ │ ├── config-3.10 │ │ ├── image │ │ │ └── Makefile │ │ └── profiles │ │ │ └── 100-Generic.mk │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── diag.sh │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mxs.sh │ │ │ │ └── preinit │ │ │ │ └── 03_preinit_do_mxs.sh │ │ ├── config-default │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── imx28-duckbill.dts │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches │ │ │ ├── 100-soc-audio-support.patch │ │ │ ├── 101-soc-audio-dts.patch │ │ │ ├── 106-add-dcp-dts.patch │ │ │ ├── 110-lradc-dts.patch │ │ │ └── 200-duckbill.patch │ │ └── profiles │ │ │ ├── 01-olinuxino-maxi.mk │ │ │ ├── 02-duckbill.mk │ │ │ └── 03-olinuxino-micro.mk │ ├── octeon │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── network │ │ ├── config-default │ │ ├── files │ │ │ └── drivers │ │ │ │ └── staging │ │ │ │ └── octeon-usb │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── TODO │ │ │ │ ├── cvmx-usb.c │ │ │ │ ├── cvmx-usb.h │ │ │ │ ├── cvmx-usbcx-defs.h │ │ │ │ ├── cvmx-usbnx-defs.h │ │ │ │ └── octeon-hcd.c │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.10 │ │ │ ├── 0001-MIPS-Octeon-Fix-DT-pruning-bug-with-pip-ports.patch │ │ │ ├── 0002-MIPS-Octeon-Enable-interfaces-on-EdgeRouter-Lite.patch │ │ │ ├── 0003-staging-MIPS-add-Octeon-USB-HCD-support.patch │ │ │ └── 0004-fix_hcd.patch │ │ └── profiles │ │ │ └── 000-Generic.mk │ ├── omap │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-default │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.12 │ │ │ ├── 002-ARM-dts-AM33xx-Correct-gpio-interrupt-cells-property.patch │ │ │ ├── 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 │ │ │ ├── 100-ARM-dts-add-AM33XX-EDMA-support.patch │ │ │ ├── 101-ARM-dts-add-AM33XX-SPI-DMA-support.patch │ │ │ ├── 103-ARM-dts-add-AM33XX-MMC-support-and-documentation.patch │ │ │ ├── 200-ARM-OMAP2-hwmod-cleanup-HWMOD_INIT_NO_RESET-usage.patch │ │ │ ├── 201-ARM-dts-omap-Add-new-bindings-for-OMAP.patch │ │ │ ├── 202-ARM-OMAP2-hwmod-Extract-no-idle-and-no-reset-info-from-DT.patch │ │ │ ├── 203-ARM-OMAP2-hwmod-Cleanup-usag~RESET-and-HWMOD_INIT_NO_IDLE.patch │ │ │ ├── 204-ARM-dts-AM335x-evmsk-Do-not-reset-gpio0.patch │ │ │ ├── 300-ARM-dts-AM33XX-Add-SHAM-data-and-documentation.patch │ │ │ ├── 301-ARM-dts-AM33XX-Add-AES-data-and-documentation.patch │ │ │ ├── 302-ARM-dts-AM33XX-Fix-AES-interrupt-number.patch │ │ │ ├── 350-ARM-AM33xx-hwmod-Add-RNG-module-data.patch │ │ │ ├── 400-ASoC-davinci-evm-Move-sysclk-logic-away-from-evm_hw_.patch │ │ │ ├── 401-ASoC-davinci-evm-Add-device-tree-binding.patch │ │ │ ├── 402-ASoC-davinci-mcasp-Add-DMA-register-locations-to-DT.patch │ │ │ ├── 403-ASoC-davinci-mcasp-Extract-DMA-channels-directly-fro.patch │ │ │ ├── 404-ASoC-davinci-mcasp-Interrupts-property-to-optional-a.patch │ │ │ ├── 405-ASoC-davinci-Add-support-for-AM33xx-SoC-Audio.patch │ │ │ ├── 406-ASoC-tlv320aic3x-Add-regulators-to-DT-bindings-docum.patch │ │ │ ├── 407-ASoC-tlv320aic3x-Add-codec-pins-to-DT-bindings-docum.patch │ │ │ ├── 408-ARM-dts-am33xx-Add-mcasp0-and-mcasp1-device-tree-ent.patch │ │ │ ├── 409-ARM-dts-am33xx-mcasp-Add-new-dma-register-location-t.patch │ │ │ ├── 410-ARM-dts-am335x-evm-Add-audio-support-for-am335x-evm.patch │ │ │ ├── 411-ARM-dts-am335x-evm-Remove-blank-lines.patch │ │ │ ├── 412-ARM-dts-am335x-evm-Clarify-the-audio-codec-node.patch │ │ │ ├── 413-ARM-dts-am335x-evm-Add-unique-name-for-the-sound-car.patch │ │ │ ├── 414-ARM-dts-am335x-evmsk-Audio-support.patch │ │ │ ├── 415-ASoC-davinci-mcasp-Remove-redundant-num-serializer-D.patch │ │ │ ├── 416-ARM-dts-am335x-evm-Remove-num-serializer-property-fo.patch │ │ │ ├── 417-ARM-dts-am335x-evmsk-Remove-num-serializer-property.patch │ │ │ ├── 500-ARM-dts-AM33XX-Add-LCDC-info-into-am335x-evm.patch │ │ │ ├── 600-crypto-omap-des-Add-omap-des-driver-for-OMAP4-AM43xx.patch │ │ │ ├── 601-crypto-omap-des-Add-config-and-build-options.patch │ │ │ ├── 602-crypto-omap-des-Add-triple-DES-des3_ede-support-to-driver.patch │ │ │ ├── 797-ARM_dts_omap4-panda-es_Do_not_reset_gpio1.patch │ │ │ ├── 801-ARM_dts_am33xx_change_usb_ctrl_module_label.patch │ │ │ ├── 802-ARM_OMAP3plus_do_not_register_non-dt_OPP_tables_for_device_tree_boot.patch │ │ │ ├── 803-ARM_OMAP2plus_add_missing_lateinit_hook_for_calling_pm_late_init.patch │ │ │ ├── 804-ARM_OMAP3plus_use_cpu0-cpufreq_driver_in_device_tree_supported_boot.patch │ │ │ ├── 805-ARM_dts_TWL4030_Add_missing_regulators.patch │ │ │ ├── 806-ARM_dts_TWL4030_Add_power_button_support.patch │ │ │ ├── 807-ARM_dts_AM33XX_Add_hwspinlock_node.patch │ │ │ ├── 808-ARM_dts_AM33xx_Add_RNG_node.patch │ │ │ ├── 900-wl1251-split-wl251-platform-data-to-a-separate-structure.patch │ │ │ ├── 901-wlcore-set-irq_flags-in-the-board-files.patch │ │ │ ├── 902-wlcore-remove-pwr_in_suspend-from-platform-data.patch │ │ │ ├── 903-wl12xx-use-frequency-instead-of-enumerations-for-pdata-clocks.patch │ │ │ ├── 904-wlcore-add-initial-device-tree-support-to-the-sdio-module.patch │ │ │ ├── 905-wlcore-sdio-add-wilink-clock-providers.patch │ │ │ ├── 906-wlcore-sdio-get-clocks-from-device-tree.patch │ │ │ ├── 907-wlcore-wl12xx-check-if-we-got-correct-clock-data-from-DT.patch │ │ │ ├── 908-Documentation-dt-bindings-TI-WiLink-modules.patch │ │ │ ├── 920-arm-dts-am335x-evmsk-add-support-for-lcd-panel.patch │ │ │ ├── 921-arm-dts-am335x-sk-add-touchscreen-support.patch │ │ │ └── 950-am335x-evmsk-wilink-dts.patch │ │ ├── patches │ │ │ └── 001-omap4_pandaboard-wlan_fix.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── omap24xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ ├── fstab │ │ │ │ │ ├── network │ │ │ │ │ └── wireless │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 10-bme-pmm-image │ │ │ │ │ │ └── 20-p54spi-eeprom │ │ │ │ ├── init.d │ │ │ │ │ └── watchdog │ │ │ │ ├── inittab │ │ │ │ └── pointercal │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── bc4fw.bin │ │ ├── config-3.3 │ │ ├── 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 │ │ │ ├── 400-fix-section-mismatch-warnings.patch │ │ │ └── a01-dt2-fixes-for-3.3.patch │ ├── ppc40x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ppc40x.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.10 │ │ │ ├── 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.10 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.10 │ │ │ ├── 100-openwrt_flashmap.patch │ │ │ └── 110-openwrt_dts_cmdline.patch │ ├── pxa │ │ ├── Makefile │ │ ├── config-3.3 │ │ ├── image │ │ │ └── Makefile │ │ ├── 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 │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ └── usb │ │ │ │ │ │ └── 10-motion │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 09_fix-seama-header │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 03_preinit_do_ramips.sh │ │ │ │ ├── 04_disable_wnce2001_flash_checksumming │ │ │ │ ├── 06_set_iface_mac │ │ │ │ └── 07_set_preinit_iface_ramips │ │ │ │ ├── ramips.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── dts │ │ │ ├── 3G-6200N.dts │ │ │ ├── 3G-6200NL.dts │ │ │ ├── 3G300M.dts │ │ │ ├── AIR3GII.dts │ │ │ ├── ALL0239-3G.dts │ │ │ ├── ALL0256N-4M.dts │ │ │ ├── ALL0256N-8M.dts │ │ │ ├── ALL5002.dts │ │ │ ├── ALL5003.dts │ │ │ ├── ARGUS_ATP52B.dts │ │ │ ├── ASL26555-16M.dts │ │ │ ├── ASL26555-8M.dts │ │ │ ├── AWM002-4M.dtsi │ │ │ ├── AWM002-8M.dtsi │ │ │ ├── AWM002-EVB-4M.dts │ │ │ ├── AWM002-EVB-8M.dts │ │ │ ├── AWM002.dtsi │ │ │ ├── BC2.dts │ │ │ ├── BR-6425.dts │ │ │ ├── BROADWAY.dts │ │ │ ├── CARAMBOLA.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 │ │ │ ├── ESR-9753.dts │ │ │ ├── F5D8235_V1.dts │ │ │ ├── F5D8235_V2.dts │ │ │ ├── F7C027.dts │ │ │ ├── FONERA20N.dts │ │ │ ├── FREESTATION5.dts │ │ │ ├── HG255D.dts │ │ │ ├── HW550-3G.dts │ │ │ ├── IP2202.dts │ │ │ ├── M3.dts │ │ │ ├── M4-4M.dts │ │ │ ├── M4-8M.dts │ │ │ ├── MOFI3500-3GN.dts │ │ │ ├── MPRA1.dts │ │ │ ├── MPRA2.dts │ │ │ ├── MT7620a.dts │ │ │ ├── MT7620a_MT7530.dts │ │ │ ├── MT7620a_MT7610e.dts │ │ │ ├── MT7620a_V22SG.dts │ │ │ ├── MT7621.dts │ │ │ ├── MZK-W300NH2.dts │ │ │ ├── NBG-419N.dts │ │ │ ├── NW718.dts │ │ │ ├── OMNI-EMB-HPM.dts │ │ │ ├── OMNI-EMB.dts │ │ │ ├── PSR-680W.dts │ │ │ ├── PWH2004.dts │ │ │ ├── RP-N53.dts │ │ │ ├── RT-G32-B1.dts │ │ │ ├── RT-N10-PLUS.dts │ │ │ ├── RT-N13U.dts │ │ │ ├── RT-N15.dts │ │ │ ├── RTN56U.dts │ │ │ ├── SL-R7205.dts │ │ │ ├── TEW-691GR.dts │ │ │ ├── TEW-692GR.dts │ │ │ ├── UR-326N4G.dts │ │ │ ├── UR-336UN.dts │ │ │ ├── V11STFE.dts │ │ │ ├── V22RW-2X2.dts │ │ │ ├── W150M.dts │ │ │ ├── W306R_V20.dts │ │ │ ├── W502U.dts │ │ │ ├── WCR150GN.dts │ │ │ ├── WHR-300HP2.dts │ │ │ ├── WHR-600D.dts │ │ │ ├── WHR-G300N.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 │ │ │ ├── X5.dts │ │ │ ├── X8.dts │ │ │ ├── XDXRN502J.dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620n.dtsi │ │ │ ├── mt7621.dtsi │ │ │ ├── rt2880.dtsi │ │ │ ├── rt3050.dtsi │ │ │ ├── rt3352.dtsi │ │ │ ├── rt3883.dtsi │ │ │ └── rt5350.dtsi │ │ ├── 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 │ │ ├── mt7620a │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7620n │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-3.10 │ │ │ ├── 0001-MTD-m25p80-allow-loading-mtd-name-from-OF.patch │ │ │ ├── 0002-reset-Fix-compile-when-reset-RESET_CONTROLLER-is-not.patch │ │ │ ├── 0003-DT-Add-documentation-for-rt2880-wdt.patch │ │ │ ├── 0004-watchdog-MIPS-add-ralink-watchdog-driver.patch │ │ │ ├── 0005-DT-Add-documentation-for-gpio-ralink.patch │ │ │ ├── 0006-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ ├── 0009-MIPS-ralink-add-support-for-reset-controller-API.patch │ │ │ ├── 0010-MIPS-ralink-add-support-for-periodic-timer-irq.patch │ │ │ ├── 0011-MIPS-ralink-add-support-for-systick-timer-found-on-n.patch │ │ │ ├── 0012-MIPS-ralink-probe-clocksources-from-OF.patch │ │ │ ├── 0013-MIPS-ralink-mt7620-add-verbose-ram-info.patch │ │ │ ├── 0014-MIPS-ralink-mt7620-add-spi-clock-definition.patch │ │ │ ├── 0015-MIPS-ralink-mt7620-add-wdt-clock-definition.patch │ │ │ ├── 0016-MIPS-ralink-mt7620-fix-usb-issue-during-frequency-sc.patch │ │ │ ├── 0017-MIPS-ralink-mt7620-this-SoC-has-ehci-and-ohci-hosts.patch │ │ │ ├── 0018-DT-Add-documentation-for-spi-rt2880.patch │ │ │ ├── 0019-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ ├── 0020-MIPS-ralink-update-dts-files.patch │ │ │ ├── 0021-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ ├── 0022-MIPS-add-driver-for-the-built-in-PCI-controller-of-the-RT3883-SoC.patch │ │ │ ├── 0100-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ ├── 0102-MIPS-ralink-add-verbose-pmu-info.patch │ │ │ ├── 0103-MIPS-ralink-adds-a-bootrom-dumper-module.patch │ │ │ ├── 0104-MIPS-ralink-add-illegal-access-driver.patch │ │ │ ├── 0105-MIPS-ralink-workaround-DTB-memory-issue.patch │ │ │ ├── 0106-USB-dwc2.patch │ │ │ ├── 0107-PCI-MIPS-adds-rt2880-pci-support.patch │ │ │ ├── 0108-PCI-MIPS-adds-mt7620a-pcie-driver.patch │ │ │ ├── 0109-NET-multi-phy-support.patch │ │ │ ├── 0110-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 0111-NET-MIPS-add-ralink-SoC-ethernet-driver.patch │ │ │ ├── 0112-USB-phy-add-ralink-SoC-driver.patch │ │ │ ├── 0113-USB-add-OHCI-EHCI-OF-binding.patch │ │ │ ├── 0114-serial-ralink-adds-mt7620-serial.patch │ │ │ ├── 0115-serial-of-allow-au1x00-and-rt288x-to-load-from-OF.patch │ │ │ ├── 0116-i2c-MIPS-adds-ralink-I2C-driver.patch │ │ │ ├── 0117-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch │ │ │ ├── 0118-mtd-fix-cfi-cmdset-0002-erase-status-check.patch │ │ │ ├── 0119-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ ├── 0120-spi-introduce-macros-to-set-bits_per_word_mask.patch │ │ │ ├── 0121-MIPS-ralink-add-rt_sysc_m32-helper.patch │ │ │ ├── 0122-pinmux.patch │ │ │ ├── 0200-owrt-GPIO-add-gpio_export_with_name.patch │ │ │ ├── 0201-owrt-MIPS-ralink-add-pseudo-pwm-led-trigger-based-on.patch │ │ │ ├── 0202-owrt-USB-adds-dwc_otg.patch │ │ │ ├── 0203-owrt-MIPS-add-OWRTDTB-secion.patch │ │ │ ├── 0204-owrt-mtd-split-remove-padding.patch │ │ │ ├── 0205-uvc-add-iPassion-iP2970-support.patch │ │ │ ├── 0206-MTD-add-chunked-read-io-to-m25p80.patch │ │ │ ├── 0250-nand-7620.patch │ │ │ ├── 0300-DMA-add-rt2880-dma-engine.patch │ │ │ ├── 0301-asoc-add-mt7620-support.patch │ │ │ ├── 0500-spi-mt7621.patch │ │ │ ├── 0501-MIPS-increase-GIC_INTR_MAX.patch │ │ │ ├── 0502-MIPS-ralink-add-MT7621-support.patch │ │ │ ├── 0503-MIPS-ralink-add-MT7621-early_printk-support.patch │ │ │ ├── 0504-MIPS-ralink-add-pcie-driver.patch │ │ │ ├── 0505-watchdog-add-MT7621-support.patch │ │ │ ├── 0506-GPIO-ralink-add-mt7621-gpio-controller.patch │ │ │ ├── 0507-MTD-add-mt7621-nand-support.patch │ │ │ ├── 800-eco.patch │ │ │ └── 999-mt7620n.patch │ │ ├── rt288x │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── asus.mk │ │ │ │ ├── belkin.mk │ │ │ │ └── edimax.mk │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ ├── 00-default.mk │ │ │ │ ├── allnet.mk │ │ │ │ ├── alpha.mk │ │ │ │ ├── asiarf.mk │ │ │ │ ├── aztech.mk │ │ │ │ ├── belkin.mk │ │ │ │ ├── broadway.mk │ │ │ │ ├── dlink.mk │ │ │ │ ├── engenius.mk │ │ │ │ ├── fon.mk │ │ │ │ ├── freestation5.mk │ │ │ │ ├── hame.mk │ │ │ │ ├── hg255d.mk │ │ │ │ ├── n13u.mk │ │ │ │ ├── poray.mk │ │ │ │ ├── tenda.mk │ │ │ │ └── upvel.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ ├── 00-default.mk │ │ │ ├── asus.mk │ │ │ ├── d-link.mk │ │ │ ├── omnima.mk │ │ │ └── trendnet.mk │ │ │ └── target.mk │ ├── rb532 │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── diag.sh │ │ │ └── sbin │ │ │ │ ├── cf2nand │ │ │ │ └── wget2nand │ │ ├── config-3.10 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── gen_image.sh │ │ ├── modules.mk │ │ ├── patches-3.10 │ │ │ ├── 001-cmdline_hack.patch │ │ │ └── 002-rb532_nand_fixup.patch │ │ └── src │ │ │ └── patch-cmdline.c │ ├── realtek │ │ ├── Makefile │ │ ├── files │ │ │ ├── arch │ │ │ │ ├── mips │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── mach-realtek │ │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ │ ├── kernel-entry-init.h │ │ │ │ │ │ │ ├── rtl8198c │ │ │ │ │ │ │ │ └── cpu-feature-overrides.h │ │ │ │ │ │ │ └── war.h │ │ │ │ │ │ │ └── mach-rtl8197f │ │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ │ ├── rtl8197f │ │ │ │ │ │ │ └── cpu-feature-overrides.h │ │ │ │ │ │ │ └── war.h │ │ │ │ │ ├── realtek │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Kconfig.legacy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ │ ├── flushall.c │ │ │ │ │ │ ├── gcmp.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── irq-gic.c │ │ │ │ │ │ ├── irq-ictl.c │ │ │ │ │ │ ├── mach_rtl8198c.c │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── pci-fixup.c │ │ │ │ │ │ ├── pci-ops.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── rtl8198c.c │ │ │ │ │ │ ├── sata.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── setup.c │ │ │ │ │ │ ├── smp-amon.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ └── xhci-usb.c │ │ │ │ │ └── rtl8197f │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Kconfig.legacy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ │ ├── bspinit.h │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── irq-gpio.c │ │ │ │ │ │ ├── irq-ictl.c │ │ │ │ │ │ ├── irq.c │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── mach_rtl819x.c │ │ │ │ │ │ ├── modules.builtin │ │ │ │ │ │ ├── mtd.c │ │ │ │ │ │ ├── pci-fixup.c │ │ │ │ │ │ ├── pci-ops.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── setup.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── war.h │ │ │ │ └── rlx │ │ │ │ │ ├── Kbuild │ │ │ │ │ ├── Kbuild.platforms │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.debug │ │ │ │ │ ├── Kconfig.rlx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boot │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── compressed │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── calc_vmlinuz_load_addr.c │ │ │ │ │ │ ├── dbg.c │ │ │ │ │ │ ├── decompress.c │ │ │ │ │ │ ├── dummy.c │ │ │ │ │ │ ├── head.S │ │ │ │ │ │ ├── ld.script │ │ │ │ │ │ ├── uart-16550.c │ │ │ │ │ │ └── uart-alchemy.c │ │ │ │ │ ├── ecoff.h │ │ │ │ │ └── elf2ecoff.c │ │ │ │ │ ├── config.cpu │ │ │ │ │ ├── config.in │ │ │ │ │ ├── configs │ │ │ │ │ └── rlx_defconfig │ │ │ │ │ ├── fw │ │ │ │ │ ├── arc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arc_con.c │ │ │ │ │ │ ├── cmdline.c │ │ │ │ │ │ ├── env.c │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ ├── identify.c │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── promlib.c │ │ │ │ │ │ ├── salone.c │ │ │ │ │ │ ├── time.c │ │ │ │ │ │ └── tree.c │ │ │ │ │ ├── cfe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cfe_api.c │ │ │ │ │ │ └── cfe_api_int.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── call_o32.S │ │ │ │ │ │ └── cmdline.c │ │ │ │ │ └── sni │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── sniprom.c │ │ │ │ │ ├── include │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── abi.h │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── asmmacro-32.h │ │ │ │ │ │ ├── asmmacro-64.h │ │ │ │ │ │ ├── asmmacro.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── bcache.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bmips.h │ │ │ │ │ │ ├── bootinfo.h │ │ │ │ │ │ ├── branch.h │ │ │ │ │ │ ├── break.h │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── bugs.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── cacheops.h │ │ │ │ │ │ ├── cevt-rlx.h │ │ │ │ │ │ ├── checksum.h │ │ │ │ │ │ ├── clkdev.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cmp.h │ │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ │ ├── compat-signal.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── cop2.h │ │ │ │ │ │ ├── cpu-features.h │ │ │ │ │ │ ├── cpu-info.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cputime.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── div64.h │ │ │ │ │ │ ├── dma-coherence.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── ds1287.h │ │ │ │ │ │ ├── dsp.h │ │ │ │ │ │ ├── edac.h │ │ │ │ │ │ ├── elf.h │ │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── exec.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── fixmap.h │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ ├── fpregdef.h │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ ├── fpu_emulator.h │ │ │ │ │ │ ├── ftrace.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── fw │ │ │ │ │ │ │ ├── arc │ │ │ │ │ │ │ │ ├── hinv.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ │ ├── cfe │ │ │ │ │ │ │ │ ├── cfe_api.h │ │ │ │ │ │ │ │ └── cfe_error.h │ │ │ │ │ │ │ └── fw.h │ │ │ │ │ │ ├── gcmpregs.h │ │ │ │ │ │ ├── gic.h │ │ │ │ │ │ ├── gio_device.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gt64120.h │ │ │ │ │ │ ├── hardirq.h │ │ │ │ │ │ ├── hazards.h │ │ │ │ │ │ ├── highmem.h │ │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ide.h │ │ │ │ │ │ ├── idle.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_cpu.h │ │ │ │ │ │ ├── irq_gt641xx.h │ │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ │ ├── irq_vec.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── isadep.h │ │ │ │ │ │ ├── jazz.h │ │ │ │ │ │ ├── jazzdma.h │ │ │ │ │ │ ├── jump_label.h │ │ │ │ │ │ ├── kdebug.h │ │ │ │ │ │ ├── kexec.h │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ │ ├── kprobes.h │ │ │ │ │ │ ├── kspd.h │ │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local64.h │ │ │ │ │ │ ├── m48t37.h │ │ │ │ │ │ ├── mach-generic │ │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ │ ├── dma-coherence.h │ │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── ide.h │ │ │ │ │ │ │ ├── ioremap.h │ │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ │ ├── kernel-entry-init.h │ │ │ │ │ │ │ ├── kmalloc.h │ │ │ │ │ │ │ ├── mangle-port.h │ │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ │ ├── spaces.h │ │ │ │ │ │ │ └── topology.h │ │ │ │ │ │ ├── mc146818-time.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mips-boards │ │ │ │ │ │ │ ├── bonito64.h │ │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ │ ├── launch.h │ │ │ │ │ │ │ ├── malta.h │ │ │ │ │ │ │ ├── maltaint.h │ │ │ │ │ │ │ ├── msc01_pci.h │ │ │ │ │ │ │ ├── piix4.h │ │ │ │ │ │ │ ├── sead3int.h │ │ │ │ │ │ │ └── sim.h │ │ │ │ │ │ ├── mips_machine.h │ │ │ │ │ │ ├── mips_mt.h │ │ │ │ │ │ ├── mipsmtregs.h │ │ │ │ │ │ ├── mipsprom.h │ │ │ │ │ │ ├── mmcr.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ │ ├── mmzone.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── msc01_ic.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── nile4.h │ │ │ │ │ │ ├── paccess.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── parport.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci │ │ │ │ │ │ │ └── bridge.h │ │ │ │ │ │ ├── percpu.h │ │ │ │ │ │ ├── perf_event.h │ │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ │ ├── pgtable-32.h │ │ │ │ │ │ ├── pgtable-64.h │ │ │ │ │ │ ├── pgtable-bits.h │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ ├── pmon.h │ │ │ │ │ │ ├── prefetch.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── radiax.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── regdef.h │ │ │ │ │ │ ├── rlx-timer.h │ │ │ │ │ │ ├── rlxregs.h │ │ │ │ │ │ ├── rm9k-ocd.h │ │ │ │ │ │ ├── rtlx.h │ │ │ │ │ │ ├── scatterlist.h │ │ │ │ │ │ ├── seccomp.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── segment.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sgi │ │ │ │ │ │ │ ├── gio.h │ │ │ │ │ │ │ ├── hpc3.h │ │ │ │ │ │ │ ├── ioc.h │ │ │ │ │ │ │ ├── ip22.h │ │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ │ ├── pi1.h │ │ │ │ │ │ │ ├── seeq.h │ │ │ │ │ │ │ ├── sgi.h │ │ │ │ │ │ │ └── wd.h │ │ │ │ │ │ ├── sgialib.h │ │ │ │ │ │ ├── sgiarcs.h │ │ │ │ │ │ ├── shmparam.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── sim.h │ │ │ │ │ │ ├── smp-boot.h │ │ │ │ │ │ ├── smp-ops.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── smtc.h │ │ │ │ │ │ ├── smtc_ipi.h │ │ │ │ │ │ ├── smtc_proc.h │ │ │ │ │ │ ├── sni.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ │ ├── spram.h │ │ │ │ │ │ ├── stackframe.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── suspend.h │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── thread_info.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── tlb.h │ │ │ │ │ │ ├── tlbdebug.h │ │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ │ ├── tlbmisc.h │ │ │ │ │ │ ├── topology.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── txx9irq.h │ │ │ │ │ │ ├── txx9pio.h │ │ │ │ │ │ ├── txx9tmr.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uasm.h │ │ │ │ │ │ ├── ucontext.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── unistd.h │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ ├── vdso.h │ │ │ │ │ │ ├── vga.h │ │ │ │ │ │ ├── vpe.h │ │ │ │ │ │ ├── war.h │ │ │ │ │ │ ├── watch.h │ │ │ │ │ │ ├── wbflush.h │ │ │ │ │ │ └── xor.h │ │ │ │ │ └── uapi │ │ │ │ │ │ └── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── auxvec.h │ │ │ │ │ │ ├── bitsperlong.h │ │ │ │ │ │ ├── break.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cachectl.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── ipcbuf.h │ │ │ │ │ │ ├── kvm.h │ │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msgbuf.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sembuf.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sgidefs.h │ │ │ │ │ │ ├── shmbuf.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── sockios.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── swab.h │ │ │ │ │ │ ├── sysmips.h │ │ │ │ │ │ ├── termbits.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── unistd.h │ │ │ │ │ ├── kernel │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── branch.c │ │ │ │ │ ├── cevt-ext.c │ │ │ │ │ ├── cevt-gic.c │ │ │ │ │ ├── cevt-rlx.c │ │ │ │ │ ├── cevt-smtc.c │ │ │ │ │ ├── cpu-probe.c │ │ │ │ │ ├── crash.c │ │ │ │ │ ├── crash_dump.c │ │ │ │ │ ├── csrc-gic.c │ │ │ │ │ ├── csrc-rlx.c │ │ │ │ │ ├── early_printk.c │ │ │ │ │ ├── entry.S │ │ │ │ │ ├── ftrace.c │ │ │ │ │ ├── genex.S │ │ │ │ │ ├── head.S │ │ │ │ │ ├── idle.c │ │ │ │ │ ├── irq-cpu.c │ │ │ │ │ ├── irq-gic.c │ │ │ │ │ ├── irq-vec.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── jump_label.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── kprobes.c │ │ │ │ │ ├── machine_kexec.c │ │ │ │ │ ├── mcount.S │ │ │ │ │ ├── mips_ksyms.c │ │ │ │ │ ├── mips_machine.c │ │ │ │ │ ├── module-rela.c │ │ │ │ │ ├── module.c │ │ │ │ │ ├── perf_event.c │ │ │ │ │ ├── perf_event_mipsxx.c │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── process.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── ptrace.c │ │ │ │ │ ├── relocate_kernel.S │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── rlx-fpu.S │ │ │ │ │ ├── rlx-switch.S │ │ │ │ │ ├── scall32-o32.S │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── signal-common.h │ │ │ │ │ ├── signal.c │ │ │ │ │ ├── smp-amon.c │ │ │ │ │ ├── smp-cmp.c │ │ │ │ │ ├── smp-up.c │ │ │ │ │ ├── smp.c │ │ │ │ │ ├── spinlock_test.c │ │ │ │ │ ├── spram.c │ │ │ │ │ ├── stacktrace.c │ │ │ │ │ ├── sync-rlx.c │ │ │ │ │ ├── syscall.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── topology.c │ │ │ │ │ ├── traps.c │ │ │ │ │ ├── unaligned.c │ │ │ │ │ ├── vdso.c │ │ │ │ │ ├── vmlinux.lds.S │ │ │ │ │ └── watch.c │ │ │ │ │ ├── kvm │ │ │ │ │ ├── 00README.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kvm_cb.c │ │ │ │ │ ├── kvm_locore.S │ │ │ │ │ ├── kvm_mips.c │ │ │ │ │ ├── kvm_mips_comm.h │ │ │ │ │ ├── kvm_mips_commpage.c │ │ │ │ │ ├── kvm_mips_dyntrans.c │ │ │ │ │ ├── kvm_mips_emul.c │ │ │ │ │ ├── kvm_mips_int.c │ │ │ │ │ ├── kvm_mips_int.h │ │ │ │ │ ├── kvm_mips_opcode.h │ │ │ │ │ ├── kvm_mips_stats.c │ │ │ │ │ ├── kvm_tlb.c │ │ │ │ │ ├── kvm_trap_emul.c │ │ │ │ │ └── trace.h │ │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ashldi3.c │ │ │ │ │ ├── ashrdi3.c │ │ │ │ │ ├── bitops.c │ │ │ │ │ ├── cmpdi2.c │ │ │ │ │ ├── csum_partial.S │ │ │ │ │ ├── delay.c │ │ │ │ │ ├── dump_tlb.c │ │ │ │ │ ├── iomap-pci.c │ │ │ │ │ ├── iomap.c │ │ │ │ │ ├── libgcc.h │ │ │ │ │ ├── lshrdi3.c │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── mips-atomic.c │ │ │ │ │ ├── rlx_dump_tlb.c │ │ │ │ │ ├── strlen_user.S │ │ │ │ │ ├── strncpy_user.S │ │ │ │ │ ├── strnlen_user.S │ │ │ │ │ ├── ucmpdi2.c │ │ │ │ │ └── uncached.c │ │ │ │ │ ├── mm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c-rlx.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cex-gen.S │ │ │ │ │ ├── dma-default.c │ │ │ │ │ ├── extable.c │ │ │ │ │ ├── fault.c │ │ │ │ │ ├── gup.c │ │ │ │ │ ├── highmem.c │ │ │ │ │ ├── hugetlbpage.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── ioremap.c │ │ │ │ │ ├── mmap.c │ │ │ │ │ ├── page-funcs.S │ │ │ │ │ ├── page.c │ │ │ │ │ ├── pgtable-32.c │ │ │ │ │ ├── sc-mips.c │ │ │ │ │ ├── tlb-rlx.c │ │ │ │ │ ├── tlbex-fault.S │ │ │ │ │ ├── tlbex.c │ │ │ │ │ ├── uasm-micromips.c │ │ │ │ │ ├── uasm-mips.c │ │ │ │ │ └── uasm.c │ │ │ │ │ ├── oprofile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── backtrace.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── op_impl.h │ │ │ │ │ ├── op_model_loongson2.c │ │ │ │ │ └── op_model_mipsxx.c │ │ │ │ │ ├── pci │ │ │ │ │ ├── Makefile │ │ │ │ │ └── pci.c │ │ │ │ │ ├── power │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ └── hibernate.S │ │ │ │ │ ├── soc-rtl8196e │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_rtl8196e_v110_11n.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ │ │ ├── soc-rtl819xd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in.819xd │ │ │ │ │ ├── config.in.819xdt │ │ │ │ │ ├── config.in.89xxd │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── imem-dmem.S │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_rtl819xd.c │ │ │ │ │ ├── mach_rtl8972d_v100_ata.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ │ │ └── soc-rtl8881a │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in │ │ │ │ │ ├── config.in.819xd │ │ │ │ │ ├── config.in.819xdt │ │ │ │ │ ├── config.in.8881a │ │ │ │ │ ├── config.in.89xxd │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── imem-dmem.S │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_8881a.c │ │ │ │ │ ├── mach_rtl8972d_v100_ata.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ ├── drivers │ │ │ │ ├── bluetooth │ │ │ │ │ ├── hci_rtk_h5.c │ │ │ │ │ ├── rtk_bt.c │ │ │ │ │ ├── rtk_bt.h │ │ │ │ │ ├── rtk_coex.c │ │ │ │ │ └── rtk_coex.h │ │ │ │ ├── crypto │ │ │ │ │ └── realtek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── crypto_engine │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── hmac.c │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── md5.c │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── rtl_ipsec.c │ │ │ │ │ │ ├── rtl_ipsec.h │ │ │ │ │ │ ├── rtl_ipsec_test.c │ │ │ │ │ │ ├── sha1.c │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ └── sw_sim │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── aesSim.c │ │ │ │ │ │ │ ├── aesSim.h │ │ │ │ │ │ │ ├── aes_1.h │ │ │ │ │ │ │ ├── aes_block.c │ │ │ │ │ │ │ ├── aes_core.c │ │ │ │ │ │ │ ├── aes_locl.h │ │ │ │ │ │ │ ├── authSim.c │ │ │ │ │ │ │ ├── authSim.h │ │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ │ ├── desSim.c │ │ │ │ │ │ │ ├── desSim.h │ │ │ │ │ │ │ ├── des_ecb.c │ │ │ │ │ │ │ ├── des_locl.h │ │ │ │ │ │ │ ├── des_setkey.c │ │ │ │ │ │ │ ├── podd.h │ │ │ │ │ │ │ ├── sk.h │ │ │ │ │ │ │ └── spr.h │ │ │ │ │ │ ├── rtl_crypto.c │ │ │ │ │ │ ├── rtl_crypto_helper.c │ │ │ │ │ │ └── rtl_crypto_helper.h │ │ │ │ ├── mtd │ │ │ │ │ ├── chips │ │ │ │ │ │ └── rtl819x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── spi_cmd.c │ │ │ │ │ │ │ ├── spi_common.c │ │ │ │ │ │ │ ├── spi_common.h │ │ │ │ │ │ │ ├── spi_flash.c │ │ │ │ │ │ │ ├── spi_flash.h │ │ │ │ │ │ │ └── spi_probe.c │ │ │ │ │ ├── maps │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ └── rtl819x_flash.c │ │ │ │ │ └── nand │ │ │ │ │ │ ├── nand_base_sd.c │ │ │ │ │ │ ├── rtk_nand.h │ │ │ │ │ │ ├── rtk_nand_sd.c │ │ │ │ │ │ ├── rtkn_nand │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── nand_parallel.c │ │ │ │ │ │ ├── nand_parallel_ctrl.c │ │ │ │ │ │ ├── nand_spi.c │ │ │ │ │ │ ├── nand_spi_bbt.c │ │ │ │ │ │ ├── nand_spi_ctrl.c │ │ │ │ │ │ ├── nand_spi_ecc_ctrl.c │ │ │ │ │ │ ├── ops_rtknand.c │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ ├── rtkn_chip_param.h │ │ │ │ │ │ ├── rtkn_parallel.h │ │ │ │ │ │ ├── rtkn_parallel_regs.h │ │ │ │ │ │ ├── rtknflash.h │ │ │ │ │ │ ├── rtknflash_api.c │ │ │ │ │ │ ├── rtknflash_bbt.c │ │ │ │ │ │ ├── rtknflash_bbtOps.c │ │ │ │ │ │ ├── rtknflash_openwrt.c │ │ │ │ │ │ ├── rtknflash_partition.c │ │ │ │ │ │ └── rtknflash_wrapper.h │ │ │ │ │ │ └── rtknflash │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── ops_rtknand.c │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ ├── rtknflash.h │ │ │ │ │ │ ├── rtknflash_api.c │ │ │ │ │ │ ├── rtknflash_bbt.c │ │ │ │ │ │ └── rtknflash_bbtOps.c │ │ │ │ ├── net │ │ │ │ │ ├── rtl819x │ │ │ │ │ │ ├── AsicDriver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.build │ │ │ │ │ │ │ ├── asicRegs.h │ │ │ │ │ │ │ ├── asicTabs.h │ │ │ │ │ │ │ ├── rtl865xC_hs.c │ │ │ │ │ │ │ ├── rtl865xC_hs.h │ │ │ │ │ │ │ ├── rtl865x_asicBasic.c │ │ │ │ │ │ │ ├── rtl865x_asicBasic.h │ │ │ │ │ │ │ ├── rtl865x_asicCom.c │ │ │ │ │ │ │ ├── rtl865x_asicCom.h │ │ │ │ │ │ │ ├── rtl865x_asicL2.c │ │ │ │ │ │ │ ├── rtl865x_asicL2.h │ │ │ │ │ │ │ ├── rtl865x_asicL3.c │ │ │ │ │ │ │ ├── rtl865x_asicL3.h │ │ │ │ │ │ │ ├── rtl865x_asicL4.c │ │ │ │ │ │ │ ├── rtl865x_asicL4.h │ │ │ │ │ │ │ ├── rtl865x_hwPatch.h │ │ │ │ │ │ │ └── rtl865xc_asicregs.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.Release │ │ │ │ │ │ ├── RTL8370_RTL8367_API │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── gpio_8198.h │ │ │ │ │ │ │ ├── rtk_api.c │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_acl.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_acl.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_cputag.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_cputag.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_dot1x.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eee.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eee.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eeelldp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eeelldp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_fc.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_fc.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_green.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_green.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_igmp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_igmp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_inbwctrl.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_inbwctrl.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_interrupt.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_interrupt.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_led.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_led.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_lut.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_meter.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_meter.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mib.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mirror.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mirror.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_misc.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_misc.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_oam.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_oam.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_phy.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_phy.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_port.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_portIsolation.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_portIsolation.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_qos.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rldp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rldp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rma.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rrcp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rrcp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_scheduling.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_scheduling.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_specialCongest.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_specialCongest.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_storm.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_storm.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_svlan.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_trunking.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_trunking.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_unknownMulticast.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_unknownMulticast.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_vlan.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_vlan.h │ │ │ │ │ │ │ ├── rtl8370_base.h │ │ │ │ │ │ │ ├── rtl8370_reg.h │ │ │ │ │ │ │ ├── smi.c │ │ │ │ │ │ │ └── smi.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mbuf.h │ │ │ │ │ │ │ ├── rtl8651_tblDrvProto.h │ │ │ │ │ │ │ ├── rtl865x_eventMgr.c │ │ │ │ │ │ │ ├── rtl865x_eventMgr.h │ │ │ │ │ │ │ ├── rtl865x_netif.c │ │ │ │ │ │ │ ├── rtl865x_netif_local.h │ │ │ │ │ │ │ ├── rtl865x_vlan.c │ │ │ │ │ │ │ ├── rtl865x_vlan.h │ │ │ │ │ │ │ ├── rtl_errno.h │ │ │ │ │ │ │ ├── rtl_utils.c │ │ │ │ │ │ │ ├── rtl_utils.h │ │ │ │ │ │ │ ├── smi.c │ │ │ │ │ │ │ └── smi.h │ │ │ │ │ │ ├── igmpsnooping │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── igmp_delete.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping_glue.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping_local.h │ │ │ │ │ │ │ └── rtl865x_igmpsnooping_new.c │ │ │ │ │ │ ├── l2Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl865x_fdb.c │ │ │ │ │ │ │ ├── rtl865x_fdb.h │ │ │ │ │ │ │ ├── rtl865x_hw_qos_config.c │ │ │ │ │ │ │ ├── rtl865x_outputQueue.c │ │ │ │ │ │ │ └── rtl865x_stp.c │ │ │ │ │ │ ├── l3Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl8198c_arpIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_arpIpv6.h │ │ │ │ │ │ │ ├── rtl8198c_nexthopIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_nexthopIpv6.h │ │ │ │ │ │ │ ├── rtl8198c_routeIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_routeIpv6.h │ │ │ │ │ │ │ ├── rtl865x_6rd.c │ │ │ │ │ │ │ ├── rtl865x_6rd.h │ │ │ │ │ │ │ ├── rtl865x_arp.c │ │ │ │ │ │ │ ├── rtl865x_arp.h │ │ │ │ │ │ │ ├── rtl865x_dslite.c │ │ │ │ │ │ │ ├── rtl865x_dslite.h │ │ │ │ │ │ │ ├── rtl865x_ip.c │ │ │ │ │ │ │ ├── rtl865x_ip.h │ │ │ │ │ │ │ ├── rtl865x_localPublic.c │ │ │ │ │ │ │ ├── rtl865x_multicast.c │ │ │ │ │ │ │ ├── rtl865x_multipleWan.c │ │ │ │ │ │ │ ├── rtl865x_multipleWan.h │ │ │ │ │ │ │ ├── rtl865x_nexthop.c │ │ │ │ │ │ │ ├── rtl865x_nexthop.h │ │ │ │ │ │ │ ├── rtl865x_ppp.c │ │ │ │ │ │ │ ├── rtl865x_ppp_local.h │ │ │ │ │ │ │ ├── rtl865x_route.c │ │ │ │ │ │ │ └── rtl865x_route.h │ │ │ │ │ │ ├── l4Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl865x_nat.c │ │ │ │ │ │ │ └── rtl865x_nat_local.h │ │ │ │ │ │ ├── m1074kctrl.c │ │ │ │ │ │ ├── m24kctrl.c │ │ │ │ │ │ ├── m24kctrl.h │ │ │ │ │ │ ├── mmap.c │ │ │ │ │ │ ├── rlx5181_perCounter.S │ │ │ │ │ │ ├── rlx5281_perCounter.S │ │ │ │ │ │ ├── romeperf.c │ │ │ │ │ │ ├── romeperf.h │ │ │ │ │ │ ├── rtl819x_swNic.c │ │ │ │ │ │ ├── rtl819x_swNic.h │ │ │ │ │ │ ├── rtl819x_switch.c │ │ │ │ │ │ ├── rtl819x_switch.h │ │ │ │ │ │ ├── rtl8325d │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ ├── rtl8316d_regField_list.c │ │ │ │ │ │ │ │ ├── rtl8316d_reg_list.c │ │ │ │ │ │ │ │ ├── rtl8316d_tableField_list.c │ │ │ │ │ │ │ │ └── rtl8316d_table_list.c │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── asicdrv │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_general_reg.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_regField_list.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_reg_struct.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_tableField_list.h │ │ │ │ │ │ │ │ │ │ └── rtl8316d_table_struct.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicDrv.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_dot1x.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_inacl.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mir.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_nic.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_port.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_qos.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_reg.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rma.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rtkpp.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_stp.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_svlan.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_tbl.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_trunk.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_vlan.h │ │ │ │ │ │ │ │ │ └── rtl8316d_types.h │ │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ │ └── rtl8316d_debug.h │ │ │ │ │ │ │ ├── rtl8316d_asicDrv.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_inacl.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mir.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_nic.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rtkpp.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_stp.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_tbl.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_trunk.c │ │ │ │ │ │ │ └── rtl8316d_asicdrv_vlan.c │ │ │ │ │ │ ├── rtl8367r │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtk_api.c │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_acl.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_acl.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_cputag.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_cputag.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_dot1x.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eav.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eav.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eee.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eee.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_fc.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_fc.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_green.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_green.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_hsb.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_hsb.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_igmp.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_igmp.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_inbwctrl.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_inbwctrl.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_interrupt.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_interrupt.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_led.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_led.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_lut.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_meter.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_meter.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mib.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mirror.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mirror.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_misc.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_misc.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_phy.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_phy.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_port.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_portIsolation.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_portIsolation.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_qos.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_rma.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_scheduling.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_scheduling.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_storm.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_storm.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_svlan.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_trunking.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_trunking.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_unknownMulticast.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_unknownMulticast.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_vlan.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_vlan.h │ │ │ │ │ │ │ ├── rtl8367b_base.h │ │ │ │ │ │ │ └── rtl8367b_reg.h │ │ │ │ │ │ ├── rtl865x │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── rtl865x_log.h │ │ │ │ │ │ ├── rtl865x_proc_debug.c │ │ │ │ │ │ ├── rtl865x_proc_debug.h │ │ │ │ │ │ ├── rtl865xc_swNic.c │ │ │ │ │ │ ├── rtl865xc_swNic.h │ │ │ │ │ │ ├── rtl_dot1x.c │ │ │ │ │ │ ├── rtl_glue.c │ │ │ │ │ │ ├── rtl_multi_wan.c │ │ │ │ │ │ ├── rtl_nic.c │ │ │ │ │ │ └── version.h │ │ │ │ │ └── wireless │ │ │ │ │ │ └── rtl8192cd │ │ │ │ │ │ ├── 1x_kmsm_aes.c │ │ │ │ │ │ ├── 1x_kmsm_hmac.c │ │ │ │ │ │ ├── 1x_md5c.c │ │ │ │ │ │ ├── 1x_md5c.h │ │ │ │ │ │ ├── 1x_rc4.c │ │ │ │ │ │ ├── 1x_rc4.h │ │ │ │ │ │ ├── 8188e_hw.c │ │ │ │ │ │ ├── 8188e_reg.h │ │ │ │ │ │ ├── 8192c_reg.h │ │ │ │ │ │ ├── 8192cd.h │ │ │ │ │ │ ├── 8192cd_11h.c │ │ │ │ │ │ ├── 8192cd_a4_sta.c │ │ │ │ │ │ ├── 8192cd_aes.c │ │ │ │ │ │ ├── 8192cd_br_ext.c │ │ │ │ │ │ ├── 8192cd_br_ext.h │ │ │ │ │ │ ├── 8192cd_cfg.h │ │ │ │ │ │ ├── 8192cd_cfg80211.c │ │ │ │ │ │ ├── 8192cd_cfg80211.h │ │ │ │ │ │ ├── 8192cd_comapi.c │ │ │ │ │ │ ├── 8192cd_comapi.h │ │ │ │ │ │ ├── 8192cd_debug.h │ │ │ │ │ │ ├── 8192cd_dfs.c │ │ │ │ │ │ ├── 8192cd_dfs_det.c │ │ │ │ │ │ ├── 8192cd_dmem.c │ │ │ │ │ │ ├── 8192cd_dmem.h │ │ │ │ │ │ ├── 8192cd_eeprom.c │ │ │ │ │ │ ├── 8192cd_headers.h │ │ │ │ │ │ ├── 8192cd_host.c │ │ │ │ │ │ ├── 8192cd_hw.c │ │ │ │ │ │ ├── 8192cd_hw.h │ │ │ │ │ │ ├── 8192cd_ioctl.c │ │ │ │ │ │ ├── 8192cd_led.c │ │ │ │ │ │ ├── 8192cd_log.h │ │ │ │ │ │ ├── 8192cd_mib.c │ │ │ │ │ │ ├── 8192cd_mib.h │ │ │ │ │ │ ├── 8192cd_mp.c │ │ │ │ │ │ ├── 8192cd_net80211.c │ │ │ │ │ │ ├── 8192cd_net80211.h │ │ │ │ │ │ ├── 8192cd_osdep.c │ │ │ │ │ │ ├── 8192cd_p2p.c │ │ │ │ │ │ ├── 8192cd_p2p.h │ │ │ │ │ │ ├── 8192cd_phyreg.h │ │ │ │ │ │ ├── 8192cd_proc.c │ │ │ │ │ │ ├── 8192cd_profile.h │ │ │ │ │ │ ├── 8192cd_psk.c │ │ │ │ │ │ ├── 8192cd_psk.h │ │ │ │ │ │ ├── 8192cd_psk_hapd.c │ │ │ │ │ │ ├── 8192cd_rx.c │ │ │ │ │ │ ├── 8192cd_rx.h │ │ │ │ │ │ ├── 8192cd_security.c │ │ │ │ │ │ ├── 8192cd_security.h │ │ │ │ │ │ ├── 8192cd_sme.c │ │ │ │ │ │ ├── 8192cd_sta_control.c │ │ │ │ │ │ ├── 8192cd_tkip.c │ │ │ │ │ │ ├── 8192cd_tx.c │ │ │ │ │ │ ├── 8192cd_tx.h │ │ │ │ │ │ ├── 8192cd_util.c │ │ │ │ │ │ ├── 8192cd_util.h │ │ │ │ │ │ ├── 8192d_hw.c │ │ │ │ │ │ ├── 8192d_reg.h │ │ │ │ │ │ ├── 8192e_reg.h │ │ │ │ │ │ ├── 8723b_reg.h │ │ │ │ │ │ ├── 8812_hw.c │ │ │ │ │ │ ├── 8812_reg.h │ │ │ │ │ │ ├── 8812_vht_gen.c │ │ │ │ │ │ ├── 8812_vht_gen.h │ │ │ │ │ │ ├── Beamforming.c │ │ │ │ │ │ ├── Beamforming.h │ │ │ │ │ │ ├── Config.in │ │ │ │ │ │ ├── EdcaTurboCheck.c │ │ │ │ │ │ ├── EdcaTurboCheck.h │ │ │ │ │ │ ├── Hal8188EPwrSeq.c │ │ │ │ │ │ ├── Hal8188EPwrSeq.h │ │ │ │ │ │ ├── Hal8192CDMOutSrc.c │ │ │ │ │ │ ├── Hal8723BPwrSeq.c │ │ │ │ │ │ ├── Hal8723BPwrSeq.h │ │ │ │ │ │ ├── Hal8812PwrSeq.c │ │ │ │ │ │ ├── Hal8812PwrSeq.h │ │ │ │ │ │ ├── Hal8821APwrSeq.c │ │ │ │ │ │ ├── Hal8821APwrSeq.h │ │ │ │ │ │ ├── HalDMOutSrc.c │ │ │ │ │ │ ├── HalPwrSeqCmd.c │ │ │ │ │ │ ├── HalPwrSeqCmd.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.build │ │ │ │ │ │ ├── Makefile.ecos │ │ │ │ │ │ ├── Makefile_nrs │ │ │ │ │ │ ├── RateAdaptive.c │ │ │ │ │ │ ├── WlanHAL │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── HalCfg.h_8192EE │ │ │ │ │ │ │ └── HalCfg.h_8881A │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── 8192E │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192ES.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type1.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type2.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type3.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192Emp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192E.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192Eb.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192Eb.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192E_new.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192Emp_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E.txt │ │ │ │ │ │ │ │ ├── RadioA_8192ES.txt │ │ │ │ │ │ │ │ ├── RadioA_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192Eb.txt │ │ │ │ │ │ │ │ ├── RadioA_8192Emp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192EmpA.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E.txt │ │ │ │ │ │ │ │ ├── RadioB_8192ES.txt │ │ │ │ │ │ │ │ ├── RadioB_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8192Eb.txt │ │ │ │ │ │ │ │ ├── RadioB_8192Emp.txt │ │ │ │ │ │ │ │ ├── RadioB_8192EmpA.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_92EE_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_92EE_new.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP.txt │ │ │ │ │ │ │ │ ├── rtl8192ESfwMP.bin │ │ │ │ │ │ │ │ ├── rtl8192Efw.bin │ │ │ │ │ │ │ │ └── rtl8192EfwMP.bin │ │ │ │ │ │ │ ├── 8197F │ │ │ │ │ │ │ │ ├── AGC_TAB_8197F.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197F_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197Fmp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197Fmp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8197F.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197F.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197F_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197Fmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8197F.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type1.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type5.txt │ │ │ │ │ │ │ │ ├── RadioA_8197F.txt │ │ │ │ │ │ │ │ ├── RadioB_8197F.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type1.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type5.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8197Fmp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ └── rtl8197Ffw.bin │ │ │ │ │ │ │ ├── 8814A │ │ │ │ │ │ │ │ ├── AGC_TAB_8814A.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814A_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814Amp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8814A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814A_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type5.txt │ │ │ │ │ │ │ │ ├── RadioA_8814A.txt │ │ │ │ │ │ │ │ ├── RadioA_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioA_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814A.txt │ │ │ │ │ │ │ │ ├── RadioB_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814A.txt │ │ │ │ │ │ │ │ ├── RadioC_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814A.txt │ │ │ │ │ │ │ │ ├── RadioD_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814A.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_TXBF.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type5.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8814A.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8814Amp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ ├── rtl8814Afw.bin │ │ │ │ │ │ │ │ └── rtl8814AfwMP.bin │ │ │ │ │ │ │ ├── 8822B │ │ │ │ │ │ │ │ ├── AGC_TAB_8822B.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822B_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822Bmp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8822B.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822B_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type1.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type5.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type6.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type7.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8822B.txt │ │ │ │ │ │ │ │ ├── RadioA_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver1_Type1.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type1.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type6.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type7.txt │ │ │ │ │ │ │ │ ├── RadioB_8822B.txt │ │ │ │ │ │ │ │ ├── RadioB_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver1_Type1.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type1.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type6.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type7.txt │ │ │ │ │ │ │ │ ├── RadioC_8822B.txt │ │ │ │ │ │ │ │ ├── RadioC_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioC_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822B.txt │ │ │ │ │ │ │ │ ├── RadioD_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822B.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type1.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type5.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type6.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type7.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8822B.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8822Bmp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ ├── rtl8822Bfw.bin │ │ │ │ │ │ │ │ └── rtl8822BfwMP.bin │ │ │ │ │ │ │ └── 8881A │ │ │ │ │ │ │ │ ├── V700 │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ │ │ ├── V702B │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ │ │ ├── V702B_MP │ │ │ │ │ │ │ │ ├── AGC_TAB_8881ABP.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP_2layer.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AN.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881Am.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881Am.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881AMP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881Am.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881ABP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AMP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AN.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A_new.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881Am.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_A_CUT_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_A_CUT_T.BIN │ │ │ │ │ │ │ │ ├── RadioA_8881ABP.txt │ │ │ │ │ │ │ │ ├── RadioA_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP_2layer.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AN.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881Am.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881ABP.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AMP.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AN.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881A_new.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881A.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881ABP.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AMP.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AN.txt │ │ │ │ │ │ │ │ └── TxPowerTrack_AP_8881AN_extpa.txt │ │ │ │ │ │ │ │ └── V702B_Skyworth │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ ├── HalCfg.c │ │ │ │ │ │ ├── HalCfg.h │ │ │ │ │ │ ├── HalCommon.c │ │ │ │ │ │ ├── HalCommon.h │ │ │ │ │ │ ├── HalDbgCmd.c │ │ │ │ │ │ ├── HalDbgCmd.h │ │ │ │ │ │ ├── HalDef.h │ │ │ │ │ │ ├── HalHeader │ │ │ │ │ │ │ ├── HalComBit.h │ │ │ │ │ │ │ ├── HalComPhyBit.h │ │ │ │ │ │ │ ├── HalComPhyReg.h │ │ │ │ │ │ │ ├── HalComRXDesc.h │ │ │ │ │ │ │ ├── HalComReg.h │ │ │ │ │ │ │ ├── HalComTXDesc.h │ │ │ │ │ │ │ └── HalHWCfg.h │ │ │ │ │ │ ├── HalMac88XX │ │ │ │ │ │ │ ├── halmac_2_platform.h │ │ │ │ │ │ │ ├── halmac_2_platform_temp.h │ │ │ │ │ │ │ ├── halmac_88xx │ │ │ │ │ │ │ │ ├── halmac_8197f │ │ │ │ │ │ │ │ │ ├── halmac_8197f_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8197f_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8197f_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8197f.c │ │ │ │ │ │ │ │ │ └── halmac_func_8197f.h │ │ │ │ │ │ │ │ ├── halmac_8821c │ │ │ │ │ │ │ │ │ ├── RTL8821Cfw_NIC.bin │ │ │ │ │ │ │ │ │ ├── halmac_8821c_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8821c_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8821c_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8821c.c │ │ │ │ │ │ │ │ │ └── halmac_func_8821c.h │ │ │ │ │ │ │ │ ├── halmac_8822b │ │ │ │ │ │ │ │ │ ├── RTL8822Bfw_NIC.bin │ │ │ │ │ │ │ │ │ ├── halmac_8822b_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8822b_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8822b_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8822b.c │ │ │ │ │ │ │ │ │ └── halmac_func_8822b.h │ │ │ │ │ │ │ │ ├── halmac_88xx_cfg.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_pcie.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_pcie.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_sdio.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_sdio.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_usb.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_usb.h │ │ │ │ │ │ │ │ ├── halmac_func_88xx.c │ │ │ │ │ │ │ │ └── halmac_func_88xx.h │ │ │ │ │ │ │ ├── halmac_api.c │ │ │ │ │ │ │ ├── halmac_api.h │ │ │ │ │ │ │ ├── halmac_bit2.h │ │ │ │ │ │ │ ├── halmac_bit_8821c.h │ │ │ │ │ │ │ ├── halmac_bit_8822b.h │ │ │ │ │ │ │ ├── halmac_fw_info.h │ │ │ │ │ │ │ ├── halmac_fw_offload_c2h_ap.h │ │ │ │ │ │ │ ├── halmac_fw_offload_c2h_nic.h │ │ │ │ │ │ │ ├── halmac_fw_offload_h2c_ap.h │ │ │ │ │ │ │ ├── halmac_fw_offload_h2c_nic.h │ │ │ │ │ │ │ ├── halmac_h2c_extra_info_ap.h │ │ │ │ │ │ │ ├── halmac_h2c_extra_info_nic.h │ │ │ │ │ │ │ ├── halmac_hw_cfg.h │ │ │ │ │ │ │ ├── halmac_hw_cfg_temp.h │ │ │ │ │ │ │ ├── halmac_original_c2h_ap.h │ │ │ │ │ │ │ ├── halmac_original_c2h_nic.h │ │ │ │ │ │ │ ├── halmac_original_h2c_ap.h │ │ │ │ │ │ │ ├── halmac_original_h2c_nic.h │ │ │ │ │ │ │ ├── halmac_pcie_reg.h │ │ │ │ │ │ │ ├── halmac_pwr_seq_cmd.h │ │ │ │ │ │ │ ├── halmac_reg2.h │ │ │ │ │ │ │ ├── halmac_reg_8821c.h │ │ │ │ │ │ │ ├── halmac_reg_8822b.h │ │ │ │ │ │ │ ├── halmac_rx_bd_ap.h │ │ │ │ │ │ │ ├── halmac_rx_bd_chip.h │ │ │ │ │ │ │ ├── halmac_rx_bd_nic.h │ │ │ │ │ │ │ ├── halmac_rx_desc_ap.h │ │ │ │ │ │ │ ├── halmac_rx_desc_chip.h │ │ │ │ │ │ │ ├── halmac_rx_desc_nic.h │ │ │ │ │ │ │ ├── halmac_sdio_reg.h │ │ │ │ │ │ │ ├── halmac_tx_bd_ap.h │ │ │ │ │ │ │ ├── halmac_tx_bd_chip.h │ │ │ │ │ │ │ ├── halmac_tx_bd_nic.h │ │ │ │ │ │ │ ├── halmac_tx_desc_ap.h │ │ │ │ │ │ │ ├── halmac_tx_desc_chip.h │ │ │ │ │ │ │ ├── halmac_tx_desc_nic.h │ │ │ │ │ │ │ ├── halmac_type.h │ │ │ │ │ │ │ ├── halmac_usb_reg.h │ │ │ │ │ │ │ ├── halmisc_bb_rf_bit.h │ │ │ │ │ │ │ └── halmisc_bb_rf_reg.h │ │ │ │ │ │ ├── HalMacAPI.c │ │ │ │ │ │ ├── HalMacAPI.h │ │ │ │ │ │ ├── HalMacFunc.c │ │ │ │ │ │ ├── HalMacFunc.h │ │ │ │ │ │ ├── HalPrecomp.h │ │ │ │ │ │ ├── HalPrecompInc.h │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── GeneralDef.h │ │ │ │ │ │ │ ├── PlatformDef.h │ │ │ │ │ │ │ └── StatusCode.h │ │ │ │ │ │ ├── Output │ │ │ │ │ │ │ └── HalLib.h │ │ │ │ │ │ └── RTL88XX │ │ │ │ │ │ │ ├── Hal88XXCfg.h │ │ │ │ │ │ │ ├── Hal88XXDM.c │ │ │ │ │ │ │ ├── Hal88XXDM.h │ │ │ │ │ │ │ ├── Hal88XXDebug.h │ │ │ │ │ │ │ ├── Hal88XXDef.h │ │ │ │ │ │ │ ├── Hal88XXDesc.h │ │ │ │ │ │ │ ├── Hal88XXFirmware.c │ │ │ │ │ │ │ ├── Hal88XXFirmware.h │ │ │ │ │ │ │ ├── Hal88XXGen.c │ │ │ │ │ │ │ ├── Hal88XXHWImg.c │ │ │ │ │ │ │ ├── Hal88XXHWImg.h │ │ │ │ │ │ │ ├── Hal88XXIsr.c │ │ │ │ │ │ │ ├── Hal88XXIsr.h │ │ │ │ │ │ │ ├── Hal88XXPhyCfg.c │ │ │ │ │ │ │ ├── Hal88XXPhyCfg.h │ │ │ │ │ │ │ ├── Hal88XXPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal88XXPwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal88XXReg.h │ │ │ │ │ │ │ ├── Hal88XXRxDesc.c │ │ │ │ │ │ │ ├── Hal88XXRxDesc.h │ │ │ │ │ │ │ ├── Hal88XXTxDesc.c │ │ │ │ │ │ │ ├── Hal88XXTxDesc.h │ │ │ │ │ │ │ ├── Hal88XXVerify.c │ │ │ │ │ │ │ ├── Hal88XXVerify.h │ │ │ │ │ │ │ ├── RTL8192E │ │ │ │ │ │ │ ├── Hal8192EDef.h │ │ │ │ │ │ │ ├── Hal8192EGen.c │ │ │ │ │ │ │ ├── Hal8192EPhyCfg.c │ │ │ │ │ │ │ ├── Hal8192EPhyCfg.h │ │ │ │ │ │ │ ├── Hal8192EPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8192EPwrSeqCmd.h │ │ │ │ │ │ │ ├── RTL8192EE │ │ │ │ │ │ │ │ ├── Hal8192EEDef.h │ │ │ │ │ │ │ │ └── Hal8192EEGen.c │ │ │ │ │ │ │ └── RTL8192ES │ │ │ │ │ │ │ │ ├── Hal8192ESDef.h │ │ │ │ │ │ │ │ └── Hal8192ESGen.c │ │ │ │ │ │ │ ├── RTL8197F │ │ │ │ │ │ │ ├── Hal8197FCfg.h │ │ │ │ │ │ │ ├── Hal8197FDef.h │ │ │ │ │ │ │ ├── Hal8197FFirmware.c │ │ │ │ │ │ │ ├── Hal8197FFirmware.h │ │ │ │ │ │ │ ├── Hal8197FGen.c │ │ │ │ │ │ │ ├── Hal8197FHWImg.c │ │ │ │ │ │ │ ├── Hal8197FHWImg.h │ │ │ │ │ │ │ ├── Hal8197FIsr.c │ │ │ │ │ │ │ ├── Hal8197FPhyCfg.c │ │ │ │ │ │ │ ├── Hal8197FPhyCfg.h │ │ │ │ │ │ │ ├── Hal8197FPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8197FPwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal8197FReg.h │ │ │ │ │ │ │ ├── Hal8197FRxDesc.c │ │ │ │ │ │ │ ├── Hal8197FRxDesc.h │ │ │ │ │ │ │ ├── Hal8197FTxDesc.c │ │ │ │ │ │ │ ├── Hal8197FTxDesc.h │ │ │ │ │ │ │ ├── Hal8197FVerify.c │ │ │ │ │ │ │ ├── Hal8197FVerify.h │ │ │ │ │ │ │ └── RTL8197FE │ │ │ │ │ │ │ │ ├── Hal8197FEDef.h │ │ │ │ │ │ │ │ └── Hal8197FEGen.c │ │ │ │ │ │ │ ├── RTL8814A │ │ │ │ │ │ │ ├── Hal8814ADef.h │ │ │ │ │ │ │ ├── Hal8814AFirmware.c │ │ │ │ │ │ │ ├── Hal8814AFirmware.h │ │ │ │ │ │ │ ├── Hal8814AGen.c │ │ │ │ │ │ │ ├── Hal8814APhyCfg.c │ │ │ │ │ │ │ ├── Hal8814APhyCfg.h │ │ │ │ │ │ │ ├── Hal8814APwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8814APwrSeqCmd.h │ │ │ │ │ │ │ └── RTL8814AE │ │ │ │ │ │ │ │ ├── Hal8814AEDef.h │ │ │ │ │ │ │ │ └── Hal8814AEGen.c │ │ │ │ │ │ │ ├── RTL8822B │ │ │ │ │ │ │ ├── Hal8822BDef.h │ │ │ │ │ │ │ ├── Hal8822BFirmware.c │ │ │ │ │ │ │ ├── Hal8822BFirmware.h │ │ │ │ │ │ │ ├── Hal8822BGen.c │ │ │ │ │ │ │ ├── Hal8822BPhyCfg.c │ │ │ │ │ │ │ ├── Hal8822BPhyCfg.h │ │ │ │ │ │ │ ├── Hal8822BPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8822BPwrSeqCmd.h │ │ │ │ │ │ │ └── RTL8822BE │ │ │ │ │ │ │ │ ├── Hal8822BEDef.h │ │ │ │ │ │ │ │ └── Hal8822BEGen.c │ │ │ │ │ │ │ └── RTL8881A │ │ │ │ │ │ │ ├── Hal8881ACfg.h │ │ │ │ │ │ │ ├── Hal8881ADef.h │ │ │ │ │ │ │ ├── Hal8881AFirmware.c │ │ │ │ │ │ │ ├── Hal8881AFirmware.h │ │ │ │ │ │ │ ├── Hal8881AGen.c │ │ │ │ │ │ │ ├── Hal8881AHWImg.c │ │ │ │ │ │ │ ├── Hal8881AHWImg.h │ │ │ │ │ │ │ ├── Hal8881AIsr.c │ │ │ │ │ │ │ ├── Hal8881APhyCfg.c │ │ │ │ │ │ │ ├── Hal8881APhyCfg.h │ │ │ │ │ │ │ ├── Hal8881APwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8881APwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal8881AReg.h │ │ │ │ │ │ │ ├── Hal8881ARxDesc.c │ │ │ │ │ │ │ ├── Hal8881ARxDesc.h │ │ │ │ │ │ │ ├── Hal8881ATxDesc.c │ │ │ │ │ │ │ ├── Hal8881ATxDesc.h │ │ │ │ │ │ │ ├── Hal8881AVerify.c │ │ │ │ │ │ │ ├── Hal8881AVerify.h │ │ │ │ │ │ │ └── RTL8881AE │ │ │ │ │ │ │ ├── Hal8881AEDef.h │ │ │ │ │ │ │ └── Hal8881AEGen.c │ │ │ │ │ │ ├── Wlan_QoSType.h │ │ │ │ │ │ ├── Wlan_TypeDef.h │ │ │ │ │ │ ├── bin2c.pl │ │ │ │ │ │ ├── change.txt │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── AGC_TAB.txt │ │ │ │ │ │ ├── AGC_TAB_n_92C.txt │ │ │ │ │ │ ├── AGC_TAB_n_hp.txt │ │ │ │ │ │ ├── MACPHY_REG_92C.txt │ │ │ │ │ │ ├── PHY_REG_1T.txt │ │ │ │ │ │ ├── PHY_REG_1T_n.txt │ │ │ │ │ │ ├── PHY_REG_1T_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_2T.txt │ │ │ │ │ │ ├── PHY_REG_2T_n.txt │ │ │ │ │ │ ├── PHY_REG_2T_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_2T_n_lna.txt │ │ │ │ │ │ ├── PHY_REG_MP_n_92C.txt │ │ │ │ │ │ ├── PHY_REG_PG_92C.txt │ │ │ │ │ │ ├── PHY_REG_PG_hp.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c_1.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c_2.txt │ │ │ │ │ │ ├── radio_a_1T.txt │ │ │ │ │ │ ├── radio_a_1T_n.txt │ │ │ │ │ │ ├── radio_a_2T.txt │ │ │ │ │ │ ├── radio_a_2T_n.txt │ │ │ │ │ │ ├── radio_a_2T_n_hp.txt │ │ │ │ │ │ ├── radio_a_2T_n_lna.txt │ │ │ │ │ │ ├── radio_b_2T.txt │ │ │ │ │ │ ├── radio_b_2T_n.txt │ │ │ │ │ │ ├── radio_b_2T_n_hp.txt │ │ │ │ │ │ ├── radio_b_2T_n_lna.txt │ │ │ │ │ │ ├── rtl8192cfw.bin │ │ │ │ │ │ ├── rtl8192cfwn.bin │ │ │ │ │ │ └── rtl8192cfwua.bin │ │ │ │ │ │ ├── data_8723 │ │ │ │ │ │ ├── PHY_REG_PG_8723.txt │ │ │ │ │ │ ├── TXPWR_LMT_8723.txt │ │ │ │ │ │ ├── TxPowerTrack_AP_8723.txt │ │ │ │ │ │ └── rtl8723bfw.bin │ │ │ │ │ │ ├── data_8812 │ │ │ │ │ │ ├── AGC_TAB_8812.txt │ │ │ │ │ │ ├── AGC_TAB_8812_hp.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_default.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_extlna.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_extpa.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_hp.txt │ │ │ │ │ │ ├── MAC_REG_8812.txt │ │ │ │ │ │ ├── MAC_REG_8812_n.txt │ │ │ │ │ │ ├── PHY_REG_8812.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_default.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_extlna.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_extpa.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_MP_8812.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812_hp.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812_new.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_8812.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_8812_hp.txt │ │ │ │ │ │ ├── RadioA_8812.txt │ │ │ │ │ │ ├── RadioA_8812_hp.txt │ │ │ │ │ │ ├── RadioA_8812_n_default.txt │ │ │ │ │ │ ├── RadioA_8812_n_extlna.txt │ │ │ │ │ │ ├── RadioA_8812_n_extpa.txt │ │ │ │ │ │ ├── RadioA_8812_n_hp.txt │ │ │ │ │ │ ├── RadioA_8812_n_ultra_hp.txt │ │ │ │ │ │ ├── RadioB_8812.txt │ │ │ │ │ │ ├── RadioB_8812_hp.txt │ │ │ │ │ │ ├── RadioB_8812_n_default.txt │ │ │ │ │ │ ├── RadioB_8812_n_extlna.txt │ │ │ │ │ │ ├── RadioB_8812_n_extpa.txt │ │ │ │ │ │ ├── RadioB_8812_n_hp.txt │ │ │ │ │ │ ├── RadioB_8812_n_ultra_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_8812_new.txt │ │ │ │ │ │ ├── rtl8812fw.bin │ │ │ │ │ │ ├── rtl8812fw_n.bin │ │ │ │ │ │ └── rtl8812fw_n_2g.bin │ │ │ │ │ │ ├── data_88e │ │ │ │ │ │ ├── PHY_REG_PG_88E.txt │ │ │ │ │ │ ├── PHY_REG_PG_88E_new.txt │ │ │ │ │ │ └── TXPWR_LMT_88E_new.txt │ │ │ │ │ │ ├── data_92d │ │ │ │ │ │ ├── AGC_TAB_2G_n.txt │ │ │ │ │ │ ├── AGC_TAB_5G_n.txt │ │ │ │ │ │ ├── AGC_TAB_n.txt │ │ │ │ │ │ ├── AGC_TAB_n_92d_hp.txt │ │ │ │ │ │ ├── MACPHY_REG.txt │ │ │ │ │ │ ├── PHY_REG_MP_n.txt │ │ │ │ │ │ ├── PHY_REG_PG.txt │ │ │ │ │ │ ├── PHY_REG_PG_92d_hp.txt │ │ │ │ │ │ ├── PHY_REG_PG_CE.txt │ │ │ │ │ │ ├── PHY_REG_PG_FCC.txt │ │ │ │ │ │ ├── PHY_REG_n.txt │ │ │ │ │ │ ├── PHY_REG_n_92d_hp.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_n_92d.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_n_92d_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d_1.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d_2.txt │ │ │ │ │ │ ├── radio_a_intPA.txt │ │ │ │ │ │ ├── radio_a_intPA_GM.txt │ │ │ │ │ │ ├── radio_a_intPA_GM_new.txt │ │ │ │ │ │ ├── radio_a_intPA_GM_new1.txt │ │ │ │ │ │ ├── radio_a_intPA_new.txt │ │ │ │ │ │ ├── radio_a_n.txt │ │ │ │ │ │ ├── radio_a_n_92d_hp.txt │ │ │ │ │ │ ├── radio_b_intPA.txt │ │ │ │ │ │ ├── radio_b_intPA_GM.txt │ │ │ │ │ │ ├── radio_b_intPA_GM_new.txt │ │ │ │ │ │ ├── radio_b_intPA_GM_new1.txt │ │ │ │ │ │ ├── radio_b_intPA_new.txt │ │ │ │ │ │ ├── radio_b_n.txt │ │ │ │ │ │ ├── radio_b_n_92d_hp.txt │ │ │ │ │ │ └── rtl8192dfw_n.bin │ │ │ │ │ │ ├── dot11k │ │ │ │ │ │ ├── 8192cd_11k.c │ │ │ │ │ │ ├── 8192cd_11k_beacon.c │ │ │ │ │ │ ├── 8192cd_11k_link.c │ │ │ │ │ │ └── 8192cd_11k_neighbor.c │ │ │ │ │ │ ├── efuse_97f │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── efuse.c │ │ │ │ │ │ ├── efuse.h │ │ │ │ │ │ ├── rom_def.h │ │ │ │ │ │ ├── string.c │ │ │ │ │ │ └── sys_reg.h │ │ │ │ │ │ ├── ieee802_mib.h │ │ │ │ │ │ ├── mesh_ext │ │ │ │ │ │ ├── hash_table.c │ │ │ │ │ │ ├── hash_table.h │ │ │ │ │ │ ├── mesh.h │ │ │ │ │ │ ├── mesh_11kv.c │ │ │ │ │ │ ├── mesh_11kv.h │ │ │ │ │ │ ├── mesh_cfg.h │ │ │ │ │ │ ├── mesh_proc.c │ │ │ │ │ │ ├── mesh_route.c │ │ │ │ │ │ ├── mesh_route.h │ │ │ │ │ │ ├── mesh_rx.c │ │ │ │ │ │ ├── mesh_security.c │ │ │ │ │ │ ├── mesh_security.h │ │ │ │ │ │ ├── mesh_sme.c │ │ │ │ │ │ ├── mesh_tx.c │ │ │ │ │ │ ├── mesh_util.c │ │ │ │ │ │ └── mesh_util.h │ │ │ │ │ │ ├── odm_inc.h │ │ │ │ │ │ ├── phydm │ │ │ │ │ │ ├── Phydm_document │ │ │ │ │ │ │ ├── PHYDM_Debug_Cmd.xlsx │ │ │ │ │ │ │ └── PHYDM_Driver_SVN_Path.xlsx │ │ │ │ │ │ ├── halhwimg.h │ │ │ │ │ │ ├── halphyrf_ap.c │ │ │ │ │ │ ├── halphyrf_ap.h │ │ │ │ │ │ ├── halphyrf_ce.c │ │ │ │ │ │ ├── halphyrf_ce.h │ │ │ │ │ │ ├── halphyrf_win.c │ │ │ │ │ │ ├── halphyrf_win.h │ │ │ │ │ │ ├── mp_precomp.h │ │ │ │ │ │ ├── phydm.c │ │ │ │ │ │ ├── phydm.h │ │ │ │ │ │ ├── phydm_acs.c │ │ │ │ │ │ ├── phydm_acs.h │ │ │ │ │ │ ├── phydm_adaptivity.c │ │ │ │ │ │ ├── phydm_adaptivity.h │ │ │ │ │ │ ├── phydm_adc_sampling.c │ │ │ │ │ │ ├── phydm_adc_sampling.h │ │ │ │ │ │ ├── phydm_antdect.c │ │ │ │ │ │ ├── phydm_antdect.h │ │ │ │ │ │ ├── phydm_antdiv.c │ │ │ │ │ │ ├── phydm_antdiv.h │ │ │ │ │ │ ├── phydm_beamforming.c │ │ │ │ │ │ ├── phydm_beamforming.h │ │ │ │ │ │ ├── phydm_ccx.c │ │ │ │ │ │ ├── phydm_ccx.h │ │ │ │ │ │ ├── phydm_cfotracking.c │ │ │ │ │ │ ├── phydm_cfotracking.h │ │ │ │ │ │ ├── phydm_debug.c │ │ │ │ │ │ ├── phydm_debug.h │ │ │ │ │ │ ├── phydm_dfs.c │ │ │ │ │ │ ├── phydm_dfs.h │ │ │ │ │ │ ├── phydm_dig.c │ │ │ │ │ │ ├── phydm_dig.h │ │ │ │ │ │ ├── phydm_dynamicbbpowersaving.c │ │ │ │ │ │ ├── phydm_dynamicbbpowersaving.h │ │ │ │ │ │ ├── phydm_dynamictxpower.c │ │ │ │ │ │ ├── phydm_dynamictxpower.h │ │ │ │ │ │ ├── phydm_edcaturbocheck.c │ │ │ │ │ │ ├── phydm_edcaturbocheck.h │ │ │ │ │ │ ├── phydm_features.h │ │ │ │ │ │ ├── phydm_hwconfig.c │ │ │ │ │ │ ├── phydm_hwconfig.h │ │ │ │ │ │ ├── phydm_interface.c │ │ │ │ │ │ ├── phydm_interface.h │ │ │ │ │ │ ├── phydm_iqk.h │ │ │ │ │ │ ├── phydm_kfree.c │ │ │ │ │ │ ├── phydm_kfree.h │ │ │ │ │ │ ├── phydm_noisemonitor.c │ │ │ │ │ │ ├── phydm_noisemonitor.h │ │ │ │ │ │ ├── phydm_pathdiv.c │ │ │ │ │ │ ├── phydm_pathdiv.h │ │ │ │ │ │ ├── phydm_powertracking_ap.c │ │ │ │ │ │ ├── phydm_powertracking_ap.h │ │ │ │ │ │ ├── phydm_powertracking_ce.c │ │ │ │ │ │ ├── phydm_powertracking_ce.h │ │ │ │ │ │ ├── phydm_powertracking_win.c │ │ │ │ │ │ ├── phydm_powertracking_win.h │ │ │ │ │ │ ├── phydm_pre_define.h │ │ │ │ │ │ ├── phydm_precomp.h │ │ │ │ │ │ ├── phydm_rainfo.c │ │ │ │ │ │ ├── phydm_rainfo.h │ │ │ │ │ │ ├── phydm_reg.h │ │ │ │ │ │ ├── phydm_regdefine11ac.h │ │ │ │ │ │ ├── phydm_regdefine11n.h │ │ │ │ │ │ ├── phydm_types.h │ │ │ │ │ │ ├── rtchnlplan.c │ │ │ │ │ │ ├── rtchnlplan.h │ │ │ │ │ │ ├── rtl8188e │ │ │ │ │ │ │ ├── hal8188erateadaptive.c │ │ │ │ │ │ │ ├── hal8188erateadaptive.h │ │ │ │ │ │ │ ├── hal8188ereg.h │ │ │ │ │ │ │ ├── halhwimg8188e_bb.c │ │ │ │ │ │ │ ├── halhwimg8188e_bb.h │ │ │ │ │ │ │ ├── halhwimg8188e_mac.c │ │ │ │ │ │ │ ├── halhwimg8188e_mac.h │ │ │ │ │ │ │ ├── halhwimg8188e_rf.c │ │ │ │ │ │ │ ├── halhwimg8188e_rf.h │ │ │ │ │ │ │ ├── halhwimg8188e_s_fw.c │ │ │ │ │ │ │ ├── halhwimg8188e_s_fw.h │ │ │ │ │ │ │ ├── halhwimg8188e_t_fw.c │ │ │ │ │ │ │ ├── halhwimg8188e_t_fw.h │ │ │ │ │ │ │ ├── halphyrf_8188e_ap.c │ │ │ │ │ │ │ ├── halphyrf_8188e_ap.h │ │ │ │ │ │ │ ├── halphyrf_8188e_ce.c │ │ │ │ │ │ │ ├── halphyrf_8188e_ce.h │ │ │ │ │ │ │ ├── halphyrf_8188e_win.c │ │ │ │ │ │ │ ├── halphyrf_8188e_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8188e.c │ │ │ │ │ │ │ ├── phydm_regconfig8188e.h │ │ │ │ │ │ │ ├── phydm_rtl8188e.c │ │ │ │ │ │ │ ├── phydm_rtl8188e.h │ │ │ │ │ │ │ └── version_rtl8188e.h │ │ │ │ │ │ ├── rtl8188f │ │ │ │ │ │ │ ├── hal8188freg.h │ │ │ │ │ │ │ ├── halhwimg8188f_bb.c │ │ │ │ │ │ │ ├── halhwimg8188f_bb.h │ │ │ │ │ │ │ ├── halhwimg8188f_fw.c │ │ │ │ │ │ │ ├── halhwimg8188f_fw.h │ │ │ │ │ │ │ ├── halhwimg8188f_mac.c │ │ │ │ │ │ │ ├── halhwimg8188f_mac.h │ │ │ │ │ │ │ ├── halhwimg8188f_rf.c │ │ │ │ │ │ │ ├── halhwimg8188f_rf.h │ │ │ │ │ │ │ ├── halphyrf_8188f.c │ │ │ │ │ │ │ ├── halphyrf_8188f.h │ │ │ │ │ │ │ ├── phydm_regconfig8188f.c │ │ │ │ │ │ │ ├── phydm_regconfig8188f.h │ │ │ │ │ │ │ ├── phydm_rtl8188f.c │ │ │ │ │ │ │ ├── phydm_rtl8188f.h │ │ │ │ │ │ │ └── version_rtl8188f.h │ │ │ │ │ │ ├── rtl8192e │ │ │ │ │ │ │ ├── hal8192ereg.h │ │ │ │ │ │ │ ├── halhwimg8192e_bb.c │ │ │ │ │ │ │ ├── halhwimg8192e_bb.h │ │ │ │ │ │ │ ├── halhwimg8192e_fw.c │ │ │ │ │ │ │ ├── halhwimg8192e_fw.h │ │ │ │ │ │ │ ├── halhwimg8192e_mac.c │ │ │ │ │ │ │ ├── halhwimg8192e_mac.h │ │ │ │ │ │ │ ├── halhwimg8192e_rf.c │ │ │ │ │ │ │ ├── halhwimg8192e_rf.h │ │ │ │ │ │ │ ├── halphyrf_8192e_ap.c │ │ │ │ │ │ │ ├── halphyrf_8192e_ap.h │ │ │ │ │ │ │ ├── halphyrf_8192e_ce.c │ │ │ │ │ │ │ ├── halphyrf_8192e_ce.h │ │ │ │ │ │ │ ├── halphyrf_8192e_win.c │ │ │ │ │ │ │ ├── halphyrf_8192e_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8192e.c │ │ │ │ │ │ │ ├── phydm_regconfig8192e.h │ │ │ │ │ │ │ ├── phydm_rtl8192e.c │ │ │ │ │ │ │ ├── phydm_rtl8192e.h │ │ │ │ │ │ │ └── version_rtl8192e.h │ │ │ │ │ │ ├── rtl8197f │ │ │ │ │ │ │ ├── Hal8197FPhyReg.h │ │ │ │ │ │ │ ├── halhwimg8197f_bb.c │ │ │ │ │ │ │ ├── halhwimg8197f_bb.h │ │ │ │ │ │ │ ├── halhwimg8197f_mac.c │ │ │ │ │ │ │ ├── halhwimg8197f_mac.h │ │ │ │ │ │ │ ├── halhwimg8197f_rf.c │ │ │ │ │ │ │ ├── halhwimg8197f_rf.h │ │ │ │ │ │ │ ├── halphyrf_8197f.c │ │ │ │ │ │ │ ├── halphyrf_8197f.h │ │ │ │ │ │ │ ├── phydm_hal_api8197f.c │ │ │ │ │ │ │ ├── phydm_hal_api8197f.h │ │ │ │ │ │ │ ├── phydm_iqk_8197f.c │ │ │ │ │ │ │ ├── phydm_iqk_8197f.h │ │ │ │ │ │ │ ├── phydm_regconfig8197f.c │ │ │ │ │ │ │ ├── phydm_regconfig8197f.h │ │ │ │ │ │ │ ├── phydm_rtl8197f.c │ │ │ │ │ │ │ ├── phydm_rtl8197f.h │ │ │ │ │ │ │ └── version_rtl8197f.h │ │ │ │ │ │ ├── rtl8703b │ │ │ │ │ │ │ ├── halhwimg8703b_bb.c │ │ │ │ │ │ │ ├── halhwimg8703b_bb.h │ │ │ │ │ │ │ ├── halhwimg8703b_fw.c │ │ │ │ │ │ │ ├── halhwimg8703b_fw.h │ │ │ │ │ │ │ ├── halhwimg8703b_mac.c │ │ │ │ │ │ │ ├── halhwimg8703b_mac.h │ │ │ │ │ │ │ ├── halhwimg8703b_rf.c │ │ │ │ │ │ │ ├── halhwimg8703b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8703b.c │ │ │ │ │ │ │ ├── halphyrf_8703b.h │ │ │ │ │ │ │ ├── phydm_regconfig8703b.c │ │ │ │ │ │ │ ├── phydm_regconfig8703b.h │ │ │ │ │ │ │ └── version_rtl8703b.h │ │ │ │ │ │ ├── rtl8723b │ │ │ │ │ │ │ ├── hal8723breg.h │ │ │ │ │ │ │ ├── halhwimg8723b_bb.c │ │ │ │ │ │ │ ├── halhwimg8723b_bb.h │ │ │ │ │ │ │ ├── halhwimg8723b_fw.c │ │ │ │ │ │ │ ├── halhwimg8723b_fw.h │ │ │ │ │ │ │ ├── halhwimg8723b_mac.c │ │ │ │ │ │ │ ├── halhwimg8723b_mac.h │ │ │ │ │ │ │ ├── halhwimg8723b_mp.c │ │ │ │ │ │ │ ├── halhwimg8723b_mp.h │ │ │ │ │ │ │ ├── halhwimg8723b_rf.c │ │ │ │ │ │ │ ├── halhwimg8723b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8723b_ap.c │ │ │ │ │ │ │ ├── halphyrf_8723b_ap.h │ │ │ │ │ │ │ ├── halphyrf_8723b_ce.c │ │ │ │ │ │ │ ├── halphyrf_8723b_ce.h │ │ │ │ │ │ │ ├── halphyrf_8723b_win.c │ │ │ │ │ │ │ ├── halphyrf_8723b_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8723b.c │ │ │ │ │ │ │ ├── phydm_regconfig8723b.h │ │ │ │ │ │ │ ├── phydm_rtl8723b.c │ │ │ │ │ │ │ ├── phydm_rtl8723b.h │ │ │ │ │ │ │ └── version_rtl8723b.h │ │ │ │ │ │ ├── rtl8723d │ │ │ │ │ │ │ ├── hal8723dreg.h │ │ │ │ │ │ │ ├── halhwimg8723d_bb.c │ │ │ │ │ │ │ ├── halhwimg8723d_bb.h │ │ │ │ │ │ │ ├── halhwimg8723d_fw.c │ │ │ │ │ │ │ ├── halhwimg8723d_fw.h │ │ │ │ │ │ │ ├── halhwimg8723d_mac.c │ │ │ │ │ │ │ ├── halhwimg8723d_mac.h │ │ │ │ │ │ │ ├── halhwimg8723d_rf.c │ │ │ │ │ │ │ ├── halhwimg8723d_rf.h │ │ │ │ │ │ │ ├── halphyrf_8723d.c │ │ │ │ │ │ │ ├── halphyrf_8723d.h │ │ │ │ │ │ │ ├── phydm_regconfig8723d.c │ │ │ │ │ │ │ ├── phydm_regconfig8723d.h │ │ │ │ │ │ │ ├── phydm_rtl8723d.c │ │ │ │ │ │ │ ├── phydm_rtl8723d.h │ │ │ │ │ │ │ └── version_rtl8723d.h │ │ │ │ │ │ ├── rtl8812a │ │ │ │ │ │ │ ├── halhwimg8812a_bb.c │ │ │ │ │ │ │ ├── halhwimg8812a_bb.h │ │ │ │ │ │ │ ├── halhwimg8812a_fw.c │ │ │ │ │ │ │ ├── halhwimg8812a_fw.h │ │ │ │ │ │ │ ├── halhwimg8812a_mac.c │ │ │ │ │ │ │ ├── halhwimg8812a_mac.h │ │ │ │ │ │ │ ├── halhwimg8812a_rf.c │ │ │ │ │ │ │ ├── halhwimg8812a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8812a_ap.c │ │ │ │ │ │ │ ├── halphyrf_8812a_ap.h │ │ │ │ │ │ │ ├── halphyrf_8812a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8812a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8812a_win.c │ │ │ │ │ │ │ ├── halphyrf_8812a_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8812a.c │ │ │ │ │ │ │ ├── phydm_regconfig8812a.h │ │ │ │ │ │ │ ├── phydm_rtl8812a.c │ │ │ │ │ │ │ ├── phydm_rtl8812a.h │ │ │ │ │ │ │ └── version_rtl8812a.h │ │ │ │ │ │ ├── rtl8814a │ │ │ │ │ │ │ ├── hal8814areg_odm.h │ │ │ │ │ │ │ ├── halhwimg8814a_bb.c │ │ │ │ │ │ │ ├── halhwimg8814a_bb.h │ │ │ │ │ │ │ ├── halhwimg8814a_fw.c │ │ │ │ │ │ │ ├── halhwimg8814a_fw.h │ │ │ │ │ │ │ ├── halhwimg8814a_mac.c │ │ │ │ │ │ │ ├── halhwimg8814a_mac.h │ │ │ │ │ │ │ ├── halhwimg8814a_rf.c │ │ │ │ │ │ │ ├── halhwimg8814a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8814a_ap.c │ │ │ │ │ │ │ ├── halphyrf_8814a_ap.h │ │ │ │ │ │ │ ├── halphyrf_8814a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8814a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8814a_win.c │ │ │ │ │ │ │ ├── halphyrf_8814a_win.h │ │ │ │ │ │ │ ├── phydm_iqk_8814a.c │ │ │ │ │ │ │ ├── phydm_iqk_8814a.h │ │ │ │ │ │ │ ├── phydm_regconfig8814a.c │ │ │ │ │ │ │ ├── phydm_regconfig8814a.h │ │ │ │ │ │ │ ├── phydm_rtl8814a.c │ │ │ │ │ │ │ ├── phydm_rtl8814a.h │ │ │ │ │ │ │ └── version_rtl8814a.h │ │ │ │ │ │ ├── rtl8821a │ │ │ │ │ │ │ ├── halhwimg8821a_bb.c │ │ │ │ │ │ │ ├── halhwimg8821a_bb.h │ │ │ │ │ │ │ ├── halhwimg8821a_fw.c │ │ │ │ │ │ │ ├── halhwimg8821a_fw.h │ │ │ │ │ │ │ ├── halhwimg8821a_mac.c │ │ │ │ │ │ │ ├── halhwimg8821a_mac.h │ │ │ │ │ │ │ ├── halhwimg8821a_rf.c │ │ │ │ │ │ │ ├── halhwimg8821a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8821a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8821a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8821a_win.c │ │ │ │ │ │ │ ├── halphyrf_8821a_win.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ap.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ap.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ce.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ce.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_win.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8821a.c │ │ │ │ │ │ │ ├── phydm_regconfig8821a.h │ │ │ │ │ │ │ ├── phydm_rtl8821a.c │ │ │ │ │ │ │ ├── phydm_rtl8821a.h │ │ │ │ │ │ │ └── version_rtl8821a.h │ │ │ │ │ │ ├── rtl8821c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_bb.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_bb.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_fw.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_fw.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_mac.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_mac.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_rf.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_rf.h │ │ │ │ │ │ │ ├── phydm_hal_api8821c.c │ │ │ │ │ │ │ ├── phydm_hal_api8821c.h │ │ │ │ │ │ │ ├── phydm_iqk_8821c.c │ │ │ │ │ │ │ ├── phydm_iqk_8821c.h │ │ │ │ │ │ │ ├── phydm_regconfig8821c.c │ │ │ │ │ │ │ ├── phydm_regconfig8821c.h │ │ │ │ │ │ │ └── version_rtl8821c.h │ │ │ │ │ │ ├── rtl8822b │ │ │ │ │ │ │ ├── halhwimg8822b_bb.c │ │ │ │ │ │ │ ├── halhwimg8822b_bb.h │ │ │ │ │ │ │ ├── halhwimg8822b_fw.c │ │ │ │ │ │ │ ├── halhwimg8822b_fw.h │ │ │ │ │ │ │ ├── halhwimg8822b_mac.c │ │ │ │ │ │ │ ├── halhwimg8822b_mac.h │ │ │ │ │ │ │ ├── halhwimg8822b_rf.c │ │ │ │ │ │ │ ├── halhwimg8822b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8822b.c │ │ │ │ │ │ │ ├── halphyrf_8822b.h │ │ │ │ │ │ │ ├── phydm_hal_api8822b.c │ │ │ │ │ │ │ ├── phydm_hal_api8822b.h │ │ │ │ │ │ │ ├── phydm_iqk_8822b.c │ │ │ │ │ │ │ ├── phydm_iqk_8822b.h │ │ │ │ │ │ │ ├── phydm_regconfig8822b.c │ │ │ │ │ │ │ ├── phydm_regconfig8822b.h │ │ │ │ │ │ │ ├── phydm_rtl8822b.c │ │ │ │ │ │ │ ├── phydm_rtl8822b.h │ │ │ │ │ │ │ └── version_rtl8822b.h │ │ │ │ │ │ └── txbf │ │ │ │ │ │ │ ├── halcomtxbf.c │ │ │ │ │ │ │ ├── halcomtxbf.h │ │ │ │ │ │ │ ├── haltxbf8192e.c │ │ │ │ │ │ │ ├── haltxbf8192e.h │ │ │ │ │ │ │ ├── haltxbf8814a.c │ │ │ │ │ │ │ ├── haltxbf8814a.h │ │ │ │ │ │ │ ├── haltxbf8822b.c │ │ │ │ │ │ │ ├── haltxbf8822b.h │ │ │ │ │ │ │ ├── haltxbfinterface.c │ │ │ │ │ │ │ ├── haltxbfinterface.h │ │ │ │ │ │ │ ├── haltxbfjaguar.c │ │ │ │ │ │ │ ├── haltxbfjaguar.h │ │ │ │ │ │ │ ├── phydm_hal_txbf_api.c │ │ │ │ │ │ │ └── phydm_hal_txbf_api.h │ │ │ │ │ │ ├── platform.mk │ │ │ │ │ │ ├── romeperf.c │ │ │ │ │ │ ├── romeperf.h │ │ │ │ │ │ ├── rtl8672_port.c │ │ │ │ │ │ ├── rtl_types.h │ │ │ │ │ │ ├── rtw_android.c │ │ │ │ │ │ ├── rtw_android.h │ │ │ │ │ │ ├── sha256.c │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ ├── to_phydm_trunk │ │ │ │ │ │ ├── tplmt2h.pl │ │ │ │ │ │ ├── typedef.h │ │ │ │ │ │ └── wifi.h │ │ │ │ ├── spi │ │ │ │ │ └── sheipa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dw_common.h │ │ │ │ │ │ ├── modules.builtin │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── spi-sheipa.c │ │ │ │ │ │ └── spi-sheipa.h │ │ │ │ ├── usb │ │ │ │ │ ├── dwc_otg │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dummy_audio.c │ │ │ │ │ │ ├── dwc_otg_attr.c │ │ │ │ │ │ ├── dwc_otg_attr.h │ │ │ │ │ │ ├── dwc_otg_cil.c │ │ │ │ │ │ ├── dwc_otg_cil.h │ │ │ │ │ │ ├── dwc_otg_cil_def.h │ │ │ │ │ │ ├── dwc_otg_cil_intr.c │ │ │ │ │ │ ├── dwc_otg_driver.c │ │ │ │ │ │ ├── dwc_otg_driver.h │ │ │ │ │ │ ├── dwc_otg_hcd.c │ │ │ │ │ │ ├── dwc_otg_hcd.h │ │ │ │ │ │ ├── dwc_otg_hcd_def.h │ │ │ │ │ │ ├── dwc_otg_hcd_intr.c │ │ │ │ │ │ ├── dwc_otg_hcd_queue.c │ │ │ │ │ │ ├── dwc_otg_pcd.c │ │ │ │ │ │ ├── dwc_otg_pcd.h │ │ │ │ │ │ ├── dwc_otg_pcd_intr.c │ │ │ │ │ │ ├── dwc_otg_plat.h │ │ │ │ │ │ ├── dwc_otg_regs.h │ │ │ │ │ │ ├── dwc_otg_regs_src.h │ │ │ │ │ │ ├── lm.c │ │ │ │ │ │ ├── lm.h │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── otg_dbg.h │ │ │ │ │ │ ├── rtk_otg_autodet.c │ │ │ │ │ │ ├── rtk_otg_autodet.h │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── dwc_otg_test.pm │ │ │ │ │ │ │ ├── test_mod_param.pl │ │ │ │ │ │ │ └── test_sysfs.pl │ │ │ │ │ └── host │ │ │ │ │ │ ├── ehci-rtl819x.c │ │ │ │ │ │ └── ohci-rtl819x.c │ │ │ │ └── watchdog │ │ │ │ │ └── rtl819x_wdt.c │ │ │ ├── include │ │ │ │ ├── nand_spi │ │ │ │ │ ├── ecc_ctrl.h │ │ │ │ │ ├── nand_spi.h │ │ │ │ │ ├── nand_spi_ctrl.h │ │ │ │ │ ├── nand_spi_gd.h │ │ │ │ │ ├── nand_spi_util.h │ │ │ │ │ ├── soc.h │ │ │ │ │ └── util.h │ │ │ │ ├── net │ │ │ │ │ └── rtl │ │ │ │ │ │ ├── fastpath │ │ │ │ │ │ ├── fast_br.h │ │ │ │ │ │ └── fastpath_core.h │ │ │ │ │ │ ├── features │ │ │ │ │ │ ├── fast_bridge.h │ │ │ │ │ │ ├── lan_restrict.h │ │ │ │ │ │ ├── rtl_dev_stats.h │ │ │ │ │ │ ├── rtl_features.h │ │ │ │ │ │ ├── rtl_igmp_ps_hook.h │ │ │ │ │ │ ├── rtl_private_struct.h │ │ │ │ │ │ ├── rtl_ps_hooks.h │ │ │ │ │ │ ├── rtl_ps_log.h │ │ │ │ │ │ └── rtl_sched_hooks.h │ │ │ │ │ │ ├── rtk_stp.h │ │ │ │ │ │ ├── rtk_vlan.h │ │ │ │ │ │ ├── rtl8198c_arp_ipv6_api.h │ │ │ │ │ │ ├── rtl8198c_route_ipv6_api.h │ │ │ │ │ │ ├── rtl865x_arp_api.h │ │ │ │ │ │ ├── rtl865x_fdb_api.h │ │ │ │ │ │ ├── rtl865x_igmpsnooping.h │ │ │ │ │ │ ├── rtl865x_igmpsnooping_glue.h │ │ │ │ │ │ ├── rtl865x_ip_api.h │ │ │ │ │ │ ├── rtl865x_localPublic.h │ │ │ │ │ │ ├── rtl865x_multicast.h │ │ │ │ │ │ ├── rtl865x_multipleWan_api.h │ │ │ │ │ │ ├── rtl865x_nat.h │ │ │ │ │ │ ├── rtl865x_netif.h │ │ │ │ │ │ ├── rtl865x_outputQueue.h │ │ │ │ │ │ ├── rtl865x_ppp.h │ │ │ │ │ │ ├── rtl865x_route_api.h │ │ │ │ │ │ ├── rtl_dnstrap.h │ │ │ │ │ │ ├── rtl_dot1x.h │ │ │ │ │ │ ├── rtl_glue.h │ │ │ │ │ │ ├── rtl_multi_wan.h │ │ │ │ │ │ ├── rtl_nf.h │ │ │ │ │ │ ├── rtl_nic.h │ │ │ │ │ │ ├── rtl_queue.h │ │ │ │ │ │ ├── rtl_sendfile.h │ │ │ │ │ │ └── rtl_types.h │ │ │ │ ├── net80211 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.kernel │ │ │ │ │ ├── _ieee80211.h │ │ │ │ │ ├── ieee80211.h │ │ │ │ │ ├── ieee80211_crypto.h │ │ │ │ │ └── ieee80211_ioctl.h │ │ │ │ └── uapi │ │ │ │ │ └── linux │ │ │ │ │ └── netfilter_ipv4 │ │ │ │ │ ├── ip_conntrack_pptp.h │ │ │ │ │ ├── ipt_TRIGGERPORT.h │ │ │ │ │ └── listhelp.h │ │ │ └── net │ │ │ │ └── rtl │ │ │ │ └── features │ │ │ │ ├── Makefile │ │ │ │ ├── fast_bridge.c │ │ │ │ ├── lan_restrict.c │ │ │ │ ├── rtl_features.c │ │ │ │ ├── rtl_nf_connGC.c │ │ │ │ └── rtl_ps_hooks.c │ │ ├── image │ │ │ ├── Makefile │ │ │ └── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── cache.c │ │ │ │ ├── head.S │ │ │ │ ├── loader.c │ │ │ │ ├── loader.lds │ │ │ │ ├── lzma-data.lds │ │ │ │ ├── printf.c │ │ │ │ └── printf.h │ │ ├── patches-3.10 │ │ │ ├── 100-rlx_build.patch │ │ │ ├── 101-rtkmips_arch_add.patch │ │ │ ├── 102-rtkmips_98C_and_GIC_fix.patch │ │ │ ├── 103-rtkmips_arch_add_97f.patch │ │ │ ├── 110-rlx_flash.patch │ │ │ ├── 111-rlx_819x_sw.patch │ │ │ ├── 112_rlx_nand_flash.patch │ │ │ ├── 113_rlx_nand_flash_chip.patch │ │ │ ├── 114-rlx_819x_usb.patch │ │ │ ├── 115-rlx-819x_usb_otg.patch │ │ │ ├── 116-rlx-8192cd-add-config.patch │ │ │ ├── 117-rlx-export.dev_change_name.patch │ │ │ ├── 120-rtk-819x_watchdog.patch │ │ │ ├── 125-rlx-819x_usb_otg_alignment_fix.patch │ │ │ ├── 126-rlx-819x_usb_otg_smp_fix.patch │ │ │ ├── 205-MIPS-98c-rcu-stall-fix.patch │ │ │ ├── 300-bluetooth_driver.patch │ │ │ ├── 400-rtl-smb_speedup.patch │ │ │ ├── 402-rtl_sendfile-kernel.patch │ │ │ ├── 500-netfilter_layer7_coderefine.patch │ │ │ ├── 600-rtl8197f-spi.patch │ │ │ ├── 601-rtl8197f-uart.patch │ │ │ ├── 900-realtek-dma-operation.patch │ │ │ ├── 990-watchdog_panic_workaround.patch │ │ │ ├── 991-realtek-hw_crypto.patch │ │ │ ├── 992-rtk-spi.patch │ │ │ ├── 993-realtek-hw_crypto_cbc_fix.patch │ │ │ ├── 995-realtek-hw_crypto_refine_lock.patch │ │ │ ├── 996-kernel_exception_reboot.patch │ │ │ ├── 9990-rtl_fastpath.patch │ │ │ ├── 9991-rtl_hw_napt.patch │ │ │ ├── 9992-rtl_dev_stats.patch │ │ │ ├── 9993-rtl_hw_qos.patch │ │ │ ├── 9994-rtl_hw_napt_fixed.patch │ │ │ └── 9995-rtl_hw_multicast.patch │ │ ├── rtl8196e │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── config │ │ │ │ │ │ └── system │ │ │ │ │ ├── init.d │ │ │ │ │ │ ├── setethmac │ │ │ │ │ │ └── swdone │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ ├── 110-None.mk │ │ │ │ └── 120-AP.mk │ │ │ └── target.mk │ │ ├── rtl819xd │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── config │ │ │ │ │ │ └── system │ │ │ │ │ ├── init.d │ │ │ │ │ │ ├── setethmac │ │ │ │ │ │ └── swdone │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-3.10 │ │ │ ├── kconfig │ │ │ │ ├── config_rtl8196d_92e │ │ │ │ ├── config_rtl8197DL │ │ │ │ └── config_rtl8197DN_extPA │ │ │ ├── profiles │ │ │ │ ├── 110-None.mk │ │ │ │ └── 120-AP.mk │ │ │ └── target.mk │ │ └── rtl8881a │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── system │ │ │ │ ├── init.d │ │ │ │ │ ├── setethmac │ │ │ │ │ └── swdone │ │ │ │ └── uci-defaults │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-3.10 │ │ │ ├── kconfig │ │ │ ├── config_rtl8881AB+8367R │ │ │ ├── config_rtl8881AN │ │ │ └── config_rtl8881AQ_externalPA │ │ │ ├── profiles │ │ │ ├── 110-None.mk │ │ │ └── 120-AP.mk │ │ │ └── target.mk │ ├── realview │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-3.10 │ │ ├── config-3.8 │ │ └── image │ │ │ └── Makefile │ ├── rtkmips │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── system │ │ │ │ ├── init.d │ │ │ │ │ ├── setethmac │ │ │ │ │ └── swdone │ │ │ │ └── uci-defaults │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── files │ │ │ ├── arch │ │ │ │ ├── mips │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── mach-realtek │ │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ │ ├── kernel-entry-init.h │ │ │ │ │ │ │ ├── rtl8198c │ │ │ │ │ │ │ │ └── cpu-feature-overrides.h │ │ │ │ │ │ │ └── war.h │ │ │ │ │ │ │ └── mach-rtl8197f │ │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ │ ├── rtl8197f │ │ │ │ │ │ │ └── cpu-feature-overrides.h │ │ │ │ │ │ │ └── war.h │ │ │ │ │ ├── realtek │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Kconfig.legacy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ │ ├── flushall.c │ │ │ │ │ │ ├── gcmp.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── irq-gic.c │ │ │ │ │ │ ├── irq-ictl.c │ │ │ │ │ │ ├── mach_rtl8198c.c │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── pci-fixup.c │ │ │ │ │ │ ├── pci-ops.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── rtl8198c.c │ │ │ │ │ │ ├── sata.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── setup.c │ │ │ │ │ │ ├── smp-amon.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ └── xhci-usb.c │ │ │ │ │ └── rtl8197f │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Kconfig.legacy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ │ ├── bspinit.h │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── irq-gpio.c │ │ │ │ │ │ ├── irq-ictl.c │ │ │ │ │ │ ├── irq.c │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── mach_rtl819x.c │ │ │ │ │ │ ├── modules.builtin │ │ │ │ │ │ ├── mtd.c │ │ │ │ │ │ ├── pci-fixup.c │ │ │ │ │ │ ├── pci-ops.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── setup.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── war.h │ │ │ │ └── rlx │ │ │ │ │ ├── Kbuild │ │ │ │ │ ├── Kbuild.platforms │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.debug │ │ │ │ │ ├── Kconfig.rlx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boot │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── compressed │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── calc_vmlinuz_load_addr.c │ │ │ │ │ │ ├── dbg.c │ │ │ │ │ │ ├── decompress.c │ │ │ │ │ │ ├── dummy.c │ │ │ │ │ │ ├── head.S │ │ │ │ │ │ ├── ld.script │ │ │ │ │ │ ├── uart-16550.c │ │ │ │ │ │ └── uart-alchemy.c │ │ │ │ │ ├── ecoff.h │ │ │ │ │ └── elf2ecoff.c │ │ │ │ │ ├── config.cpu │ │ │ │ │ ├── config.in │ │ │ │ │ ├── configs │ │ │ │ │ └── rlx_defconfig │ │ │ │ │ ├── fw │ │ │ │ │ ├── arc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arc_con.c │ │ │ │ │ │ ├── cmdline.c │ │ │ │ │ │ ├── env.c │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ ├── identify.c │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── promlib.c │ │ │ │ │ │ ├── salone.c │ │ │ │ │ │ ├── time.c │ │ │ │ │ │ └── tree.c │ │ │ │ │ ├── cfe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cfe_api.c │ │ │ │ │ │ └── cfe_api_int.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── call_o32.S │ │ │ │ │ │ └── cmdline.c │ │ │ │ │ └── sni │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── sniprom.c │ │ │ │ │ ├── include │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── abi.h │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── asmmacro-32.h │ │ │ │ │ │ ├── asmmacro-64.h │ │ │ │ │ │ ├── asmmacro.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── bcache.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bmips.h │ │ │ │ │ │ ├── bootinfo.h │ │ │ │ │ │ ├── branch.h │ │ │ │ │ │ ├── break.h │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── bugs.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── cacheops.h │ │ │ │ │ │ ├── cevt-rlx.h │ │ │ │ │ │ ├── checksum.h │ │ │ │ │ │ ├── clkdev.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cmp.h │ │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ │ ├── compat-signal.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── cop2.h │ │ │ │ │ │ ├── cpu-features.h │ │ │ │ │ │ ├── cpu-info.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cputime.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── div64.h │ │ │ │ │ │ ├── dma-coherence.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── ds1287.h │ │ │ │ │ │ ├── dsp.h │ │ │ │ │ │ ├── edac.h │ │ │ │ │ │ ├── elf.h │ │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── exec.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── fixmap.h │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ ├── fpregdef.h │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ ├── fpu_emulator.h │ │ │ │ │ │ ├── ftrace.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── fw │ │ │ │ │ │ │ ├── arc │ │ │ │ │ │ │ │ ├── hinv.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ │ ├── cfe │ │ │ │ │ │ │ │ ├── cfe_api.h │ │ │ │ │ │ │ │ └── cfe_error.h │ │ │ │ │ │ │ └── fw.h │ │ │ │ │ │ ├── gcmpregs.h │ │ │ │ │ │ ├── gic.h │ │ │ │ │ │ ├── gio_device.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gt64120.h │ │ │ │ │ │ ├── hardirq.h │ │ │ │ │ │ ├── hazards.h │ │ │ │ │ │ ├── highmem.h │ │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ide.h │ │ │ │ │ │ ├── idle.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_cpu.h │ │ │ │ │ │ ├── irq_gt641xx.h │ │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ │ ├── irq_vec.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── isadep.h │ │ │ │ │ │ ├── jazz.h │ │ │ │ │ │ ├── jazzdma.h │ │ │ │ │ │ ├── jump_label.h │ │ │ │ │ │ ├── kdebug.h │ │ │ │ │ │ ├── kexec.h │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ │ ├── kprobes.h │ │ │ │ │ │ ├── kspd.h │ │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local64.h │ │ │ │ │ │ ├── m48t37.h │ │ │ │ │ │ ├── mach-generic │ │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ │ ├── dma-coherence.h │ │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── ide.h │ │ │ │ │ │ │ ├── ioremap.h │ │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ │ ├── kernel-entry-init.h │ │ │ │ │ │ │ ├── kmalloc.h │ │ │ │ │ │ │ ├── mangle-port.h │ │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ │ ├── spaces.h │ │ │ │ │ │ │ └── topology.h │ │ │ │ │ │ ├── mc146818-time.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mips-boards │ │ │ │ │ │ │ ├── bonito64.h │ │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ │ ├── launch.h │ │ │ │ │ │ │ ├── malta.h │ │ │ │ │ │ │ ├── maltaint.h │ │ │ │ │ │ │ ├── msc01_pci.h │ │ │ │ │ │ │ ├── piix4.h │ │ │ │ │ │ │ ├── sead3int.h │ │ │ │ │ │ │ └── sim.h │ │ │ │ │ │ ├── mips_machine.h │ │ │ │ │ │ ├── mips_mt.h │ │ │ │ │ │ ├── mipsmtregs.h │ │ │ │ │ │ ├── mipsprom.h │ │ │ │ │ │ ├── mmcr.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ │ ├── mmzone.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── msc01_ic.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── nile4.h │ │ │ │ │ │ ├── paccess.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── parport.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci │ │ │ │ │ │ │ └── bridge.h │ │ │ │ │ │ ├── percpu.h │ │ │ │ │ │ ├── perf_event.h │ │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ │ ├── pgtable-32.h │ │ │ │ │ │ ├── pgtable-64.h │ │ │ │ │ │ ├── pgtable-bits.h │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ ├── pmon.h │ │ │ │ │ │ ├── prefetch.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── radiax.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── regdef.h │ │ │ │ │ │ ├── rlx-timer.h │ │ │ │ │ │ ├── rlxregs.h │ │ │ │ │ │ ├── rm9k-ocd.h │ │ │ │ │ │ ├── rtlx.h │ │ │ │ │ │ ├── scatterlist.h │ │ │ │ │ │ ├── seccomp.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── segment.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sgi │ │ │ │ │ │ │ ├── gio.h │ │ │ │ │ │ │ ├── hpc3.h │ │ │ │ │ │ │ ├── ioc.h │ │ │ │ │ │ │ ├── ip22.h │ │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ │ ├── pi1.h │ │ │ │ │ │ │ ├── seeq.h │ │ │ │ │ │ │ ├── sgi.h │ │ │ │ │ │ │ └── wd.h │ │ │ │ │ │ ├── sgialib.h │ │ │ │ │ │ ├── sgiarcs.h │ │ │ │ │ │ ├── shmparam.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── sim.h │ │ │ │ │ │ ├── smp-boot.h │ │ │ │ │ │ ├── smp-ops.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── smtc.h │ │ │ │ │ │ ├── smtc_ipi.h │ │ │ │ │ │ ├── smtc_proc.h │ │ │ │ │ │ ├── sni.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ │ ├── spram.h │ │ │ │ │ │ ├── stackframe.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── suspend.h │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── thread_info.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── tlb.h │ │ │ │ │ │ ├── tlbdebug.h │ │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ │ ├── tlbmisc.h │ │ │ │ │ │ ├── topology.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── txx9irq.h │ │ │ │ │ │ ├── txx9pio.h │ │ │ │ │ │ ├── txx9tmr.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uasm.h │ │ │ │ │ │ ├── ucontext.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── unistd.h │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ ├── vdso.h │ │ │ │ │ │ ├── vga.h │ │ │ │ │ │ ├── vpe.h │ │ │ │ │ │ ├── war.h │ │ │ │ │ │ ├── watch.h │ │ │ │ │ │ ├── wbflush.h │ │ │ │ │ │ └── xor.h │ │ │ │ │ └── uapi │ │ │ │ │ │ └── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── auxvec.h │ │ │ │ │ │ ├── bitsperlong.h │ │ │ │ │ │ ├── break.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cachectl.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── ipcbuf.h │ │ │ │ │ │ ├── kvm.h │ │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msgbuf.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sembuf.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sgidefs.h │ │ │ │ │ │ ├── shmbuf.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── sockios.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── swab.h │ │ │ │ │ │ ├── sysmips.h │ │ │ │ │ │ ├── termbits.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── unistd.h │ │ │ │ │ ├── kernel │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── branch.c │ │ │ │ │ ├── cevt-ext.c │ │ │ │ │ ├── cevt-gic.c │ │ │ │ │ ├── cevt-rlx.c │ │ │ │ │ ├── cevt-smtc.c │ │ │ │ │ ├── cpu-probe.c │ │ │ │ │ ├── crash.c │ │ │ │ │ ├── crash_dump.c │ │ │ │ │ ├── csrc-gic.c │ │ │ │ │ ├── csrc-rlx.c │ │ │ │ │ ├── early_printk.c │ │ │ │ │ ├── entry.S │ │ │ │ │ ├── ftrace.c │ │ │ │ │ ├── genex.S │ │ │ │ │ ├── head.S │ │ │ │ │ ├── idle.c │ │ │ │ │ ├── irq-cpu.c │ │ │ │ │ ├── irq-gic.c │ │ │ │ │ ├── irq-vec.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── jump_label.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── kprobes.c │ │ │ │ │ ├── machine_kexec.c │ │ │ │ │ ├── mcount.S │ │ │ │ │ ├── mips_ksyms.c │ │ │ │ │ ├── mips_machine.c │ │ │ │ │ ├── module-rela.c │ │ │ │ │ ├── module.c │ │ │ │ │ ├── perf_event.c │ │ │ │ │ ├── perf_event_mipsxx.c │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── process.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── ptrace.c │ │ │ │ │ ├── relocate_kernel.S │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── rlx-fpu.S │ │ │ │ │ ├── rlx-switch.S │ │ │ │ │ ├── scall32-o32.S │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── signal-common.h │ │ │ │ │ ├── signal.c │ │ │ │ │ ├── smp-amon.c │ │ │ │ │ ├── smp-cmp.c │ │ │ │ │ ├── smp-up.c │ │ │ │ │ ├── smp.c │ │ │ │ │ ├── spinlock_test.c │ │ │ │ │ ├── spram.c │ │ │ │ │ ├── stacktrace.c │ │ │ │ │ ├── sync-rlx.c │ │ │ │ │ ├── syscall.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── topology.c │ │ │ │ │ ├── traps.c │ │ │ │ │ ├── unaligned.c │ │ │ │ │ ├── vdso.c │ │ │ │ │ ├── vmlinux.lds.S │ │ │ │ │ └── watch.c │ │ │ │ │ ├── kvm │ │ │ │ │ ├── 00README.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kvm_cb.c │ │ │ │ │ ├── kvm_locore.S │ │ │ │ │ ├── kvm_mips.c │ │ │ │ │ ├── kvm_mips_comm.h │ │ │ │ │ ├── kvm_mips_commpage.c │ │ │ │ │ ├── kvm_mips_dyntrans.c │ │ │ │ │ ├── kvm_mips_emul.c │ │ │ │ │ ├── kvm_mips_int.c │ │ │ │ │ ├── kvm_mips_int.h │ │ │ │ │ ├── kvm_mips_opcode.h │ │ │ │ │ ├── kvm_mips_stats.c │ │ │ │ │ ├── kvm_tlb.c │ │ │ │ │ ├── kvm_trap_emul.c │ │ │ │ │ └── trace.h │ │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ashldi3.c │ │ │ │ │ ├── ashrdi3.c │ │ │ │ │ ├── bitops.c │ │ │ │ │ ├── cmpdi2.c │ │ │ │ │ ├── csum_partial.S │ │ │ │ │ ├── delay.c │ │ │ │ │ ├── dump_tlb.c │ │ │ │ │ ├── iomap-pci.c │ │ │ │ │ ├── iomap.c │ │ │ │ │ ├── libgcc.h │ │ │ │ │ ├── lshrdi3.c │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── mips-atomic.c │ │ │ │ │ ├── rlx_dump_tlb.c │ │ │ │ │ ├── strlen_user.S │ │ │ │ │ ├── strncpy_user.S │ │ │ │ │ ├── strnlen_user.S │ │ │ │ │ ├── ucmpdi2.c │ │ │ │ │ └── uncached.c │ │ │ │ │ ├── mm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c-rlx.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cex-gen.S │ │ │ │ │ ├── dma-default.c │ │ │ │ │ ├── extable.c │ │ │ │ │ ├── fault.c │ │ │ │ │ ├── gup.c │ │ │ │ │ ├── highmem.c │ │ │ │ │ ├── hugetlbpage.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── ioremap.c │ │ │ │ │ ├── mmap.c │ │ │ │ │ ├── page-funcs.S │ │ │ │ │ ├── page.c │ │ │ │ │ ├── pgtable-32.c │ │ │ │ │ ├── sc-mips.c │ │ │ │ │ ├── tlb-rlx.c │ │ │ │ │ ├── tlbex-fault.S │ │ │ │ │ ├── tlbex.c │ │ │ │ │ ├── uasm-micromips.c │ │ │ │ │ ├── uasm-mips.c │ │ │ │ │ └── uasm.c │ │ │ │ │ ├── oprofile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── backtrace.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── op_impl.h │ │ │ │ │ ├── op_model_loongson2.c │ │ │ │ │ └── op_model_mipsxx.c │ │ │ │ │ ├── pci │ │ │ │ │ ├── Makefile │ │ │ │ │ └── pci.c │ │ │ │ │ ├── power │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ └── hibernate.S │ │ │ │ │ ├── soc-rtl8196e │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_rtl8196e_v110_11n.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ │ │ ├── soc-rtl819xd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in.819xd │ │ │ │ │ ├── config.in.819xdt │ │ │ │ │ ├── config.in.89xxd │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── imem-dmem.S │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_rtl819xd.c │ │ │ │ │ ├── mach_rtl8972d_v100_ata.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ │ │ └── soc-rtl8881a │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in │ │ │ │ │ ├── config.in.819xd │ │ │ │ │ ├── config.in.819xdt │ │ │ │ │ ├── config.in.8881a │ │ │ │ │ ├── config.in.89xxd │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── imem-dmem.S │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_8881a.c │ │ │ │ │ ├── mach_rtl8972d_v100_ata.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ ├── drivers │ │ │ │ ├── bluetooth │ │ │ │ │ ├── hci_rtk_h5.c │ │ │ │ │ ├── rtk_bt.c │ │ │ │ │ ├── rtk_bt.h │ │ │ │ │ ├── rtk_coex.c │ │ │ │ │ └── rtk_coex.h │ │ │ │ ├── crypto │ │ │ │ │ └── realtek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── crypto_engine │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── hmac.c │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── md5.c │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── rtl_ipsec.c │ │ │ │ │ │ ├── rtl_ipsec.h │ │ │ │ │ │ ├── rtl_ipsec_test.c │ │ │ │ │ │ ├── sha1.c │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ └── sw_sim │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── aesSim.c │ │ │ │ │ │ │ ├── aesSim.h │ │ │ │ │ │ │ ├── aes_1.h │ │ │ │ │ │ │ ├── aes_block.c │ │ │ │ │ │ │ ├── aes_core.c │ │ │ │ │ │ │ ├── aes_locl.h │ │ │ │ │ │ │ ├── authSim.c │ │ │ │ │ │ │ ├── authSim.h │ │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ │ ├── desSim.c │ │ │ │ │ │ │ ├── desSim.h │ │ │ │ │ │ │ ├── des_ecb.c │ │ │ │ │ │ │ ├── des_locl.h │ │ │ │ │ │ │ ├── des_setkey.c │ │ │ │ │ │ │ ├── podd.h │ │ │ │ │ │ │ ├── sk.h │ │ │ │ │ │ │ └── spr.h │ │ │ │ │ │ ├── rtl_crypto.c │ │ │ │ │ │ ├── rtl_crypto_helper.c │ │ │ │ │ │ └── rtl_crypto_helper.h │ │ │ │ ├── mtd │ │ │ │ │ ├── chips │ │ │ │ │ │ └── rtl819x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── spi_cmd.c │ │ │ │ │ │ │ ├── spi_common.c │ │ │ │ │ │ │ ├── spi_common.h │ │ │ │ │ │ │ ├── spi_flash.c │ │ │ │ │ │ │ ├── spi_flash.h │ │ │ │ │ │ │ └── spi_probe.c │ │ │ │ │ ├── maps │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ └── rtl819x_flash.c │ │ │ │ │ └── nand │ │ │ │ │ │ ├── nand_base_sd.c │ │ │ │ │ │ ├── rtk_nand.h │ │ │ │ │ │ ├── rtk_nand_sd.c │ │ │ │ │ │ ├── rtkn_nand │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── nand_parallel.c │ │ │ │ │ │ ├── nand_parallel_ctrl.c │ │ │ │ │ │ ├── nand_spi.c │ │ │ │ │ │ ├── nand_spi_bbt.c │ │ │ │ │ │ ├── nand_spi_ctrl.c │ │ │ │ │ │ ├── nand_spi_ecc_ctrl.c │ │ │ │ │ │ ├── ops_rtknand.c │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ ├── rtkn_chip_param.h │ │ │ │ │ │ ├── rtkn_parallel.h │ │ │ │ │ │ ├── rtkn_parallel_regs.h │ │ │ │ │ │ ├── rtknflash.h │ │ │ │ │ │ ├── rtknflash_api.c │ │ │ │ │ │ ├── rtknflash_bbt.c │ │ │ │ │ │ ├── rtknflash_bbtOps.c │ │ │ │ │ │ ├── rtknflash_openwrt.c │ │ │ │ │ │ ├── rtknflash_partition.c │ │ │ │ │ │ └── rtknflash_wrapper.h │ │ │ │ │ │ └── rtknflash │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── ops_rtknand.c │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ ├── rtknflash.h │ │ │ │ │ │ ├── rtknflash_api.c │ │ │ │ │ │ ├── rtknflash_bbt.c │ │ │ │ │ │ └── rtknflash_bbtOps.c │ │ │ │ ├── net │ │ │ │ │ ├── rtl819x │ │ │ │ │ │ ├── AsicDriver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.build │ │ │ │ │ │ │ ├── asicRegs.h │ │ │ │ │ │ │ ├── asicTabs.h │ │ │ │ │ │ │ ├── rtl865xC_hs.c │ │ │ │ │ │ │ ├── rtl865xC_hs.h │ │ │ │ │ │ │ ├── rtl865x_asicBasic.c │ │ │ │ │ │ │ ├── rtl865x_asicBasic.h │ │ │ │ │ │ │ ├── rtl865x_asicCom.c │ │ │ │ │ │ │ ├── rtl865x_asicCom.h │ │ │ │ │ │ │ ├── rtl865x_asicL2.c │ │ │ │ │ │ │ ├── rtl865x_asicL2.h │ │ │ │ │ │ │ ├── rtl865x_asicL3.c │ │ │ │ │ │ │ ├── rtl865x_asicL3.h │ │ │ │ │ │ │ ├── rtl865x_asicL4.c │ │ │ │ │ │ │ ├── rtl865x_asicL4.h │ │ │ │ │ │ │ ├── rtl865x_hwPatch.h │ │ │ │ │ │ │ └── rtl865xc_asicregs.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.Release │ │ │ │ │ │ ├── RTL8370_RTL8367_API │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── gpio_8198.h │ │ │ │ │ │ │ ├── rtk_api.c │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_acl.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_acl.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_cputag.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_cputag.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_dot1x.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eee.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eee.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eeelldp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eeelldp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_fc.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_fc.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_green.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_green.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_igmp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_igmp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_inbwctrl.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_inbwctrl.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_interrupt.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_interrupt.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_led.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_led.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_lut.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_meter.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_meter.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mib.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mirror.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mirror.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_misc.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_misc.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_oam.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_oam.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_phy.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_phy.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_port.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_portIsolation.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_portIsolation.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_qos.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rldp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rldp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rma.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rrcp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rrcp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_scheduling.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_scheduling.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_specialCongest.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_specialCongest.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_storm.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_storm.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_svlan.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_trunking.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_trunking.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_unknownMulticast.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_unknownMulticast.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_vlan.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_vlan.h │ │ │ │ │ │ │ ├── rtl8370_base.h │ │ │ │ │ │ │ ├── rtl8370_reg.h │ │ │ │ │ │ │ ├── smi.c │ │ │ │ │ │ │ └── smi.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mbuf.h │ │ │ │ │ │ │ ├── rtl8651_tblDrvProto.h │ │ │ │ │ │ │ ├── rtl865x_eventMgr.c │ │ │ │ │ │ │ ├── rtl865x_eventMgr.h │ │ │ │ │ │ │ ├── rtl865x_netif.c │ │ │ │ │ │ │ ├── rtl865x_netif_local.h │ │ │ │ │ │ │ ├── rtl865x_vlan.c │ │ │ │ │ │ │ ├── rtl865x_vlan.h │ │ │ │ │ │ │ ├── rtl_errno.h │ │ │ │ │ │ │ ├── rtl_utils.c │ │ │ │ │ │ │ ├── rtl_utils.h │ │ │ │ │ │ │ ├── smi.c │ │ │ │ │ │ │ └── smi.h │ │ │ │ │ │ ├── igmpsnooping │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── igmp_delete.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping_glue.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping_local.h │ │ │ │ │ │ │ └── rtl865x_igmpsnooping_new.c │ │ │ │ │ │ ├── l2Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl865x_fdb.c │ │ │ │ │ │ │ ├── rtl865x_fdb.h │ │ │ │ │ │ │ ├── rtl865x_hw_qos_config.c │ │ │ │ │ │ │ ├── rtl865x_outputQueue.c │ │ │ │ │ │ │ └── rtl865x_stp.c │ │ │ │ │ │ ├── l3Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl8198c_arpIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_arpIpv6.h │ │ │ │ │ │ │ ├── rtl8198c_nexthopIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_nexthopIpv6.h │ │ │ │ │ │ │ ├── rtl8198c_routeIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_routeIpv6.h │ │ │ │ │ │ │ ├── rtl865x_6rd.c │ │ │ │ │ │ │ ├── rtl865x_6rd.h │ │ │ │ │ │ │ ├── rtl865x_arp.c │ │ │ │ │ │ │ ├── rtl865x_arp.h │ │ │ │ │ │ │ ├── rtl865x_dslite.c │ │ │ │ │ │ │ ├── rtl865x_dslite.h │ │ │ │ │ │ │ ├── rtl865x_ip.c │ │ │ │ │ │ │ ├── rtl865x_ip.h │ │ │ │ │ │ │ ├── rtl865x_localPublic.c │ │ │ │ │ │ │ ├── rtl865x_multicast.c │ │ │ │ │ │ │ ├── rtl865x_multipleWan.c │ │ │ │ │ │ │ ├── rtl865x_multipleWan.h │ │ │ │ │ │ │ ├── rtl865x_nexthop.c │ │ │ │ │ │ │ ├── rtl865x_nexthop.h │ │ │ │ │ │ │ ├── rtl865x_ppp.c │ │ │ │ │ │ │ ├── rtl865x_ppp_local.h │ │ │ │ │ │ │ ├── rtl865x_route.c │ │ │ │ │ │ │ └── rtl865x_route.h │ │ │ │ │ │ ├── l4Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl865x_nat.c │ │ │ │ │ │ │ └── rtl865x_nat_local.h │ │ │ │ │ │ ├── m1074kctrl.c │ │ │ │ │ │ ├── m24kctrl.c │ │ │ │ │ │ ├── m24kctrl.h │ │ │ │ │ │ ├── mmap.c │ │ │ │ │ │ ├── rlx5181_perCounter.S │ │ │ │ │ │ ├── rlx5281_perCounter.S │ │ │ │ │ │ ├── romeperf.c │ │ │ │ │ │ ├── romeperf.h │ │ │ │ │ │ ├── rtl819x_swNic.c │ │ │ │ │ │ ├── rtl819x_swNic.h │ │ │ │ │ │ ├── rtl819x_switch.c │ │ │ │ │ │ ├── rtl819x_switch.h │ │ │ │ │ │ ├── rtl8325d │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ ├── rtl8316d_regField_list.c │ │ │ │ │ │ │ │ ├── rtl8316d_reg_list.c │ │ │ │ │ │ │ │ ├── rtl8316d_tableField_list.c │ │ │ │ │ │ │ │ └── rtl8316d_table_list.c │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── asicdrv │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_general_reg.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_regField_list.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_reg_struct.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_tableField_list.h │ │ │ │ │ │ │ │ │ │ └── rtl8316d_table_struct.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicDrv.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_dot1x.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_inacl.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mir.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_nic.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_port.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_qos.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_reg.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rma.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rtkpp.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_stp.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_svlan.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_tbl.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_trunk.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_vlan.h │ │ │ │ │ │ │ │ │ └── rtl8316d_types.h │ │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ │ └── rtl8316d_debug.h │ │ │ │ │ │ │ ├── rtl8316d_asicDrv.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_inacl.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mir.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_nic.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rtkpp.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_stp.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_tbl.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_trunk.c │ │ │ │ │ │ │ └── rtl8316d_asicdrv_vlan.c │ │ │ │ │ │ ├── rtl8367r │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtk_api.c │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_acl.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_acl.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_cputag.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_cputag.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_dot1x.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eav.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eav.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eee.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eee.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_fc.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_fc.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_green.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_green.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_hsb.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_hsb.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_igmp.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_igmp.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_inbwctrl.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_inbwctrl.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_interrupt.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_interrupt.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_led.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_led.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_lut.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_meter.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_meter.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mib.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mirror.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mirror.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_misc.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_misc.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_phy.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_phy.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_port.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_portIsolation.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_portIsolation.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_qos.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_rma.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_scheduling.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_scheduling.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_storm.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_storm.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_svlan.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_trunking.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_trunking.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_unknownMulticast.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_unknownMulticast.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_vlan.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_vlan.h │ │ │ │ │ │ │ ├── rtl8367b_base.h │ │ │ │ │ │ │ └── rtl8367b_reg.h │ │ │ │ │ │ ├── rtl865x │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── rtl865x_log.h │ │ │ │ │ │ ├── rtl865x_proc_debug.c │ │ │ │ │ │ ├── rtl865x_proc_debug.h │ │ │ │ │ │ ├── rtl865xc_swNic.c │ │ │ │ │ │ ├── rtl865xc_swNic.h │ │ │ │ │ │ ├── rtl_dot1x.c │ │ │ │ │ │ ├── rtl_glue.c │ │ │ │ │ │ ├── rtl_multi_wan.c │ │ │ │ │ │ ├── rtl_nic.c │ │ │ │ │ │ └── version.h │ │ │ │ │ └── wireless │ │ │ │ │ │ └── rtl8192cd │ │ │ │ │ │ ├── 1x_kmsm_aes.c │ │ │ │ │ │ ├── 1x_kmsm_hmac.c │ │ │ │ │ │ ├── 1x_md5c.c │ │ │ │ │ │ ├── 1x_md5c.h │ │ │ │ │ │ ├── 1x_rc4.c │ │ │ │ │ │ ├── 1x_rc4.h │ │ │ │ │ │ ├── 8188e_hw.c │ │ │ │ │ │ ├── 8188e_reg.h │ │ │ │ │ │ ├── 8192c_reg.h │ │ │ │ │ │ ├── 8192cd.h │ │ │ │ │ │ ├── 8192cd_11h.c │ │ │ │ │ │ ├── 8192cd_a4_sta.c │ │ │ │ │ │ ├── 8192cd_aes.c │ │ │ │ │ │ ├── 8192cd_br_ext.c │ │ │ │ │ │ ├── 8192cd_br_ext.h │ │ │ │ │ │ ├── 8192cd_cfg.h │ │ │ │ │ │ ├── 8192cd_cfg80211.c │ │ │ │ │ │ ├── 8192cd_cfg80211.h │ │ │ │ │ │ ├── 8192cd_comapi.c │ │ │ │ │ │ ├── 8192cd_comapi.h │ │ │ │ │ │ ├── 8192cd_debug.h │ │ │ │ │ │ ├── 8192cd_dfs.c │ │ │ │ │ │ ├── 8192cd_dfs_det.c │ │ │ │ │ │ ├── 8192cd_dmem.c │ │ │ │ │ │ ├── 8192cd_dmem.h │ │ │ │ │ │ ├── 8192cd_eeprom.c │ │ │ │ │ │ ├── 8192cd_headers.h │ │ │ │ │ │ ├── 8192cd_host.c │ │ │ │ │ │ ├── 8192cd_hw.c │ │ │ │ │ │ ├── 8192cd_hw.h │ │ │ │ │ │ ├── 8192cd_ioctl.c │ │ │ │ │ │ ├── 8192cd_led.c │ │ │ │ │ │ ├── 8192cd_log.h │ │ │ │ │ │ ├── 8192cd_mib.c │ │ │ │ │ │ ├── 8192cd_mib.h │ │ │ │ │ │ ├── 8192cd_mp.c │ │ │ │ │ │ ├── 8192cd_net80211.c │ │ │ │ │ │ ├── 8192cd_net80211.h │ │ │ │ │ │ ├── 8192cd_osdep.c │ │ │ │ │ │ ├── 8192cd_p2p.c │ │ │ │ │ │ ├── 8192cd_p2p.h │ │ │ │ │ │ ├── 8192cd_phyreg.h │ │ │ │ │ │ ├── 8192cd_proc.c │ │ │ │ │ │ ├── 8192cd_profile.h │ │ │ │ │ │ ├── 8192cd_psk.c │ │ │ │ │ │ ├── 8192cd_psk.h │ │ │ │ │ │ ├── 8192cd_psk_hapd.c │ │ │ │ │ │ ├── 8192cd_rx.c │ │ │ │ │ │ ├── 8192cd_rx.h │ │ │ │ │ │ ├── 8192cd_security.c │ │ │ │ │ │ ├── 8192cd_security.h │ │ │ │ │ │ ├── 8192cd_sme.c │ │ │ │ │ │ ├── 8192cd_sta_control.c │ │ │ │ │ │ ├── 8192cd_tkip.c │ │ │ │ │ │ ├── 8192cd_tx.c │ │ │ │ │ │ ├── 8192cd_tx.h │ │ │ │ │ │ ├── 8192cd_util.c │ │ │ │ │ │ ├── 8192cd_util.h │ │ │ │ │ │ ├── 8192d_hw.c │ │ │ │ │ │ ├── 8192d_reg.h │ │ │ │ │ │ ├── 8192e_reg.h │ │ │ │ │ │ ├── 8723b_reg.h │ │ │ │ │ │ ├── 8812_hw.c │ │ │ │ │ │ ├── 8812_reg.h │ │ │ │ │ │ ├── 8812_vht_gen.c │ │ │ │ │ │ ├── 8812_vht_gen.h │ │ │ │ │ │ ├── Beamforming.c │ │ │ │ │ │ ├── Beamforming.h │ │ │ │ │ │ ├── Config.in │ │ │ │ │ │ ├── EdcaTurboCheck.c │ │ │ │ │ │ ├── EdcaTurboCheck.h │ │ │ │ │ │ ├── Hal8188EPwrSeq.c │ │ │ │ │ │ ├── Hal8188EPwrSeq.h │ │ │ │ │ │ ├── Hal8192CDMOutSrc.c │ │ │ │ │ │ ├── Hal8723BPwrSeq.c │ │ │ │ │ │ ├── Hal8723BPwrSeq.h │ │ │ │ │ │ ├── Hal8812PwrSeq.c │ │ │ │ │ │ ├── Hal8812PwrSeq.h │ │ │ │ │ │ ├── Hal8821APwrSeq.c │ │ │ │ │ │ ├── Hal8821APwrSeq.h │ │ │ │ │ │ ├── HalDMOutSrc.c │ │ │ │ │ │ ├── HalPwrSeqCmd.c │ │ │ │ │ │ ├── HalPwrSeqCmd.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.build │ │ │ │ │ │ ├── Makefile.ecos │ │ │ │ │ │ ├── Makefile_nrs │ │ │ │ │ │ ├── RateAdaptive.c │ │ │ │ │ │ ├── WlanHAL │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── HalCfg.h_8192EE │ │ │ │ │ │ │ └── HalCfg.h_8881A │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── 8192E │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192ES.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type1.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type2.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type3.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192Emp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192E.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192Eb.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192Eb.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192E_new.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192Emp_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E.txt │ │ │ │ │ │ │ │ ├── RadioA_8192ES.txt │ │ │ │ │ │ │ │ ├── RadioA_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192Eb.txt │ │ │ │ │ │ │ │ ├── RadioA_8192Emp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192EmpA.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E.txt │ │ │ │ │ │ │ │ ├── RadioB_8192ES.txt │ │ │ │ │ │ │ │ ├── RadioB_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8192Eb.txt │ │ │ │ │ │ │ │ ├── RadioB_8192Emp.txt │ │ │ │ │ │ │ │ ├── RadioB_8192EmpA.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_92EE_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_92EE_new.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP.txt │ │ │ │ │ │ │ │ ├── rtl8192ESfwMP.bin │ │ │ │ │ │ │ │ ├── rtl8192Efw.bin │ │ │ │ │ │ │ │ └── rtl8192EfwMP.bin │ │ │ │ │ │ │ ├── 8197F │ │ │ │ │ │ │ │ ├── AGC_TAB_8197F.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197F_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197Fmp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197Fmp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8197F.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197F.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197F_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197Fmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8197F.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type1.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type5.txt │ │ │ │ │ │ │ │ ├── RadioA_8197F.txt │ │ │ │ │ │ │ │ ├── RadioB_8197F.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type1.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type5.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8197Fmp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ └── rtl8197Ffw.bin │ │ │ │ │ │ │ ├── 8814A │ │ │ │ │ │ │ │ ├── AGC_TAB_8814A.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814A_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814Amp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8814A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814A_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type5.txt │ │ │ │ │ │ │ │ ├── RadioA_8814A.txt │ │ │ │ │ │ │ │ ├── RadioA_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioA_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814A.txt │ │ │ │ │ │ │ │ ├── RadioB_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814A.txt │ │ │ │ │ │ │ │ ├── RadioC_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814A.txt │ │ │ │ │ │ │ │ ├── RadioD_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814A.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_TXBF.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type5.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8814A.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8814Amp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ ├── rtl8814Afw.bin │ │ │ │ │ │ │ │ └── rtl8814AfwMP.bin │ │ │ │ │ │ │ ├── 8822B │ │ │ │ │ │ │ │ ├── AGC_TAB_8822B.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822B_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822Bmp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8822B.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822B_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type1.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type5.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type6.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type7.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8822B.txt │ │ │ │ │ │ │ │ ├── RadioA_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver1_Type1.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type1.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type6.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type7.txt │ │ │ │ │ │ │ │ ├── RadioB_8822B.txt │ │ │ │ │ │ │ │ ├── RadioB_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver1_Type1.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type1.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type6.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type7.txt │ │ │ │ │ │ │ │ ├── RadioC_8822B.txt │ │ │ │ │ │ │ │ ├── RadioC_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioC_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822B.txt │ │ │ │ │ │ │ │ ├── RadioD_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822B.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type1.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type5.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type6.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type7.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8822B.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8822Bmp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ ├── rtl8822Bfw.bin │ │ │ │ │ │ │ │ └── rtl8822BfwMP.bin │ │ │ │ │ │ │ └── 8881A │ │ │ │ │ │ │ │ ├── V700 │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ │ │ ├── V702B │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ │ │ ├── V702B_MP │ │ │ │ │ │ │ │ ├── AGC_TAB_8881ABP.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP_2layer.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AN.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881Am.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881Am.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881AMP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881Am.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881ABP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AMP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AN.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A_new.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881Am.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_A_CUT_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_A_CUT_T.BIN │ │ │ │ │ │ │ │ ├── RadioA_8881ABP.txt │ │ │ │ │ │ │ │ ├── RadioA_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP_2layer.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AN.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881Am.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881ABP.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AMP.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AN.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881A_new.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881A.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881ABP.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AMP.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AN.txt │ │ │ │ │ │ │ │ └── TxPowerTrack_AP_8881AN_extpa.txt │ │ │ │ │ │ │ │ └── V702B_Skyworth │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ ├── HalCfg.c │ │ │ │ │ │ ├── HalCfg.h │ │ │ │ │ │ ├── HalCommon.c │ │ │ │ │ │ ├── HalCommon.h │ │ │ │ │ │ ├── HalDbgCmd.c │ │ │ │ │ │ ├── HalDbgCmd.h │ │ │ │ │ │ ├── HalDef.h │ │ │ │ │ │ ├── HalHeader │ │ │ │ │ │ │ ├── HalComBit.h │ │ │ │ │ │ │ ├── HalComPhyBit.h │ │ │ │ │ │ │ ├── HalComPhyReg.h │ │ │ │ │ │ │ ├── HalComRXDesc.h │ │ │ │ │ │ │ ├── HalComReg.h │ │ │ │ │ │ │ ├── HalComTXDesc.h │ │ │ │ │ │ │ └── HalHWCfg.h │ │ │ │ │ │ ├── HalMac88XX │ │ │ │ │ │ │ ├── halmac_2_platform.h │ │ │ │ │ │ │ ├── halmac_2_platform_temp.h │ │ │ │ │ │ │ ├── halmac_88xx │ │ │ │ │ │ │ │ ├── halmac_8197f │ │ │ │ │ │ │ │ │ ├── halmac_8197f_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8197f_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8197f_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8197f.c │ │ │ │ │ │ │ │ │ └── halmac_func_8197f.h │ │ │ │ │ │ │ │ ├── halmac_8821c │ │ │ │ │ │ │ │ │ ├── RTL8821Cfw_NIC.bin │ │ │ │ │ │ │ │ │ ├── halmac_8821c_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8821c_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8821c_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8821c.c │ │ │ │ │ │ │ │ │ └── halmac_func_8821c.h │ │ │ │ │ │ │ │ ├── halmac_8822b │ │ │ │ │ │ │ │ │ ├── RTL8822Bfw_NIC.bin │ │ │ │ │ │ │ │ │ ├── halmac_8822b_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8822b_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8822b_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8822b.c │ │ │ │ │ │ │ │ │ └── halmac_func_8822b.h │ │ │ │ │ │ │ │ ├── halmac_88xx_cfg.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_pcie.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_pcie.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_sdio.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_sdio.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_usb.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_usb.h │ │ │ │ │ │ │ │ ├── halmac_func_88xx.c │ │ │ │ │ │ │ │ └── halmac_func_88xx.h │ │ │ │ │ │ │ ├── halmac_api.c │ │ │ │ │ │ │ ├── halmac_api.h │ │ │ │ │ │ │ ├── halmac_bit2.h │ │ │ │ │ │ │ ├── halmac_bit_8821c.h │ │ │ │ │ │ │ ├── halmac_bit_8822b.h │ │ │ │ │ │ │ ├── halmac_fw_info.h │ │ │ │ │ │ │ ├── halmac_fw_offload_c2h_ap.h │ │ │ │ │ │ │ ├── halmac_fw_offload_c2h_nic.h │ │ │ │ │ │ │ ├── halmac_fw_offload_h2c_ap.h │ │ │ │ │ │ │ ├── halmac_fw_offload_h2c_nic.h │ │ │ │ │ │ │ ├── halmac_h2c_extra_info_ap.h │ │ │ │ │ │ │ ├── halmac_h2c_extra_info_nic.h │ │ │ │ │ │ │ ├── halmac_hw_cfg.h │ │ │ │ │ │ │ ├── halmac_hw_cfg_temp.h │ │ │ │ │ │ │ ├── halmac_original_c2h_ap.h │ │ │ │ │ │ │ ├── halmac_original_c2h_nic.h │ │ │ │ │ │ │ ├── halmac_original_h2c_ap.h │ │ │ │ │ │ │ ├── halmac_original_h2c_nic.h │ │ │ │ │ │ │ ├── halmac_pcie_reg.h │ │ │ │ │ │ │ ├── halmac_pwr_seq_cmd.h │ │ │ │ │ │ │ ├── halmac_reg2.h │ │ │ │ │ │ │ ├── halmac_reg_8821c.h │ │ │ │ │ │ │ ├── halmac_reg_8822b.h │ │ │ │ │ │ │ ├── halmac_rx_bd_ap.h │ │ │ │ │ │ │ ├── halmac_rx_bd_chip.h │ │ │ │ │ │ │ ├── halmac_rx_bd_nic.h │ │ │ │ │ │ │ ├── halmac_rx_desc_ap.h │ │ │ │ │ │ │ ├── halmac_rx_desc_chip.h │ │ │ │ │ │ │ ├── halmac_rx_desc_nic.h │ │ │ │ │ │ │ ├── halmac_sdio_reg.h │ │ │ │ │ │ │ ├── halmac_tx_bd_ap.h │ │ │ │ │ │ │ ├── halmac_tx_bd_chip.h │ │ │ │ │ │ │ ├── halmac_tx_bd_nic.h │ │ │ │ │ │ │ ├── halmac_tx_desc_ap.h │ │ │ │ │ │ │ ├── halmac_tx_desc_chip.h │ │ │ │ │ │ │ ├── halmac_tx_desc_nic.h │ │ │ │ │ │ │ ├── halmac_type.h │ │ │ │ │ │ │ ├── halmac_usb_reg.h │ │ │ │ │ │ │ ├── halmisc_bb_rf_bit.h │ │ │ │ │ │ │ └── halmisc_bb_rf_reg.h │ │ │ │ │ │ ├── HalMacAPI.c │ │ │ │ │ │ ├── HalMacAPI.h │ │ │ │ │ │ ├── HalMacFunc.c │ │ │ │ │ │ ├── HalMacFunc.h │ │ │ │ │ │ ├── HalPrecomp.h │ │ │ │ │ │ ├── HalPrecompInc.h │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── GeneralDef.h │ │ │ │ │ │ │ ├── PlatformDef.h │ │ │ │ │ │ │ └── StatusCode.h │ │ │ │ │ │ ├── Output │ │ │ │ │ │ │ └── HalLib.h │ │ │ │ │ │ └── RTL88XX │ │ │ │ │ │ │ ├── Hal88XXCfg.h │ │ │ │ │ │ │ ├── Hal88XXDM.c │ │ │ │ │ │ │ ├── Hal88XXDM.h │ │ │ │ │ │ │ ├── Hal88XXDebug.h │ │ │ │ │ │ │ ├── Hal88XXDef.h │ │ │ │ │ │ │ ├── Hal88XXDesc.h │ │ │ │ │ │ │ ├── Hal88XXFirmware.c │ │ │ │ │ │ │ ├── Hal88XXFirmware.h │ │ │ │ │ │ │ ├── Hal88XXGen.c │ │ │ │ │ │ │ ├── Hal88XXHWImg.c │ │ │ │ │ │ │ ├── Hal88XXHWImg.h │ │ │ │ │ │ │ ├── Hal88XXIsr.c │ │ │ │ │ │ │ ├── Hal88XXIsr.h │ │ │ │ │ │ │ ├── Hal88XXPhyCfg.c │ │ │ │ │ │ │ ├── Hal88XXPhyCfg.h │ │ │ │ │ │ │ ├── Hal88XXPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal88XXPwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal88XXReg.h │ │ │ │ │ │ │ ├── Hal88XXRxDesc.c │ │ │ │ │ │ │ ├── Hal88XXRxDesc.h │ │ │ │ │ │ │ ├── Hal88XXTxDesc.c │ │ │ │ │ │ │ ├── Hal88XXTxDesc.h │ │ │ │ │ │ │ ├── Hal88XXVerify.c │ │ │ │ │ │ │ ├── Hal88XXVerify.h │ │ │ │ │ │ │ ├── RTL8192E │ │ │ │ │ │ │ ├── Hal8192EDef.h │ │ │ │ │ │ │ ├── Hal8192EGen.c │ │ │ │ │ │ │ ├── Hal8192EPhyCfg.c │ │ │ │ │ │ │ ├── Hal8192EPhyCfg.h │ │ │ │ │ │ │ ├── Hal8192EPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8192EPwrSeqCmd.h │ │ │ │ │ │ │ ├── RTL8192EE │ │ │ │ │ │ │ │ ├── Hal8192EEDef.h │ │ │ │ │ │ │ │ └── Hal8192EEGen.c │ │ │ │ │ │ │ └── RTL8192ES │ │ │ │ │ │ │ │ ├── Hal8192ESDef.h │ │ │ │ │ │ │ │ └── Hal8192ESGen.c │ │ │ │ │ │ │ ├── RTL8197F │ │ │ │ │ │ │ ├── Hal8197FCfg.h │ │ │ │ │ │ │ ├── Hal8197FDef.h │ │ │ │ │ │ │ ├── Hal8197FFirmware.c │ │ │ │ │ │ │ ├── Hal8197FFirmware.h │ │ │ │ │ │ │ ├── Hal8197FGen.c │ │ │ │ │ │ │ ├── Hal8197FHWImg.c │ │ │ │ │ │ │ ├── Hal8197FHWImg.h │ │ │ │ │ │ │ ├── Hal8197FIsr.c │ │ │ │ │ │ │ ├── Hal8197FPhyCfg.c │ │ │ │ │ │ │ ├── Hal8197FPhyCfg.h │ │ │ │ │ │ │ ├── Hal8197FPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8197FPwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal8197FReg.h │ │ │ │ │ │ │ ├── Hal8197FRxDesc.c │ │ │ │ │ │ │ ├── Hal8197FRxDesc.h │ │ │ │ │ │ │ ├── Hal8197FTxDesc.c │ │ │ │ │ │ │ ├── Hal8197FTxDesc.h │ │ │ │ │ │ │ ├── Hal8197FVerify.c │ │ │ │ │ │ │ ├── Hal8197FVerify.h │ │ │ │ │ │ │ └── RTL8197FE │ │ │ │ │ │ │ │ ├── Hal8197FEDef.h │ │ │ │ │ │ │ │ └── Hal8197FEGen.c │ │ │ │ │ │ │ ├── RTL8814A │ │ │ │ │ │ │ ├── Hal8814ADef.h │ │ │ │ │ │ │ ├── Hal8814AFirmware.c │ │ │ │ │ │ │ ├── Hal8814AFirmware.h │ │ │ │ │ │ │ ├── Hal8814AGen.c │ │ │ │ │ │ │ ├── Hal8814APhyCfg.c │ │ │ │ │ │ │ ├── Hal8814APhyCfg.h │ │ │ │ │ │ │ ├── Hal8814APwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8814APwrSeqCmd.h │ │ │ │ │ │ │ └── RTL8814AE │ │ │ │ │ │ │ │ ├── Hal8814AEDef.h │ │ │ │ │ │ │ │ └── Hal8814AEGen.c │ │ │ │ │ │ │ ├── RTL8822B │ │ │ │ │ │ │ ├── Hal8822BDef.h │ │ │ │ │ │ │ ├── Hal8822BFirmware.c │ │ │ │ │ │ │ ├── Hal8822BFirmware.h │ │ │ │ │ │ │ ├── Hal8822BGen.c │ │ │ │ │ │ │ ├── Hal8822BPhyCfg.c │ │ │ │ │ │ │ ├── Hal8822BPhyCfg.h │ │ │ │ │ │ │ ├── Hal8822BPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8822BPwrSeqCmd.h │ │ │ │ │ │ │ └── RTL8822BE │ │ │ │ │ │ │ │ ├── Hal8822BEDef.h │ │ │ │ │ │ │ │ └── Hal8822BEGen.c │ │ │ │ │ │ │ └── RTL8881A │ │ │ │ │ │ │ ├── Hal8881ACfg.h │ │ │ │ │ │ │ ├── Hal8881ADef.h │ │ │ │ │ │ │ ├── Hal8881AFirmware.c │ │ │ │ │ │ │ ├── Hal8881AFirmware.h │ │ │ │ │ │ │ ├── Hal8881AGen.c │ │ │ │ │ │ │ ├── Hal8881AHWImg.c │ │ │ │ │ │ │ ├── Hal8881AHWImg.h │ │ │ │ │ │ │ ├── Hal8881AIsr.c │ │ │ │ │ │ │ ├── Hal8881APhyCfg.c │ │ │ │ │ │ │ ├── Hal8881APhyCfg.h │ │ │ │ │ │ │ ├── Hal8881APwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8881APwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal8881AReg.h │ │ │ │ │ │ │ ├── Hal8881ARxDesc.c │ │ │ │ │ │ │ ├── Hal8881ARxDesc.h │ │ │ │ │ │ │ ├── Hal8881ATxDesc.c │ │ │ │ │ │ │ ├── Hal8881ATxDesc.h │ │ │ │ │ │ │ ├── Hal8881AVerify.c │ │ │ │ │ │ │ ├── Hal8881AVerify.h │ │ │ │ │ │ │ └── RTL8881AE │ │ │ │ │ │ │ ├── Hal8881AEDef.h │ │ │ │ │ │ │ └── Hal8881AEGen.c │ │ │ │ │ │ ├── Wlan_QoSType.h │ │ │ │ │ │ ├── Wlan_TypeDef.h │ │ │ │ │ │ ├── bin2c.pl │ │ │ │ │ │ ├── change.txt │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── AGC_TAB.txt │ │ │ │ │ │ ├── AGC_TAB_n_92C.txt │ │ │ │ │ │ ├── AGC_TAB_n_hp.txt │ │ │ │ │ │ ├── MACPHY_REG_92C.txt │ │ │ │ │ │ ├── PHY_REG_1T.txt │ │ │ │ │ │ ├── PHY_REG_1T_n.txt │ │ │ │ │ │ ├── PHY_REG_1T_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_2T.txt │ │ │ │ │ │ ├── PHY_REG_2T_n.txt │ │ │ │ │ │ ├── PHY_REG_2T_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_2T_n_lna.txt │ │ │ │ │ │ ├── PHY_REG_MP_n_92C.txt │ │ │ │ │ │ ├── PHY_REG_PG_92C.txt │ │ │ │ │ │ ├── PHY_REG_PG_hp.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c_1.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c_2.txt │ │ │ │ │ │ ├── radio_a_1T.txt │ │ │ │ │ │ ├── radio_a_1T_n.txt │ │ │ │ │ │ ├── radio_a_2T.txt │ │ │ │ │ │ ├── radio_a_2T_n.txt │ │ │ │ │ │ ├── radio_a_2T_n_hp.txt │ │ │ │ │ │ ├── radio_a_2T_n_lna.txt │ │ │ │ │ │ ├── radio_b_2T.txt │ │ │ │ │ │ ├── radio_b_2T_n.txt │ │ │ │ │ │ ├── radio_b_2T_n_hp.txt │ │ │ │ │ │ ├── radio_b_2T_n_lna.txt │ │ │ │ │ │ ├── rtl8192cfw.bin │ │ │ │ │ │ ├── rtl8192cfwn.bin │ │ │ │ │ │ └── rtl8192cfwua.bin │ │ │ │ │ │ ├── data_8723 │ │ │ │ │ │ ├── PHY_REG_PG_8723.txt │ │ │ │ │ │ ├── TXPWR_LMT_8723.txt │ │ │ │ │ │ ├── TxPowerTrack_AP_8723.txt │ │ │ │ │ │ └── rtl8723bfw.bin │ │ │ │ │ │ ├── data_8812 │ │ │ │ │ │ ├── AGC_TAB_8812.txt │ │ │ │ │ │ ├── AGC_TAB_8812_hp.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_default.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_extlna.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_extpa.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_hp.txt │ │ │ │ │ │ ├── MAC_REG_8812.txt │ │ │ │ │ │ ├── MAC_REG_8812_n.txt │ │ │ │ │ │ ├── PHY_REG_8812.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_default.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_extlna.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_extpa.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_MP_8812.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812_hp.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812_new.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_8812.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_8812_hp.txt │ │ │ │ │ │ ├── RadioA_8812.txt │ │ │ │ │ │ ├── RadioA_8812_hp.txt │ │ │ │ │ │ ├── RadioA_8812_n_default.txt │ │ │ │ │ │ ├── RadioA_8812_n_extlna.txt │ │ │ │ │ │ ├── RadioA_8812_n_extpa.txt │ │ │ │ │ │ ├── RadioA_8812_n_hp.txt │ │ │ │ │ │ ├── RadioA_8812_n_ultra_hp.txt │ │ │ │ │ │ ├── RadioB_8812.txt │ │ │ │ │ │ ├── RadioB_8812_hp.txt │ │ │ │ │ │ ├── RadioB_8812_n_default.txt │ │ │ │ │ │ ├── RadioB_8812_n_extlna.txt │ │ │ │ │ │ ├── RadioB_8812_n_extpa.txt │ │ │ │ │ │ ├── RadioB_8812_n_hp.txt │ │ │ │ │ │ ├── RadioB_8812_n_ultra_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_8812_new.txt │ │ │ │ │ │ ├── rtl8812fw.bin │ │ │ │ │ │ ├── rtl8812fw_n.bin │ │ │ │ │ │ └── rtl8812fw_n_2g.bin │ │ │ │ │ │ ├── data_88e │ │ │ │ │ │ ├── PHY_REG_PG_88E.txt │ │ │ │ │ │ ├── PHY_REG_PG_88E_new.txt │ │ │ │ │ │ └── TXPWR_LMT_88E_new.txt │ │ │ │ │ │ ├── data_92d │ │ │ │ │ │ ├── AGC_TAB_2G_n.txt │ │ │ │ │ │ ├── AGC_TAB_5G_n.txt │ │ │ │ │ │ ├── AGC_TAB_n.txt │ │ │ │ │ │ ├── AGC_TAB_n_92d_hp.txt │ │ │ │ │ │ ├── MACPHY_REG.txt │ │ │ │ │ │ ├── PHY_REG_MP_n.txt │ │ │ │ │ │ ├── PHY_REG_PG.txt │ │ │ │ │ │ ├── PHY_REG_PG_92d_hp.txt │ │ │ │ │ │ ├── PHY_REG_PG_CE.txt │ │ │ │ │ │ ├── PHY_REG_PG_FCC.txt │ │ │ │ │ │ ├── PHY_REG_n.txt │ │ │ │ │ │ ├── PHY_REG_n_92d_hp.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_n_92d.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_n_92d_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d_1.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d_2.txt │ │ │ │ │ │ ├── radio_a_intPA.txt │ │ │ │ │ │ ├── radio_a_intPA_GM.txt │ │ │ │ │ │ ├── radio_a_intPA_GM_new.txt │ │ │ │ │ │ ├── radio_a_intPA_GM_new1.txt │ │ │ │ │ │ ├── radio_a_intPA_new.txt │ │ │ │ │ │ ├── radio_a_n.txt │ │ │ │ │ │ ├── radio_a_n_92d_hp.txt │ │ │ │ │ │ ├── radio_b_intPA.txt │ │ │ │ │ │ ├── radio_b_intPA_GM.txt │ │ │ │ │ │ ├── radio_b_intPA_GM_new.txt │ │ │ │ │ │ ├── radio_b_intPA_GM_new1.txt │ │ │ │ │ │ ├── radio_b_intPA_new.txt │ │ │ │ │ │ ├── radio_b_n.txt │ │ │ │ │ │ ├── radio_b_n_92d_hp.txt │ │ │ │ │ │ └── rtl8192dfw_n.bin │ │ │ │ │ │ ├── dot11k │ │ │ │ │ │ ├── 8192cd_11k.c │ │ │ │ │ │ ├── 8192cd_11k_beacon.c │ │ │ │ │ │ ├── 8192cd_11k_link.c │ │ │ │ │ │ └── 8192cd_11k_neighbor.c │ │ │ │ │ │ ├── efuse_97f │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── efuse.c │ │ │ │ │ │ ├── efuse.h │ │ │ │ │ │ ├── rom_def.h │ │ │ │ │ │ ├── string.c │ │ │ │ │ │ └── sys_reg.h │ │ │ │ │ │ ├── ieee802_mib.h │ │ │ │ │ │ ├── mesh_ext │ │ │ │ │ │ ├── hash_table.c │ │ │ │ │ │ ├── hash_table.h │ │ │ │ │ │ ├── mesh.h │ │ │ │ │ │ ├── mesh_11kv.c │ │ │ │ │ │ ├── mesh_11kv.h │ │ │ │ │ │ ├── mesh_cfg.h │ │ │ │ │ │ ├── mesh_proc.c │ │ │ │ │ │ ├── mesh_route.c │ │ │ │ │ │ ├── mesh_route.h │ │ │ │ │ │ ├── mesh_rx.c │ │ │ │ │ │ ├── mesh_security.c │ │ │ │ │ │ ├── mesh_security.h │ │ │ │ │ │ ├── mesh_sme.c │ │ │ │ │ │ ├── mesh_tx.c │ │ │ │ │ │ ├── mesh_util.c │ │ │ │ │ │ └── mesh_util.h │ │ │ │ │ │ ├── odm_inc.h │ │ │ │ │ │ ├── phydm │ │ │ │ │ │ ├── Phydm_document │ │ │ │ │ │ │ ├── PHYDM_Debug_Cmd.xlsx │ │ │ │ │ │ │ └── PHYDM_Driver_SVN_Path.xlsx │ │ │ │ │ │ ├── halhwimg.h │ │ │ │ │ │ ├── halphyrf_ap.c │ │ │ │ │ │ ├── halphyrf_ap.h │ │ │ │ │ │ ├── halphyrf_ce.c │ │ │ │ │ │ ├── halphyrf_ce.h │ │ │ │ │ │ ├── halphyrf_win.c │ │ │ │ │ │ ├── halphyrf_win.h │ │ │ │ │ │ ├── mp_precomp.h │ │ │ │ │ │ ├── phydm.c │ │ │ │ │ │ ├── phydm.h │ │ │ │ │ │ ├── phydm_acs.c │ │ │ │ │ │ ├── phydm_acs.h │ │ │ │ │ │ ├── phydm_adaptivity.c │ │ │ │ │ │ ├── phydm_adaptivity.h │ │ │ │ │ │ ├── phydm_adc_sampling.c │ │ │ │ │ │ ├── phydm_adc_sampling.h │ │ │ │ │ │ ├── phydm_antdect.c │ │ │ │ │ │ ├── phydm_antdect.h │ │ │ │ │ │ ├── phydm_antdiv.c │ │ │ │ │ │ ├── phydm_antdiv.h │ │ │ │ │ │ ├── phydm_beamforming.c │ │ │ │ │ │ ├── phydm_beamforming.h │ │ │ │ │ │ ├── phydm_ccx.c │ │ │ │ │ │ ├── phydm_ccx.h │ │ │ │ │ │ ├── phydm_cfotracking.c │ │ │ │ │ │ ├── phydm_cfotracking.h │ │ │ │ │ │ ├── phydm_debug.c │ │ │ │ │ │ ├── phydm_debug.h │ │ │ │ │ │ ├── phydm_dfs.c │ │ │ │ │ │ ├── phydm_dfs.h │ │ │ │ │ │ ├── phydm_dig.c │ │ │ │ │ │ ├── phydm_dig.h │ │ │ │ │ │ ├── phydm_dynamicbbpowersaving.c │ │ │ │ │ │ ├── phydm_dynamicbbpowersaving.h │ │ │ │ │ │ ├── phydm_dynamictxpower.c │ │ │ │ │ │ ├── phydm_dynamictxpower.h │ │ │ │ │ │ ├── phydm_edcaturbocheck.c │ │ │ │ │ │ ├── phydm_edcaturbocheck.h │ │ │ │ │ │ ├── phydm_features.h │ │ │ │ │ │ ├── phydm_hwconfig.c │ │ │ │ │ │ ├── phydm_hwconfig.h │ │ │ │ │ │ ├── phydm_interface.c │ │ │ │ │ │ ├── phydm_interface.h │ │ │ │ │ │ ├── phydm_iqk.h │ │ │ │ │ │ ├── phydm_kfree.c │ │ │ │ │ │ ├── phydm_kfree.h │ │ │ │ │ │ ├── phydm_noisemonitor.c │ │ │ │ │ │ ├── phydm_noisemonitor.h │ │ │ │ │ │ ├── phydm_pathdiv.c │ │ │ │ │ │ ├── phydm_pathdiv.h │ │ │ │ │ │ ├── phydm_powertracking_ap.c │ │ │ │ │ │ ├── phydm_powertracking_ap.h │ │ │ │ │ │ ├── phydm_powertracking_ce.c │ │ │ │ │ │ ├── phydm_powertracking_ce.h │ │ │ │ │ │ ├── phydm_powertracking_win.c │ │ │ │ │ │ ├── phydm_powertracking_win.h │ │ │ │ │ │ ├── phydm_pre_define.h │ │ │ │ │ │ ├── phydm_precomp.h │ │ │ │ │ │ ├── phydm_rainfo.c │ │ │ │ │ │ ├── phydm_rainfo.h │ │ │ │ │ │ ├── phydm_reg.h │ │ │ │ │ │ ├── phydm_regdefine11ac.h │ │ │ │ │ │ ├── phydm_regdefine11n.h │ │ │ │ │ │ ├── phydm_types.h │ │ │ │ │ │ ├── rtchnlplan.c │ │ │ │ │ │ ├── rtchnlplan.h │ │ │ │ │ │ ├── rtl8188e │ │ │ │ │ │ │ ├── hal8188erateadaptive.c │ │ │ │ │ │ │ ├── hal8188erateadaptive.h │ │ │ │ │ │ │ ├── hal8188ereg.h │ │ │ │ │ │ │ ├── halhwimg8188e_bb.c │ │ │ │ │ │ │ ├── halhwimg8188e_bb.h │ │ │ │ │ │ │ ├── halhwimg8188e_mac.c │ │ │ │ │ │ │ ├── halhwimg8188e_mac.h │ │ │ │ │ │ │ ├── halhwimg8188e_rf.c │ │ │ │ │ │ │ ├── halhwimg8188e_rf.h │ │ │ │ │ │ │ ├── halhwimg8188e_s_fw.c │ │ │ │ │ │ │ ├── halhwimg8188e_s_fw.h │ │ │ │ │ │ │ ├── halhwimg8188e_t_fw.c │ │ │ │ │ │ │ ├── halhwimg8188e_t_fw.h │ │ │ │ │ │ │ ├── halphyrf_8188e_ap.c │ │ │ │ │ │ │ ├── halphyrf_8188e_ap.h │ │ │ │ │ │ │ ├── halphyrf_8188e_ce.c │ │ │ │ │ │ │ ├── halphyrf_8188e_ce.h │ │ │ │ │ │ │ ├── halphyrf_8188e_win.c │ │ │ │ │ │ │ ├── halphyrf_8188e_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8188e.c │ │ │ │ │ │ │ ├── phydm_regconfig8188e.h │ │ │ │ │ │ │ ├── phydm_rtl8188e.c │ │ │ │ │ │ │ ├── phydm_rtl8188e.h │ │ │ │ │ │ │ └── version_rtl8188e.h │ │ │ │ │ │ ├── rtl8188f │ │ │ │ │ │ │ ├── hal8188freg.h │ │ │ │ │ │ │ ├── halhwimg8188f_bb.c │ │ │ │ │ │ │ ├── halhwimg8188f_bb.h │ │ │ │ │ │ │ ├── halhwimg8188f_fw.c │ │ │ │ │ │ │ ├── halhwimg8188f_fw.h │ │ │ │ │ │ │ ├── halhwimg8188f_mac.c │ │ │ │ │ │ │ ├── halhwimg8188f_mac.h │ │ │ │ │ │ │ ├── halhwimg8188f_rf.c │ │ │ │ │ │ │ ├── halhwimg8188f_rf.h │ │ │ │ │ │ │ ├── halphyrf_8188f.c │ │ │ │ │ │ │ ├── halphyrf_8188f.h │ │ │ │ │ │ │ ├── phydm_regconfig8188f.c │ │ │ │ │ │ │ ├── phydm_regconfig8188f.h │ │ │ │ │ │ │ ├── phydm_rtl8188f.c │ │ │ │ │ │ │ ├── phydm_rtl8188f.h │ │ │ │ │ │ │ └── version_rtl8188f.h │ │ │ │ │ │ ├── rtl8192e │ │ │ │ │ │ │ ├── hal8192ereg.h │ │ │ │ │ │ │ ├── halhwimg8192e_bb.c │ │ │ │ │ │ │ ├── halhwimg8192e_bb.h │ │ │ │ │ │ │ ├── halhwimg8192e_fw.c │ │ │ │ │ │ │ ├── halhwimg8192e_fw.h │ │ │ │ │ │ │ ├── halhwimg8192e_mac.c │ │ │ │ │ │ │ ├── halhwimg8192e_mac.h │ │ │ │ │ │ │ ├── halhwimg8192e_rf.c │ │ │ │ │ │ │ ├── halhwimg8192e_rf.h │ │ │ │ │ │ │ ├── halphyrf_8192e_ap.c │ │ │ │ │ │ │ ├── halphyrf_8192e_ap.h │ │ │ │ │ │ │ ├── halphyrf_8192e_ce.c │ │ │ │ │ │ │ ├── halphyrf_8192e_ce.h │ │ │ │ │ │ │ ├── halphyrf_8192e_win.c │ │ │ │ │ │ │ ├── halphyrf_8192e_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8192e.c │ │ │ │ │ │ │ ├── phydm_regconfig8192e.h │ │ │ │ │ │ │ ├── phydm_rtl8192e.c │ │ │ │ │ │ │ ├── phydm_rtl8192e.h │ │ │ │ │ │ │ └── version_rtl8192e.h │ │ │ │ │ │ ├── rtl8197f │ │ │ │ │ │ │ ├── Hal8197FPhyReg.h │ │ │ │ │ │ │ ├── halhwimg8197f_bb.c │ │ │ │ │ │ │ ├── halhwimg8197f_bb.h │ │ │ │ │ │ │ ├── halhwimg8197f_mac.c │ │ │ │ │ │ │ ├── halhwimg8197f_mac.h │ │ │ │ │ │ │ ├── halhwimg8197f_rf.c │ │ │ │ │ │ │ ├── halhwimg8197f_rf.h │ │ │ │ │ │ │ ├── halphyrf_8197f.c │ │ │ │ │ │ │ ├── halphyrf_8197f.h │ │ │ │ │ │ │ ├── phydm_hal_api8197f.c │ │ │ │ │ │ │ ├── phydm_hal_api8197f.h │ │ │ │ │ │ │ ├── phydm_iqk_8197f.c │ │ │ │ │ │ │ ├── phydm_iqk_8197f.h │ │ │ │ │ │ │ ├── phydm_regconfig8197f.c │ │ │ │ │ │ │ ├── phydm_regconfig8197f.h │ │ │ │ │ │ │ ├── phydm_rtl8197f.c │ │ │ │ │ │ │ ├── phydm_rtl8197f.h │ │ │ │ │ │ │ └── version_rtl8197f.h │ │ │ │ │ │ ├── rtl8703b │ │ │ │ │ │ │ ├── halhwimg8703b_bb.c │ │ │ │ │ │ │ ├── halhwimg8703b_bb.h │ │ │ │ │ │ │ ├── halhwimg8703b_fw.c │ │ │ │ │ │ │ ├── halhwimg8703b_fw.h │ │ │ │ │ │ │ ├── halhwimg8703b_mac.c │ │ │ │ │ │ │ ├── halhwimg8703b_mac.h │ │ │ │ │ │ │ ├── halhwimg8703b_rf.c │ │ │ │ │ │ │ ├── halhwimg8703b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8703b.c │ │ │ │ │ │ │ ├── halphyrf_8703b.h │ │ │ │ │ │ │ ├── phydm_regconfig8703b.c │ │ │ │ │ │ │ ├── phydm_regconfig8703b.h │ │ │ │ │ │ │ └── version_rtl8703b.h │ │ │ │ │ │ ├── rtl8723b │ │ │ │ │ │ │ ├── hal8723breg.h │ │ │ │ │ │ │ ├── halhwimg8723b_bb.c │ │ │ │ │ │ │ ├── halhwimg8723b_bb.h │ │ │ │ │ │ │ ├── halhwimg8723b_fw.c │ │ │ │ │ │ │ ├── halhwimg8723b_fw.h │ │ │ │ │ │ │ ├── halhwimg8723b_mac.c │ │ │ │ │ │ │ ├── halhwimg8723b_mac.h │ │ │ │ │ │ │ ├── halhwimg8723b_mp.c │ │ │ │ │ │ │ ├── halhwimg8723b_mp.h │ │ │ │ │ │ │ ├── halhwimg8723b_rf.c │ │ │ │ │ │ │ ├── halhwimg8723b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8723b_ap.c │ │ │ │ │ │ │ ├── halphyrf_8723b_ap.h │ │ │ │ │ │ │ ├── halphyrf_8723b_ce.c │ │ │ │ │ │ │ ├── halphyrf_8723b_ce.h │ │ │ │ │ │ │ ├── halphyrf_8723b_win.c │ │ │ │ │ │ │ ├── halphyrf_8723b_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8723b.c │ │ │ │ │ │ │ ├── phydm_regconfig8723b.h │ │ │ │ │ │ │ ├── phydm_rtl8723b.c │ │ │ │ │ │ │ ├── phydm_rtl8723b.h │ │ │ │ │ │ │ └── version_rtl8723b.h │ │ │ │ │ │ ├── rtl8723d │ │ │ │ │ │ │ ├── hal8723dreg.h │ │ │ │ │ │ │ ├── halhwimg8723d_bb.c │ │ │ │ │ │ │ ├── halhwimg8723d_bb.h │ │ │ │ │ │ │ ├── halhwimg8723d_fw.c │ │ │ │ │ │ │ ├── halhwimg8723d_fw.h │ │ │ │ │ │ │ ├── halhwimg8723d_mac.c │ │ │ │ │ │ │ ├── halhwimg8723d_mac.h │ │ │ │ │ │ │ ├── halhwimg8723d_rf.c │ │ │ │ │ │ │ ├── halhwimg8723d_rf.h │ │ │ │ │ │ │ ├── halphyrf_8723d.c │ │ │ │ │ │ │ ├── halphyrf_8723d.h │ │ │ │ │ │ │ ├── phydm_regconfig8723d.c │ │ │ │ │ │ │ ├── phydm_regconfig8723d.h │ │ │ │ │ │ │ ├── phydm_rtl8723d.c │ │ │ │ │ │ │ ├── phydm_rtl8723d.h │ │ │ │ │ │ │ └── version_rtl8723d.h │ │ │ │ │ │ ├── rtl8812a │ │ │ │ │ │ │ ├── halhwimg8812a_bb.c │ │ │ │ │ │ │ ├── halhwimg8812a_bb.h │ │ │ │ │ │ │ ├── halhwimg8812a_fw.c │ │ │ │ │ │ │ ├── halhwimg8812a_fw.h │ │ │ │ │ │ │ ├── halhwimg8812a_mac.c │ │ │ │ │ │ │ ├── halhwimg8812a_mac.h │ │ │ │ │ │ │ ├── halhwimg8812a_rf.c │ │ │ │ │ │ │ ├── halhwimg8812a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8812a_ap.c │ │ │ │ │ │ │ ├── halphyrf_8812a_ap.h │ │ │ │ │ │ │ ├── halphyrf_8812a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8812a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8812a_win.c │ │ │ │ │ │ │ ├── halphyrf_8812a_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8812a.c │ │ │ │ │ │ │ ├── phydm_regconfig8812a.h │ │ │ │ │ │ │ ├── phydm_rtl8812a.c │ │ │ │ │ │ │ ├── phydm_rtl8812a.h │ │ │ │ │ │ │ └── version_rtl8812a.h │ │ │ │ │ │ ├── rtl8814a │ │ │ │ │ │ │ ├── hal8814areg_odm.h │ │ │ │ │ │ │ ├── halhwimg8814a_bb.c │ │ │ │ │ │ │ ├── halhwimg8814a_bb.h │ │ │ │ │ │ │ ├── halhwimg8814a_fw.c │ │ │ │ │ │ │ ├── halhwimg8814a_fw.h │ │ │ │ │ │ │ ├── halhwimg8814a_mac.c │ │ │ │ │ │ │ ├── halhwimg8814a_mac.h │ │ │ │ │ │ │ ├── halhwimg8814a_rf.c │ │ │ │ │ │ │ ├── halhwimg8814a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8814a_ap.c │ │ │ │ │ │ │ ├── halphyrf_8814a_ap.h │ │ │ │ │ │ │ ├── halphyrf_8814a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8814a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8814a_win.c │ │ │ │ │ │ │ ├── halphyrf_8814a_win.h │ │ │ │ │ │ │ ├── phydm_iqk_8814a.c │ │ │ │ │ │ │ ├── phydm_iqk_8814a.h │ │ │ │ │ │ │ ├── phydm_regconfig8814a.c │ │ │ │ │ │ │ ├── phydm_regconfig8814a.h │ │ │ │ │ │ │ ├── phydm_rtl8814a.c │ │ │ │ │ │ │ ├── phydm_rtl8814a.h │ │ │ │ │ │ │ └── version_rtl8814a.h │ │ │ │ │ │ ├── rtl8821a │ │ │ │ │ │ │ ├── halhwimg8821a_bb.c │ │ │ │ │ │ │ ├── halhwimg8821a_bb.h │ │ │ │ │ │ │ ├── halhwimg8821a_fw.c │ │ │ │ │ │ │ ├── halhwimg8821a_fw.h │ │ │ │ │ │ │ ├── halhwimg8821a_mac.c │ │ │ │ │ │ │ ├── halhwimg8821a_mac.h │ │ │ │ │ │ │ ├── halhwimg8821a_rf.c │ │ │ │ │ │ │ ├── halhwimg8821a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8821a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8821a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8821a_win.c │ │ │ │ │ │ │ ├── halphyrf_8821a_win.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ap.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ap.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ce.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ce.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_win.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8821a.c │ │ │ │ │ │ │ ├── phydm_regconfig8821a.h │ │ │ │ │ │ │ ├── phydm_rtl8821a.c │ │ │ │ │ │ │ ├── phydm_rtl8821a.h │ │ │ │ │ │ │ └── version_rtl8821a.h │ │ │ │ │ │ ├── rtl8821c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_bb.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_bb.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_fw.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_fw.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_mac.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_mac.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_rf.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_rf.h │ │ │ │ │ │ │ ├── phydm_hal_api8821c.c │ │ │ │ │ │ │ ├── phydm_hal_api8821c.h │ │ │ │ │ │ │ ├── phydm_iqk_8821c.c │ │ │ │ │ │ │ ├── phydm_iqk_8821c.h │ │ │ │ │ │ │ ├── phydm_regconfig8821c.c │ │ │ │ │ │ │ ├── phydm_regconfig8821c.h │ │ │ │ │ │ │ └── version_rtl8821c.h │ │ │ │ │ │ ├── rtl8822b │ │ │ │ │ │ │ ├── halhwimg8822b_bb.c │ │ │ │ │ │ │ ├── halhwimg8822b_bb.h │ │ │ │ │ │ │ ├── halhwimg8822b_fw.c │ │ │ │ │ │ │ ├── halhwimg8822b_fw.h │ │ │ │ │ │ │ ├── halhwimg8822b_mac.c │ │ │ │ │ │ │ ├── halhwimg8822b_mac.h │ │ │ │ │ │ │ ├── halhwimg8822b_rf.c │ │ │ │ │ │ │ ├── halhwimg8822b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8822b.c │ │ │ │ │ │ │ ├── halphyrf_8822b.h │ │ │ │ │ │ │ ├── phydm_hal_api8822b.c │ │ │ │ │ │ │ ├── phydm_hal_api8822b.h │ │ │ │ │ │ │ ├── phydm_iqk_8822b.c │ │ │ │ │ │ │ ├── phydm_iqk_8822b.h │ │ │ │ │ │ │ ├── phydm_regconfig8822b.c │ │ │ │ │ │ │ ├── phydm_regconfig8822b.h │ │ │ │ │ │ │ ├── phydm_rtl8822b.c │ │ │ │ │ │ │ ├── phydm_rtl8822b.h │ │ │ │ │ │ │ └── version_rtl8822b.h │ │ │ │ │ │ └── txbf │ │ │ │ │ │ │ ├── halcomtxbf.c │ │ │ │ │ │ │ ├── halcomtxbf.h │ │ │ │ │ │ │ ├── haltxbf8192e.c │ │ │ │ │ │ │ ├── haltxbf8192e.h │ │ │ │ │ │ │ ├── haltxbf8814a.c │ │ │ │ │ │ │ ├── haltxbf8814a.h │ │ │ │ │ │ │ ├── haltxbf8822b.c │ │ │ │ │ │ │ ├── haltxbf8822b.h │ │ │ │ │ │ │ ├── haltxbfinterface.c │ │ │ │ │ │ │ ├── haltxbfinterface.h │ │ │ │ │ │ │ ├── haltxbfjaguar.c │ │ │ │ │ │ │ ├── haltxbfjaguar.h │ │ │ │ │ │ │ ├── phydm_hal_txbf_api.c │ │ │ │ │ │ │ └── phydm_hal_txbf_api.h │ │ │ │ │ │ ├── platform.mk │ │ │ │ │ │ ├── romeperf.c │ │ │ │ │ │ ├── romeperf.h │ │ │ │ │ │ ├── rtl8672_port.c │ │ │ │ │ │ ├── rtl_types.h │ │ │ │ │ │ ├── rtw_android.c │ │ │ │ │ │ ├── rtw_android.h │ │ │ │ │ │ ├── sha256.c │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ ├── to_phydm_trunk │ │ │ │ │ │ ├── tplmt2h.pl │ │ │ │ │ │ ├── typedef.h │ │ │ │ │ │ └── wifi.h │ │ │ │ ├── spi │ │ │ │ │ └── sheipa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dw_common.h │ │ │ │ │ │ ├── modules.builtin │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── spi-sheipa.c │ │ │ │ │ │ └── spi-sheipa.h │ │ │ │ ├── usb │ │ │ │ │ ├── dwc_otg │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dummy_audio.c │ │ │ │ │ │ ├── dwc_otg_attr.c │ │ │ │ │ │ ├── dwc_otg_attr.h │ │ │ │ │ │ ├── dwc_otg_cil.c │ │ │ │ │ │ ├── dwc_otg_cil.h │ │ │ │ │ │ ├── dwc_otg_cil_def.h │ │ │ │ │ │ ├── dwc_otg_cil_intr.c │ │ │ │ │ │ ├── dwc_otg_driver.c │ │ │ │ │ │ ├── dwc_otg_driver.h │ │ │ │ │ │ ├── dwc_otg_hcd.c │ │ │ │ │ │ ├── dwc_otg_hcd.h │ │ │ │ │ │ ├── dwc_otg_hcd_def.h │ │ │ │ │ │ ├── dwc_otg_hcd_intr.c │ │ │ │ │ │ ├── dwc_otg_hcd_queue.c │ │ │ │ │ │ ├── dwc_otg_pcd.c │ │ │ │ │ │ ├── dwc_otg_pcd.h │ │ │ │ │ │ ├── dwc_otg_pcd_intr.c │ │ │ │ │ │ ├── dwc_otg_plat.h │ │ │ │ │ │ ├── dwc_otg_regs.h │ │ │ │ │ │ ├── dwc_otg_regs_src.h │ │ │ │ │ │ ├── lm.c │ │ │ │ │ │ ├── lm.h │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── otg_dbg.h │ │ │ │ │ │ ├── rtk_otg_autodet.c │ │ │ │ │ │ ├── rtk_otg_autodet.h │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── dwc_otg_test.pm │ │ │ │ │ │ │ ├── test_mod_param.pl │ │ │ │ │ │ │ └── test_sysfs.pl │ │ │ │ │ └── host │ │ │ │ │ │ ├── ehci-rtl819x.c │ │ │ │ │ │ └── ohci-rtl819x.c │ │ │ │ └── watchdog │ │ │ │ │ └── rtl819x_wdt.c │ │ │ ├── include │ │ │ │ ├── nand_spi │ │ │ │ │ ├── ecc_ctrl.h │ │ │ │ │ ├── nand_spi.h │ │ │ │ │ ├── nand_spi_ctrl.h │ │ │ │ │ ├── nand_spi_gd.h │ │ │ │ │ ├── nand_spi_util.h │ │ │ │ │ ├── soc.h │ │ │ │ │ └── util.h │ │ │ │ ├── net │ │ │ │ │ └── rtl │ │ │ │ │ │ ├── fastpath │ │ │ │ │ │ ├── fast_br.h │ │ │ │ │ │ └── fastpath_core.h │ │ │ │ │ │ ├── features │ │ │ │ │ │ ├── fast_bridge.h │ │ │ │ │ │ ├── lan_restrict.h │ │ │ │ │ │ ├── rtl_dev_stats.h │ │ │ │ │ │ ├── rtl_features.h │ │ │ │ │ │ ├── rtl_igmp_ps_hook.h │ │ │ │ │ │ ├── rtl_private_struct.h │ │ │ │ │ │ ├── rtl_ps_hooks.h │ │ │ │ │ │ ├── rtl_ps_log.h │ │ │ │ │ │ └── rtl_sched_hooks.h │ │ │ │ │ │ ├── rtk_stp.h │ │ │ │ │ │ ├── rtk_vlan.h │ │ │ │ │ │ ├── rtl8198c_arp_ipv6_api.h │ │ │ │ │ │ ├── rtl8198c_route_ipv6_api.h │ │ │ │ │ │ ├── rtl865x_arp_api.h │ │ │ │ │ │ ├── rtl865x_fdb_api.h │ │ │ │ │ │ ├── rtl865x_igmpsnooping.h │ │ │ │ │ │ ├── rtl865x_igmpsnooping_glue.h │ │ │ │ │ │ ├── rtl865x_ip_api.h │ │ │ │ │ │ ├── rtl865x_localPublic.h │ │ │ │ │ │ ├── rtl865x_multicast.h │ │ │ │ │ │ ├── rtl865x_multipleWan_api.h │ │ │ │ │ │ ├── rtl865x_nat.h │ │ │ │ │ │ ├── rtl865x_netif.h │ │ │ │ │ │ ├── rtl865x_outputQueue.h │ │ │ │ │ │ ├── rtl865x_ppp.h │ │ │ │ │ │ ├── rtl865x_route_api.h │ │ │ │ │ │ ├── rtl_dnstrap.h │ │ │ │ │ │ ├── rtl_dot1x.h │ │ │ │ │ │ ├── rtl_glue.h │ │ │ │ │ │ ├── rtl_multi_wan.h │ │ │ │ │ │ ├── rtl_nf.h │ │ │ │ │ │ ├── rtl_nic.h │ │ │ │ │ │ ├── rtl_queue.h │ │ │ │ │ │ ├── rtl_sendfile.h │ │ │ │ │ │ └── rtl_types.h │ │ │ │ ├── net80211 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.kernel │ │ │ │ │ ├── _ieee80211.h │ │ │ │ │ ├── ieee80211.h │ │ │ │ │ ├── ieee80211_crypto.h │ │ │ │ │ └── ieee80211_ioctl.h │ │ │ │ └── uapi │ │ │ │ │ └── linux │ │ │ │ │ └── netfilter_ipv4 │ │ │ │ │ ├── ip_conntrack_pptp.h │ │ │ │ │ ├── ipt_TRIGGERPORT.h │ │ │ │ │ └── listhelp.h │ │ │ └── net │ │ │ │ └── rtl │ │ │ │ └── features │ │ │ │ ├── Makefile │ │ │ │ ├── fast_bridge.c │ │ │ │ ├── lan_restrict.c │ │ │ │ ├── rtl_features.c │ │ │ │ ├── rtl_nf_connGC.c │ │ │ │ └── rtl_ps_hooks.c │ │ ├── image │ │ │ ├── Makefile │ │ │ └── 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 │ │ ├── patches-3.10 │ │ │ ├── 100-rlx_build.patch │ │ │ ├── 101-rtkmips_arch_add.patch │ │ │ ├── 102-rtkmips_98C_and_GIC_fix.patch │ │ │ ├── 103-rtkmips_arch_add_97f.patch │ │ │ ├── 110-rlx_flash.patch │ │ │ ├── 111-rlx_819x_sw.patch │ │ │ ├── 112_rlx_nand_flash.patch │ │ │ ├── 113_rlx_nand_flash_chip.patch │ │ │ ├── 114-rlx_819x_usb.patch │ │ │ ├── 115-rlx-819x_usb_otg.patch │ │ │ ├── 116-rlx-8192cd-add-config.patch │ │ │ ├── 117-rlx-export.dev_change_name.patch │ │ │ ├── 120-rtk-819x_watchdog.patch │ │ │ ├── 125-rlx-819x_usb_otg_alignment_fix.patch │ │ │ ├── 126-rlx-819x_usb_otg_smp_fix.patch │ │ │ ├── 205-MIPS-98c-rcu-stall-fix.patch │ │ │ ├── 300-bluetooth_driver.patch │ │ │ ├── 400-rtl-smb_speedup.patch │ │ │ ├── 402-rtl_sendfile-kernel.patch │ │ │ ├── 500-netfilter_layer7_coderefine.patch │ │ │ ├── 600-rtl8197f-spi.patch │ │ │ ├── 601-rtl8197f-uart.patch │ │ │ ├── 900-realtek-dma-operation.patch │ │ │ ├── 990-watchdog_panic_workaround.patch │ │ │ ├── 991-realtek-hw_crypto.patch │ │ │ ├── 992-rtk-spi.patch │ │ │ ├── 993-realtek-hw_crypto_cbc_fix.patch │ │ │ ├── 995-realtek-hw_crypto_refine_lock.patch │ │ │ ├── 996-kernel_exception_reboot.patch │ │ │ ├── 9990-rtl_fastpath.patch │ │ │ ├── 9991-rtl_hw_napt.patch │ │ │ ├── 9992-rtl_dev_stats.patch │ │ │ ├── 9993-rtl_hw_qos.patch │ │ │ ├── 9994-rtl_hw_napt_fixed.patch │ │ │ └── 9995-rtl_hw_multicast.patch │ │ ├── rtl8198c │ │ │ ├── config-3.10 │ │ │ ├── kconfig │ │ │ │ ├── 98CD-config-3.10 │ │ │ │ ├── 98CS-config-3.10 │ │ │ │ ├── 98C_81948814RFE2-config-3.10 │ │ │ │ └── 98C_81948814R_onBoard-config-3.10 │ │ │ ├── profiles │ │ │ │ └── 120-AP.mk │ │ │ └── target.mk │ │ └── rtl8954e │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ └── 120-AP.mk │ │ │ └── target.mk │ ├── rtkmipsel │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── system │ │ │ │ ├── init.d │ │ │ │ │ ├── setethmac │ │ │ │ │ └── swdone │ │ │ │ └── uci-defaults │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── files │ │ │ ├── arch │ │ │ │ ├── mips │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── mach-realtek │ │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ │ ├── kernel-entry-init.h │ │ │ │ │ │ │ ├── rtl8198c │ │ │ │ │ │ │ │ └── cpu-feature-overrides.h │ │ │ │ │ │ │ └── war.h │ │ │ │ │ │ │ └── mach-rtl8197f │ │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ │ ├── rtl8197f │ │ │ │ │ │ │ └── cpu-feature-overrides.h │ │ │ │ │ │ │ └── war.h │ │ │ │ │ ├── realtek │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Kconfig.legacy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ │ ├── flushall.c │ │ │ │ │ │ ├── gcmp.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── irq-gic.c │ │ │ │ │ │ ├── irq-ictl.c │ │ │ │ │ │ ├── mach_rtl8198c.c │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── pci-fixup.c │ │ │ │ │ │ ├── pci-ops.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── rtl8198c.c │ │ │ │ │ │ ├── sata.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── setup.c │ │ │ │ │ │ ├── smp-amon.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ └── xhci-usb.c │ │ │ │ │ └── rtl8197f │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Kconfig.legacy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── bspchip.h │ │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ │ ├── bspinit.h │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── irq-gpio.c │ │ │ │ │ │ ├── irq-ictl.c │ │ │ │ │ │ ├── irq.c │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── mach_rtl819x.c │ │ │ │ │ │ ├── modules.builtin │ │ │ │ │ │ ├── mtd.c │ │ │ │ │ │ ├── pci-fixup.c │ │ │ │ │ │ ├── pci-ops.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── setup.c │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ └── war.h │ │ │ │ └── rlx │ │ │ │ │ ├── Kbuild │ │ │ │ │ ├── Kbuild.platforms │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.debug │ │ │ │ │ ├── Kconfig.rlx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boot │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── compressed │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── calc_vmlinuz_load_addr.c │ │ │ │ │ │ ├── dbg.c │ │ │ │ │ │ ├── decompress.c │ │ │ │ │ │ ├── dummy.c │ │ │ │ │ │ ├── head.S │ │ │ │ │ │ ├── ld.script │ │ │ │ │ │ ├── uart-16550.c │ │ │ │ │ │ └── uart-alchemy.c │ │ │ │ │ ├── ecoff.h │ │ │ │ │ └── elf2ecoff.c │ │ │ │ │ ├── config.cpu │ │ │ │ │ ├── config.in │ │ │ │ │ ├── configs │ │ │ │ │ └── rlx_defconfig │ │ │ │ │ ├── fw │ │ │ │ │ ├── arc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arc_con.c │ │ │ │ │ │ ├── cmdline.c │ │ │ │ │ │ ├── env.c │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ ├── identify.c │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── promlib.c │ │ │ │ │ │ ├── salone.c │ │ │ │ │ │ ├── time.c │ │ │ │ │ │ └── tree.c │ │ │ │ │ ├── cfe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cfe_api.c │ │ │ │ │ │ └── cfe_api_int.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── call_o32.S │ │ │ │ │ │ └── cmdline.c │ │ │ │ │ └── sni │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── sniprom.c │ │ │ │ │ ├── include │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── abi.h │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ ├── arch_hweight.h │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ ├── asmmacro-32.h │ │ │ │ │ │ ├── asmmacro-64.h │ │ │ │ │ │ ├── asmmacro.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── barrier.h │ │ │ │ │ │ ├── bcache.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bmips.h │ │ │ │ │ │ ├── bootinfo.h │ │ │ │ │ │ ├── branch.h │ │ │ │ │ │ ├── break.h │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── bugs.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ ├── cacheops.h │ │ │ │ │ │ ├── cevt-rlx.h │ │ │ │ │ │ ├── checksum.h │ │ │ │ │ │ ├── clkdev.h │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── cmp.h │ │ │ │ │ │ ├── cmpxchg.h │ │ │ │ │ │ ├── compat-signal.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── cop2.h │ │ │ │ │ │ ├── cpu-features.h │ │ │ │ │ │ ├── cpu-info.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── cputime.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── div64.h │ │ │ │ │ │ ├── dma-coherence.h │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── ds1287.h │ │ │ │ │ │ ├── dsp.h │ │ │ │ │ │ ├── edac.h │ │ │ │ │ │ ├── elf.h │ │ │ │ │ │ ├── emergency-restart.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── exec.h │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ ├── fixmap.h │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ ├── fpregdef.h │ │ │ │ │ │ ├── fpu.h │ │ │ │ │ │ ├── fpu_emulator.h │ │ │ │ │ │ ├── ftrace.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── fw │ │ │ │ │ │ │ ├── arc │ │ │ │ │ │ │ │ ├── hinv.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ │ ├── cfe │ │ │ │ │ │ │ │ ├── cfe_api.h │ │ │ │ │ │ │ │ └── cfe_error.h │ │ │ │ │ │ │ └── fw.h │ │ │ │ │ │ ├── gcmpregs.h │ │ │ │ │ │ ├── gic.h │ │ │ │ │ │ ├── gio_device.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── gt64120.h │ │ │ │ │ │ ├── hardirq.h │ │ │ │ │ │ ├── hazards.h │ │ │ │ │ │ ├── highmem.h │ │ │ │ │ │ ├── hugetlb.h │ │ │ │ │ │ ├── hw_irq.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ide.h │ │ │ │ │ │ ├── idle.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_cpu.h │ │ │ │ │ │ ├── irq_gt641xx.h │ │ │ │ │ │ ├── irq_regs.h │ │ │ │ │ │ ├── irq_vec.h │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ ├── isadep.h │ │ │ │ │ │ ├── jazz.h │ │ │ │ │ │ ├── jazzdma.h │ │ │ │ │ │ ├── jump_label.h │ │ │ │ │ │ ├── kdebug.h │ │ │ │ │ │ ├── kexec.h │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── kmap_types.h │ │ │ │ │ │ ├── kprobes.h │ │ │ │ │ │ ├── kspd.h │ │ │ │ │ │ ├── kvm_host.h │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── local64.h │ │ │ │ │ │ ├── m48t37.h │ │ │ │ │ │ ├── mach-generic │ │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ │ ├── dma-coherence.h │ │ │ │ │ │ │ ├── floppy.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── ide.h │ │ │ │ │ │ │ ├── ioremap.h │ │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ │ ├── kernel-entry-init.h │ │ │ │ │ │ │ ├── kmalloc.h │ │ │ │ │ │ │ ├── mangle-port.h │ │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ │ ├── spaces.h │ │ │ │ │ │ │ └── topology.h │ │ │ │ │ │ ├── mc146818-time.h │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ ├── mips-boards │ │ │ │ │ │ │ ├── bonito64.h │ │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ │ ├── launch.h │ │ │ │ │ │ │ ├── malta.h │ │ │ │ │ │ │ ├── maltaint.h │ │ │ │ │ │ │ ├── msc01_pci.h │ │ │ │ │ │ │ ├── piix4.h │ │ │ │ │ │ │ ├── sead3int.h │ │ │ │ │ │ │ └── sim.h │ │ │ │ │ │ ├── mips_machine.h │ │ │ │ │ │ ├── mips_mt.h │ │ │ │ │ │ ├── mipsmtregs.h │ │ │ │ │ │ ├── mipsprom.h │ │ │ │ │ │ ├── mmcr.h │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ ├── mmu_context.h │ │ │ │ │ │ ├── mmzone.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── msc01_ic.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── nile4.h │ │ │ │ │ │ ├── paccess.h │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ ├── parport.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci │ │ │ │ │ │ │ └── bridge.h │ │ │ │ │ │ ├── percpu.h │ │ │ │ │ │ ├── perf_event.h │ │ │ │ │ │ ├── pgalloc.h │ │ │ │ │ │ ├── pgtable-32.h │ │ │ │ │ │ ├── pgtable-64.h │ │ │ │ │ │ ├── pgtable-bits.h │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ ├── pmon.h │ │ │ │ │ │ ├── prefetch.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── radiax.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── regdef.h │ │ │ │ │ │ ├── rlx-timer.h │ │ │ │ │ │ ├── rlxregs.h │ │ │ │ │ │ ├── rm9k-ocd.h │ │ │ │ │ │ ├── rtlx.h │ │ │ │ │ │ ├── scatterlist.h │ │ │ │ │ │ ├── seccomp.h │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ ├── segment.h │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sgi │ │ │ │ │ │ │ ├── gio.h │ │ │ │ │ │ │ ├── hpc3.h │ │ │ │ │ │ │ ├── ioc.h │ │ │ │ │ │ │ ├── ip22.h │ │ │ │ │ │ │ ├── mc.h │ │ │ │ │ │ │ ├── pi1.h │ │ │ │ │ │ │ ├── seeq.h │ │ │ │ │ │ │ ├── sgi.h │ │ │ │ │ │ │ └── wd.h │ │ │ │ │ │ ├── sgialib.h │ │ │ │ │ │ ├── sgiarcs.h │ │ │ │ │ │ ├── shmparam.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── sim.h │ │ │ │ │ │ ├── smp-boot.h │ │ │ │ │ │ ├── smp-ops.h │ │ │ │ │ │ ├── smp.h │ │ │ │ │ │ ├── smtc.h │ │ │ │ │ │ ├── smtc_ipi.h │ │ │ │ │ │ ├── smtc_proc.h │ │ │ │ │ │ ├── sni.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── sparsemem.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_types.h │ │ │ │ │ │ ├── spram.h │ │ │ │ │ │ ├── stackframe.h │ │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── suspend.h │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── thread_info.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── tlb.h │ │ │ │ │ │ ├── tlbdebug.h │ │ │ │ │ │ ├── tlbflush.h │ │ │ │ │ │ ├── tlbmisc.h │ │ │ │ │ │ ├── topology.h │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ ├── txx9irq.h │ │ │ │ │ │ ├── txx9pio.h │ │ │ │ │ │ ├── txx9tmr.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ ├── uasm.h │ │ │ │ │ │ ├── ucontext.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── unistd.h │ │ │ │ │ │ ├── user.h │ │ │ │ │ │ ├── vdso.h │ │ │ │ │ │ ├── vga.h │ │ │ │ │ │ ├── vpe.h │ │ │ │ │ │ ├── war.h │ │ │ │ │ │ ├── watch.h │ │ │ │ │ │ ├── wbflush.h │ │ │ │ │ │ └── xor.h │ │ │ │ │ └── uapi │ │ │ │ │ │ └── asm │ │ │ │ │ │ ├── Kbuild │ │ │ │ │ │ ├── auxvec.h │ │ │ │ │ │ ├── bitsperlong.h │ │ │ │ │ │ ├── break.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cachectl.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── inst.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── ipcbuf.h │ │ │ │ │ │ ├── kvm.h │ │ │ │ │ │ ├── kvm_para.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msgbuf.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sembuf.h │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── sgidefs.h │ │ │ │ │ │ ├── shmbuf.h │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── sockios.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── swab.h │ │ │ │ │ │ ├── sysmips.h │ │ │ │ │ │ ├── termbits.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── unistd.h │ │ │ │ │ ├── kernel │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ ├── branch.c │ │ │ │ │ ├── cevt-ext.c │ │ │ │ │ ├── cevt-gic.c │ │ │ │ │ ├── cevt-rlx.c │ │ │ │ │ ├── cevt-smtc.c │ │ │ │ │ ├── cpu-probe.c │ │ │ │ │ ├── crash.c │ │ │ │ │ ├── crash_dump.c │ │ │ │ │ ├── csrc-gic.c │ │ │ │ │ ├── csrc-rlx.c │ │ │ │ │ ├── early_printk.c │ │ │ │ │ ├── entry.S │ │ │ │ │ ├── ftrace.c │ │ │ │ │ ├── genex.S │ │ │ │ │ ├── head.S │ │ │ │ │ ├── idle.c │ │ │ │ │ ├── irq-cpu.c │ │ │ │ │ ├── irq-gic.c │ │ │ │ │ ├── irq-vec.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── jump_label.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── kprobes.c │ │ │ │ │ ├── machine_kexec.c │ │ │ │ │ ├── mcount.S │ │ │ │ │ ├── mips_ksyms.c │ │ │ │ │ ├── mips_machine.c │ │ │ │ │ ├── module-rela.c │ │ │ │ │ ├── module.c │ │ │ │ │ ├── perf_event.c │ │ │ │ │ ├── perf_event_mipsxx.c │ │ │ │ │ ├── proc.c │ │ │ │ │ ├── process.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── ptrace.c │ │ │ │ │ ├── relocate_kernel.S │ │ │ │ │ ├── reset.c │ │ │ │ │ ├── rlx-fpu.S │ │ │ │ │ ├── rlx-switch.S │ │ │ │ │ ├── scall32-o32.S │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── signal-common.h │ │ │ │ │ ├── signal.c │ │ │ │ │ ├── smp-amon.c │ │ │ │ │ ├── smp-cmp.c │ │ │ │ │ ├── smp-up.c │ │ │ │ │ ├── smp.c │ │ │ │ │ ├── spinlock_test.c │ │ │ │ │ ├── spram.c │ │ │ │ │ ├── stacktrace.c │ │ │ │ │ ├── sync-rlx.c │ │ │ │ │ ├── syscall.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── topology.c │ │ │ │ │ ├── traps.c │ │ │ │ │ ├── unaligned.c │ │ │ │ │ ├── vdso.c │ │ │ │ │ ├── vmlinux.lds.S │ │ │ │ │ └── watch.c │ │ │ │ │ ├── kvm │ │ │ │ │ ├── 00README.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── kvm_cb.c │ │ │ │ │ ├── kvm_locore.S │ │ │ │ │ ├── kvm_mips.c │ │ │ │ │ ├── kvm_mips_comm.h │ │ │ │ │ ├── kvm_mips_commpage.c │ │ │ │ │ ├── kvm_mips_dyntrans.c │ │ │ │ │ ├── kvm_mips_emul.c │ │ │ │ │ ├── kvm_mips_int.c │ │ │ │ │ ├── kvm_mips_int.h │ │ │ │ │ ├── kvm_mips_opcode.h │ │ │ │ │ ├── kvm_mips_stats.c │ │ │ │ │ ├── kvm_tlb.c │ │ │ │ │ ├── kvm_trap_emul.c │ │ │ │ │ └── trace.h │ │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ashldi3.c │ │ │ │ │ ├── ashrdi3.c │ │ │ │ │ ├── bitops.c │ │ │ │ │ ├── cmpdi2.c │ │ │ │ │ ├── csum_partial.S │ │ │ │ │ ├── delay.c │ │ │ │ │ ├── dump_tlb.c │ │ │ │ │ ├── iomap-pci.c │ │ │ │ │ ├── iomap.c │ │ │ │ │ ├── libgcc.h │ │ │ │ │ ├── lshrdi3.c │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── mips-atomic.c │ │ │ │ │ ├── rlx_dump_tlb.c │ │ │ │ │ ├── strlen_user.S │ │ │ │ │ ├── strncpy_user.S │ │ │ │ │ ├── strnlen_user.S │ │ │ │ │ ├── ucmpdi2.c │ │ │ │ │ └── uncached.c │ │ │ │ │ ├── mm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c-rlx.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cex-gen.S │ │ │ │ │ ├── dma-default.c │ │ │ │ │ ├── extable.c │ │ │ │ │ ├── fault.c │ │ │ │ │ ├── gup.c │ │ │ │ │ ├── highmem.c │ │ │ │ │ ├── hugetlbpage.c │ │ │ │ │ ├── init.c │ │ │ │ │ ├── ioremap.c │ │ │ │ │ ├── mmap.c │ │ │ │ │ ├── page-funcs.S │ │ │ │ │ ├── page.c │ │ │ │ │ ├── pgtable-32.c │ │ │ │ │ ├── sc-mips.c │ │ │ │ │ ├── tlb-rlx.c │ │ │ │ │ ├── tlbex-fault.S │ │ │ │ │ ├── tlbex.c │ │ │ │ │ ├── uasm-micromips.c │ │ │ │ │ ├── uasm-mips.c │ │ │ │ │ └── uasm.c │ │ │ │ │ ├── oprofile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── backtrace.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── op_impl.h │ │ │ │ │ ├── op_model_loongson2.c │ │ │ │ │ └── op_model_mipsxx.c │ │ │ │ │ ├── pci │ │ │ │ │ ├── Makefile │ │ │ │ │ └── pci.c │ │ │ │ │ ├── power │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu.c │ │ │ │ │ └── hibernate.S │ │ │ │ │ ├── soc-rtl8196e │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_rtl8196e_v110_11n.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ │ │ ├── soc-rtl819xd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in.819xd │ │ │ │ │ ├── config.in.819xdt │ │ │ │ │ ├── config.in.89xxd │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── imem-dmem.S │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_rtl819xd.c │ │ │ │ │ ├── mach_rtl8972d_v100_ata.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ │ │ └── soc-rtl8881a │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── bspchip.h │ │ │ │ │ ├── bspcpu.h │ │ │ │ │ ├── bspinit.h │ │ │ │ │ ├── config.in │ │ │ │ │ ├── config.in.819xd │ │ │ │ │ ├── config.in.819xdt │ │ │ │ │ ├── config.in.8881a │ │ │ │ │ ├── config.in.89xxd │ │ │ │ │ ├── dev-gpio-buttons.c │ │ │ │ │ ├── dev-gpio-buttons.h │ │ │ │ │ ├── dev_leds_gpio.c │ │ │ │ │ ├── dev_leds_gpio.h │ │ │ │ │ ├── dev_usb.c │ │ │ │ │ ├── dev_usb.h │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── imem-dmem.S │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── kgdb.c │ │ │ │ │ ├── mach_8881a.c │ │ │ │ │ ├── mach_rtl8972d_v100_ata.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── timer.c │ │ │ │ │ └── vmlinux.lds.S │ │ │ ├── drivers │ │ │ │ ├── bluetooth │ │ │ │ │ ├── hci_rtk_h5.c │ │ │ │ │ ├── rtk_bt.c │ │ │ │ │ ├── rtk_bt.h │ │ │ │ │ ├── rtk_coex.c │ │ │ │ │ └── rtk_coex.h │ │ │ │ ├── crypto │ │ │ │ │ └── realtek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── crypto_engine │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── hmac.c │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── md5.c │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── rtl_ipsec.c │ │ │ │ │ │ ├── rtl_ipsec.h │ │ │ │ │ │ ├── rtl_ipsec_test.c │ │ │ │ │ │ ├── sha1.c │ │ │ │ │ │ ├── sha1.h │ │ │ │ │ │ └── sw_sim │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ │ ├── aesSim.c │ │ │ │ │ │ │ ├── aesSim.h │ │ │ │ │ │ │ ├── aes_1.h │ │ │ │ │ │ │ ├── aes_block.c │ │ │ │ │ │ │ ├── aes_core.c │ │ │ │ │ │ │ ├── aes_locl.h │ │ │ │ │ │ │ ├── authSim.c │ │ │ │ │ │ │ ├── authSim.h │ │ │ │ │ │ │ ├── des.h │ │ │ │ │ │ │ ├── desSim.c │ │ │ │ │ │ │ ├── desSim.h │ │ │ │ │ │ │ ├── des_ecb.c │ │ │ │ │ │ │ ├── des_locl.h │ │ │ │ │ │ │ ├── des_setkey.c │ │ │ │ │ │ │ ├── podd.h │ │ │ │ │ │ │ ├── sk.h │ │ │ │ │ │ │ └── spr.h │ │ │ │ │ │ ├── rtl_crypto.c │ │ │ │ │ │ ├── rtl_crypto_helper.c │ │ │ │ │ │ └── rtl_crypto_helper.h │ │ │ │ ├── mtd │ │ │ │ │ ├── chips │ │ │ │ │ │ └── rtl819x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── spi_cmd.c │ │ │ │ │ │ │ ├── spi_common.c │ │ │ │ │ │ │ ├── spi_common.h │ │ │ │ │ │ │ ├── spi_flash.c │ │ │ │ │ │ │ ├── spi_flash.h │ │ │ │ │ │ │ └── spi_probe.c │ │ │ │ │ ├── maps │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ └── rtl819x_flash.c │ │ │ │ │ └── nand │ │ │ │ │ │ ├── nand_base_sd.c │ │ │ │ │ │ ├── rtk_nand.h │ │ │ │ │ │ ├── rtk_nand_sd.c │ │ │ │ │ │ ├── rtkn_nand │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── nand_parallel.c │ │ │ │ │ │ ├── nand_parallel_ctrl.c │ │ │ │ │ │ ├── nand_spi.c │ │ │ │ │ │ ├── nand_spi_bbt.c │ │ │ │ │ │ ├── nand_spi_ctrl.c │ │ │ │ │ │ ├── nand_spi_ecc_ctrl.c │ │ │ │ │ │ ├── ops_rtknand.c │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ ├── rtkn_chip_param.h │ │ │ │ │ │ ├── rtkn_parallel.h │ │ │ │ │ │ ├── rtkn_parallel_regs.h │ │ │ │ │ │ ├── rtknflash.h │ │ │ │ │ │ ├── rtknflash_api.c │ │ │ │ │ │ ├── rtknflash_bbt.c │ │ │ │ │ │ ├── rtknflash_bbtOps.c │ │ │ │ │ │ ├── rtknflash_openwrt.c │ │ │ │ │ │ ├── rtknflash_partition.c │ │ │ │ │ │ └── rtknflash_wrapper.h │ │ │ │ │ │ └── rtknflash │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── ops_rtknand.c │ │ │ │ │ │ ├── rtk_bootinfo.c │ │ │ │ │ │ ├── rtknflash.h │ │ │ │ │ │ ├── rtknflash_api.c │ │ │ │ │ │ ├── rtknflash_bbt.c │ │ │ │ │ │ └── rtknflash_bbtOps.c │ │ │ │ ├── net │ │ │ │ │ ├── rtl819x │ │ │ │ │ │ ├── AsicDriver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Makefile.build │ │ │ │ │ │ │ ├── asicRegs.h │ │ │ │ │ │ │ ├── asicTabs.h │ │ │ │ │ │ │ ├── rtl865xC_hs.c │ │ │ │ │ │ │ ├── rtl865xC_hs.h │ │ │ │ │ │ │ ├── rtl865x_asicBasic.c │ │ │ │ │ │ │ ├── rtl865x_asicBasic.h │ │ │ │ │ │ │ ├── rtl865x_asicCom.c │ │ │ │ │ │ │ ├── rtl865x_asicCom.h │ │ │ │ │ │ │ ├── rtl865x_asicL2.c │ │ │ │ │ │ │ ├── rtl865x_asicL2.h │ │ │ │ │ │ │ ├── rtl865x_asicL3.c │ │ │ │ │ │ │ ├── rtl865x_asicL3.h │ │ │ │ │ │ │ ├── rtl865x_asicL4.c │ │ │ │ │ │ │ ├── rtl865x_asicL4.h │ │ │ │ │ │ │ ├── rtl865x_hwPatch.h │ │ │ │ │ │ │ └── rtl865xc_asicregs.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.Release │ │ │ │ │ │ ├── RTL8370_RTL8367_API │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── gpio_8198.h │ │ │ │ │ │ │ ├── rtk_api.c │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_acl.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_acl.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_cputag.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_cputag.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_dot1x.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eee.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eee.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eeelldp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_eeelldp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_fc.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_fc.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_green.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_green.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_igmp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_igmp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_inbwctrl.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_inbwctrl.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_interrupt.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_interrupt.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_led.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_led.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_lut.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_meter.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_meter.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mib.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mirror.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_mirror.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_misc.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_misc.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_oam.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_oam.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_phy.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_phy.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_port.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_portIsolation.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_portIsolation.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_qos.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rldp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rldp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rma.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rrcp.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_rrcp.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_scheduling.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_scheduling.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_specialCongest.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_specialCongest.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_storm.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_storm.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_svlan.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_trunking.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_trunking.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_unknownMulticast.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_unknownMulticast.h │ │ │ │ │ │ │ ├── rtl8370_asicdrv_vlan.c │ │ │ │ │ │ │ ├── rtl8370_asicdrv_vlan.h │ │ │ │ │ │ │ ├── rtl8370_base.h │ │ │ │ │ │ │ ├── rtl8370_reg.h │ │ │ │ │ │ │ ├── smi.c │ │ │ │ │ │ │ └── smi.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mbuf.h │ │ │ │ │ │ │ ├── rtl8651_tblDrvProto.h │ │ │ │ │ │ │ ├── rtl865x_eventMgr.c │ │ │ │ │ │ │ ├── rtl865x_eventMgr.h │ │ │ │ │ │ │ ├── rtl865x_netif.c │ │ │ │ │ │ │ ├── rtl865x_netif_local.h │ │ │ │ │ │ │ ├── rtl865x_vlan.c │ │ │ │ │ │ │ ├── rtl865x_vlan.h │ │ │ │ │ │ │ ├── rtl_errno.h │ │ │ │ │ │ │ ├── rtl_utils.c │ │ │ │ │ │ │ ├── rtl_utils.h │ │ │ │ │ │ │ ├── smi.c │ │ │ │ │ │ │ └── smi.h │ │ │ │ │ │ ├── igmpsnooping │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── igmp_delete.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping_glue.c │ │ │ │ │ │ │ ├── rtl865x_igmpsnooping_local.h │ │ │ │ │ │ │ └── rtl865x_igmpsnooping_new.c │ │ │ │ │ │ ├── l2Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl865x_fdb.c │ │ │ │ │ │ │ ├── rtl865x_fdb.h │ │ │ │ │ │ │ ├── rtl865x_hw_qos_config.c │ │ │ │ │ │ │ ├── rtl865x_outputQueue.c │ │ │ │ │ │ │ └── rtl865x_stp.c │ │ │ │ │ │ ├── l3Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl8198c_arpIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_arpIpv6.h │ │ │ │ │ │ │ ├── rtl8198c_nexthopIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_nexthopIpv6.h │ │ │ │ │ │ │ ├── rtl8198c_routeIpv6.c │ │ │ │ │ │ │ ├── rtl8198c_routeIpv6.h │ │ │ │ │ │ │ ├── rtl865x_6rd.c │ │ │ │ │ │ │ ├── rtl865x_6rd.h │ │ │ │ │ │ │ ├── rtl865x_arp.c │ │ │ │ │ │ │ ├── rtl865x_arp.h │ │ │ │ │ │ │ ├── rtl865x_dslite.c │ │ │ │ │ │ │ ├── rtl865x_dslite.h │ │ │ │ │ │ │ ├── rtl865x_ip.c │ │ │ │ │ │ │ ├── rtl865x_ip.h │ │ │ │ │ │ │ ├── rtl865x_localPublic.c │ │ │ │ │ │ │ ├── rtl865x_multicast.c │ │ │ │ │ │ │ ├── rtl865x_multipleWan.c │ │ │ │ │ │ │ ├── rtl865x_multipleWan.h │ │ │ │ │ │ │ ├── rtl865x_nexthop.c │ │ │ │ │ │ │ ├── rtl865x_nexthop.h │ │ │ │ │ │ │ ├── rtl865x_ppp.c │ │ │ │ │ │ │ ├── rtl865x_ppp_local.h │ │ │ │ │ │ │ ├── rtl865x_route.c │ │ │ │ │ │ │ └── rtl865x_route.h │ │ │ │ │ │ ├── l4Driver │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtl865x_nat.c │ │ │ │ │ │ │ └── rtl865x_nat_local.h │ │ │ │ │ │ ├── m1074kctrl.c │ │ │ │ │ │ ├── m24kctrl.c │ │ │ │ │ │ ├── m24kctrl.h │ │ │ │ │ │ ├── mmap.c │ │ │ │ │ │ ├── rlx5181_perCounter.S │ │ │ │ │ │ ├── rlx5281_perCounter.S │ │ │ │ │ │ ├── romeperf.c │ │ │ │ │ │ ├── romeperf.h │ │ │ │ │ │ ├── rtl819x_swNic.c │ │ │ │ │ │ ├── rtl819x_swNic.h │ │ │ │ │ │ ├── rtl819x_switch.c │ │ │ │ │ │ ├── rtl819x_switch.h │ │ │ │ │ │ ├── rtl8325d │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ ├── rtl8316d_regField_list.c │ │ │ │ │ │ │ │ ├── rtl8316d_reg_list.c │ │ │ │ │ │ │ │ ├── rtl8316d_tableField_list.c │ │ │ │ │ │ │ │ └── rtl8316d_table_list.c │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── asicdrv │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_general_reg.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_regField_list.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_reg_struct.h │ │ │ │ │ │ │ │ │ │ ├── rtl8316d_tableField_list.h │ │ │ │ │ │ │ │ │ │ └── rtl8316d_table_struct.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicDrv.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_dot1x.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_inacl.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mir.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_nic.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_port.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_qos.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_reg.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rma.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rtkpp.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_stp.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_svlan.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_tbl.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_trunk.h │ │ │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_vlan.h │ │ │ │ │ │ │ │ │ └── rtl8316d_types.h │ │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ │ └── rtl8316d_debug.h │ │ │ │ │ │ │ ├── rtl8316d_asicDrv.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_inacl.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_mir.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_nic.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_rtkpp.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_stp.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_tbl.c │ │ │ │ │ │ │ ├── rtl8316d_asicdrv_trunk.c │ │ │ │ │ │ │ └── rtl8316d_asicdrv_vlan.c │ │ │ │ │ │ ├── rtl8367r │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── rtk_api.c │ │ │ │ │ │ │ ├── rtk_api.h │ │ │ │ │ │ │ ├── rtk_api_ext.h │ │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_acl.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_acl.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_cputag.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_cputag.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_dot1x.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_dot1x.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eav.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eav.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eee.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_eee.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_fc.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_fc.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_green.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_green.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_hsb.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_hsb.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_igmp.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_igmp.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_inbwctrl.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_inbwctrl.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_interrupt.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_interrupt.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_led.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_led.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_lut.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_lut.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_meter.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_meter.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mib.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mib.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mirror.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_mirror.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_misc.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_misc.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_phy.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_phy.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_port.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_port.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_portIsolation.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_portIsolation.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_qos.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_qos.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_rma.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_rma.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_scheduling.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_scheduling.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_storm.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_storm.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_svlan.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_svlan.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_trunking.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_trunking.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_unknownMulticast.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_unknownMulticast.h │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_vlan.c │ │ │ │ │ │ │ ├── rtl8367b_asicdrv_vlan.h │ │ │ │ │ │ │ ├── rtl8367b_base.h │ │ │ │ │ │ │ └── rtl8367b_reg.h │ │ │ │ │ │ ├── rtl865x │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── rtl865x_log.h │ │ │ │ │ │ ├── rtl865x_proc_debug.c │ │ │ │ │ │ ├── rtl865x_proc_debug.h │ │ │ │ │ │ ├── rtl865xc_swNic.c │ │ │ │ │ │ ├── rtl865xc_swNic.h │ │ │ │ │ │ ├── rtl_dot1x.c │ │ │ │ │ │ ├── rtl_glue.c │ │ │ │ │ │ ├── rtl_multi_wan.c │ │ │ │ │ │ ├── rtl_nic.c │ │ │ │ │ │ └── version.h │ │ │ │ │ └── wireless │ │ │ │ │ │ └── rtl8192cd │ │ │ │ │ │ ├── 1x_kmsm_aes.c │ │ │ │ │ │ ├── 1x_kmsm_hmac.c │ │ │ │ │ │ ├── 1x_md5c.c │ │ │ │ │ │ ├── 1x_md5c.h │ │ │ │ │ │ ├── 1x_rc4.c │ │ │ │ │ │ ├── 1x_rc4.h │ │ │ │ │ │ ├── 8188e_hw.c │ │ │ │ │ │ ├── 8188e_reg.h │ │ │ │ │ │ ├── 8192c_reg.h │ │ │ │ │ │ ├── 8192cd.h │ │ │ │ │ │ ├── 8192cd_11h.c │ │ │ │ │ │ ├── 8192cd_a4_sta.c │ │ │ │ │ │ ├── 8192cd_aes.c │ │ │ │ │ │ ├── 8192cd_br_ext.c │ │ │ │ │ │ ├── 8192cd_br_ext.h │ │ │ │ │ │ ├── 8192cd_cfg.h │ │ │ │ │ │ ├── 8192cd_cfg80211.c │ │ │ │ │ │ ├── 8192cd_cfg80211.h │ │ │ │ │ │ ├── 8192cd_comapi.c │ │ │ │ │ │ ├── 8192cd_comapi.h │ │ │ │ │ │ ├── 8192cd_debug.h │ │ │ │ │ │ ├── 8192cd_dfs.c │ │ │ │ │ │ ├── 8192cd_dfs_det.c │ │ │ │ │ │ ├── 8192cd_dmem.c │ │ │ │ │ │ ├── 8192cd_dmem.h │ │ │ │ │ │ ├── 8192cd_eeprom.c │ │ │ │ │ │ ├── 8192cd_headers.h │ │ │ │ │ │ ├── 8192cd_host.c │ │ │ │ │ │ ├── 8192cd_hw.c │ │ │ │ │ │ ├── 8192cd_hw.h │ │ │ │ │ │ ├── 8192cd_ioctl.c │ │ │ │ │ │ ├── 8192cd_led.c │ │ │ │ │ │ ├── 8192cd_log.h │ │ │ │ │ │ ├── 8192cd_mib.c │ │ │ │ │ │ ├── 8192cd_mib.h │ │ │ │ │ │ ├── 8192cd_mp.c │ │ │ │ │ │ ├── 8192cd_net80211.c │ │ │ │ │ │ ├── 8192cd_net80211.h │ │ │ │ │ │ ├── 8192cd_osdep.c │ │ │ │ │ │ ├── 8192cd_p2p.c │ │ │ │ │ │ ├── 8192cd_p2p.h │ │ │ │ │ │ ├── 8192cd_phyreg.h │ │ │ │ │ │ ├── 8192cd_proc.c │ │ │ │ │ │ ├── 8192cd_profile.h │ │ │ │ │ │ ├── 8192cd_psk.c │ │ │ │ │ │ ├── 8192cd_psk.h │ │ │ │ │ │ ├── 8192cd_psk_hapd.c │ │ │ │ │ │ ├── 8192cd_rx.c │ │ │ │ │ │ ├── 8192cd_rx.h │ │ │ │ │ │ ├── 8192cd_security.c │ │ │ │ │ │ ├── 8192cd_security.h │ │ │ │ │ │ ├── 8192cd_sme.c │ │ │ │ │ │ ├── 8192cd_sta_control.c │ │ │ │ │ │ ├── 8192cd_tkip.c │ │ │ │ │ │ ├── 8192cd_tx.c │ │ │ │ │ │ ├── 8192cd_tx.h │ │ │ │ │ │ ├── 8192cd_util.c │ │ │ │ │ │ ├── 8192cd_util.h │ │ │ │ │ │ ├── 8192d_hw.c │ │ │ │ │ │ ├── 8192d_reg.h │ │ │ │ │ │ ├── 8192e_reg.h │ │ │ │ │ │ ├── 8723b_reg.h │ │ │ │ │ │ ├── 8812_hw.c │ │ │ │ │ │ ├── 8812_reg.h │ │ │ │ │ │ ├── 8812_vht_gen.c │ │ │ │ │ │ ├── 8812_vht_gen.h │ │ │ │ │ │ ├── Beamforming.c │ │ │ │ │ │ ├── Beamforming.h │ │ │ │ │ │ ├── Config.in │ │ │ │ │ │ ├── EdcaTurboCheck.c │ │ │ │ │ │ ├── EdcaTurboCheck.h │ │ │ │ │ │ ├── Hal8188EPwrSeq.c │ │ │ │ │ │ ├── Hal8188EPwrSeq.h │ │ │ │ │ │ ├── Hal8192CDMOutSrc.c │ │ │ │ │ │ ├── Hal8723BPwrSeq.c │ │ │ │ │ │ ├── Hal8723BPwrSeq.h │ │ │ │ │ │ ├── Hal8812PwrSeq.c │ │ │ │ │ │ ├── Hal8812PwrSeq.h │ │ │ │ │ │ ├── Hal8821APwrSeq.c │ │ │ │ │ │ ├── Hal8821APwrSeq.h │ │ │ │ │ │ ├── HalDMOutSrc.c │ │ │ │ │ │ ├── HalPwrSeqCmd.c │ │ │ │ │ │ ├── HalPwrSeqCmd.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.build │ │ │ │ │ │ ├── Makefile.ecos │ │ │ │ │ │ ├── Makefile_nrs │ │ │ │ │ │ ├── RateAdaptive.c │ │ │ │ │ │ ├── WlanHAL │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── HalCfg.h_8192EE │ │ │ │ │ │ │ └── HalCfg.h_8881A │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── 8192E │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192ES.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type1.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type2.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extlna_type3.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192E_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8192Emp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8192E.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8192E.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192E.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192Eb.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192E_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192Eb.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192E.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192E_new.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192Emp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8192Emp_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E.txt │ │ │ │ │ │ │ │ ├── RadioA_8192ES.txt │ │ │ │ │ │ │ │ ├── RadioA_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8192E_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192Eb.txt │ │ │ │ │ │ │ │ ├── RadioA_8192Emp.txt │ │ │ │ │ │ │ │ ├── RadioA_8192EmpA.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E.txt │ │ │ │ │ │ │ │ ├── RadioB_8192ES.txt │ │ │ │ │ │ │ │ ├── RadioB_8192ES_extlna.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_extlna.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_extpa.txt │ │ │ │ │ │ │ │ ├── RadioB_8192E_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8192Eb.txt │ │ │ │ │ │ │ │ ├── RadioB_8192Emp.txt │ │ │ │ │ │ │ │ ├── RadioB_8192EmpA.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_92EE_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_92EE_new.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP.txt │ │ │ │ │ │ │ │ ├── rtl8192ESfwMP.bin │ │ │ │ │ │ │ │ ├── rtl8192Efw.bin │ │ │ │ │ │ │ │ └── rtl8192EfwMP.bin │ │ │ │ │ │ │ ├── 8197F │ │ │ │ │ │ │ │ ├── AGC_TAB_8197F.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197F_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197Fmp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8197Fmp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8197F.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8197F.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8197F.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197F.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197F_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8197Fmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8197F.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type1.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8197Fmp_Type5.txt │ │ │ │ │ │ │ │ ├── RadioA_8197F.txt │ │ │ │ │ │ │ │ ├── RadioB_8197F.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type1.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8197Fmp_Type5.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8197Fmp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ └── rtl8197Ffw.bin │ │ │ │ │ │ │ ├── 8814A │ │ │ │ │ │ │ │ ├── AGC_TAB_8814A.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814A_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814Amp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8814A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8814A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8814A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814A_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8814Amp_Type5.txt │ │ │ │ │ │ │ │ ├── RadioA_8814A.txt │ │ │ │ │ │ │ │ ├── RadioA_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioA_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814A.txt │ │ │ │ │ │ │ │ ├── RadioB_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioB_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814A.txt │ │ │ │ │ │ │ │ ├── RadioC_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioC_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814A.txt │ │ │ │ │ │ │ │ ├── RadioD_8814A_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814Amp.txt │ │ │ │ │ │ │ │ ├── RadioD_8814Amp_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814A.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_TXBF.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8814Amp_Type5.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8814A.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8814Amp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ ├── rtl8814Afw.bin │ │ │ │ │ │ │ │ └── rtl8814AfwMP.bin │ │ │ │ │ │ │ ├── 8822B │ │ │ │ │ │ │ │ ├── AGC_TAB_8822B.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822B_hp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822Bmp.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8822B.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8822B.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8822B.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822B_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822B.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type0.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type1.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type2.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type3.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type4.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type5.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type6.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_Type7.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8822Bmp_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8822B.txt │ │ │ │ │ │ │ │ ├── RadioA_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver1_Type1.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type1.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type6.txt │ │ │ │ │ │ │ │ ├── RadioA_8822Bmp_hp_Ver2_Type7.txt │ │ │ │ │ │ │ │ ├── RadioB_8822B.txt │ │ │ │ │ │ │ │ ├── RadioB_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver1_Type1.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type1.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type6.txt │ │ │ │ │ │ │ │ ├── RadioB_8822Bmp_hp_Ver2_Type7.txt │ │ │ │ │ │ │ │ ├── RadioC_8822B.txt │ │ │ │ │ │ │ │ ├── RadioC_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioC_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioC_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822B.txt │ │ │ │ │ │ │ │ ├── RadioD_8822B_hp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822Bmp.txt │ │ │ │ │ │ │ │ ├── RadioD_8822Bmp_hp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822B.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type0.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type1.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type2.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type3.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type4.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type5.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type6.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8822Bmp_Type7.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8822B.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8822Bmp.txt │ │ │ │ │ │ │ │ ├── Version.txt │ │ │ │ │ │ │ │ ├── rtl8822Bfw.bin │ │ │ │ │ │ │ │ └── rtl8822BfwMP.bin │ │ │ │ │ │ │ └── 8881A │ │ │ │ │ │ │ │ ├── V700 │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ │ │ ├── V702B │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ │ │ ├── V702B_MP │ │ │ │ │ │ │ │ ├── AGC_TAB_8881ABP.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP_2layer.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AN.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── AGC_TAB_8881Am.txt │ │ │ │ │ │ │ │ ├── MACDM_def_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_def_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_gen_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_state_criteria_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_high_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_low_8881A.txt │ │ │ │ │ │ │ │ ├── MACDM_txop_normal_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881Am.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881AMP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881Am.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881ABP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AMP.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AN.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A_new.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881Am.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_A_CUT_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_A_CUT_T.BIN │ │ │ │ │ │ │ │ ├── RadioA_8881ABP.txt │ │ │ │ │ │ │ │ ├── RadioA_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP_2layer.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AN.txt │ │ │ │ │ │ │ │ ├── RadioA_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── RadioA_8881Am.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881ABP.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AMP.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AN.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881AN_extpa.txt │ │ │ │ │ │ │ │ ├── TXPWR_LMT_8881A_new.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881A.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881ABP.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881ABP_intpa.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AMP.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AMP_intpa.txt │ │ │ │ │ │ │ │ ├── TxPowerTrack_AP_8881AN.txt │ │ │ │ │ │ │ │ └── TxPowerTrack_AP_8881AN_extpa.txt │ │ │ │ │ │ │ │ └── V702B_Skyworth │ │ │ │ │ │ │ │ ├── AGC_TAB_8881A.txt │ │ │ │ │ │ │ │ ├── MAC_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_1T_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_MP_8881A.txt │ │ │ │ │ │ │ │ ├── PHY_REG_PG_8881A.txt │ │ │ │ │ │ │ │ ├── RTL8881FW_Test_T.BIN │ │ │ │ │ │ │ │ ├── RTL8881TXBUF_Test_T.BIN │ │ │ │ │ │ │ │ └── RadioA_8881A.txt │ │ │ │ │ │ ├── HalCfg.c │ │ │ │ │ │ ├── HalCfg.h │ │ │ │ │ │ ├── HalCommon.c │ │ │ │ │ │ ├── HalCommon.h │ │ │ │ │ │ ├── HalDbgCmd.c │ │ │ │ │ │ ├── HalDbgCmd.h │ │ │ │ │ │ ├── HalDef.h │ │ │ │ │ │ ├── HalHeader │ │ │ │ │ │ │ ├── HalComBit.h │ │ │ │ │ │ │ ├── HalComPhyBit.h │ │ │ │ │ │ │ ├── HalComPhyReg.h │ │ │ │ │ │ │ ├── HalComRXDesc.h │ │ │ │ │ │ │ ├── HalComReg.h │ │ │ │ │ │ │ ├── HalComTXDesc.h │ │ │ │ │ │ │ └── HalHWCfg.h │ │ │ │ │ │ ├── HalMac88XX │ │ │ │ │ │ │ ├── halmac_2_platform.h │ │ │ │ │ │ │ ├── halmac_2_platform_temp.h │ │ │ │ │ │ │ ├── halmac_88xx │ │ │ │ │ │ │ │ ├── halmac_8197f │ │ │ │ │ │ │ │ │ ├── halmac_8197f_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8197f_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8197f_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8197f_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8197f.c │ │ │ │ │ │ │ │ │ └── halmac_func_8197f.h │ │ │ │ │ │ │ │ ├── halmac_8821c │ │ │ │ │ │ │ │ │ ├── RTL8821Cfw_NIC.bin │ │ │ │ │ │ │ │ │ ├── halmac_8821c_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8821c_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8821c_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8821c_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8821c.c │ │ │ │ │ │ │ │ │ └── halmac_func_8821c.h │ │ │ │ │ │ │ │ ├── halmac_8822b │ │ │ │ │ │ │ │ │ ├── RTL8822Bfw_NIC.bin │ │ │ │ │ │ │ │ │ ├── halmac_8822b_cfg.h │ │ │ │ │ │ │ │ │ ├── halmac_8822b_pwr_seq.c │ │ │ │ │ │ │ │ │ ├── halmac_8822b_pwr_seq.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_pcie.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_pcie.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_sdio.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_sdio.h │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_usb.c │ │ │ │ │ │ │ │ │ ├── halmac_api_8822b_usb.h │ │ │ │ │ │ │ │ │ ├── halmac_func_8822b.c │ │ │ │ │ │ │ │ │ └── halmac_func_8822b.h │ │ │ │ │ │ │ │ ├── halmac_88xx_cfg.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_pcie.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_pcie.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_sdio.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_sdio.h │ │ │ │ │ │ │ │ ├── halmac_api_88xx_usb.c │ │ │ │ │ │ │ │ ├── halmac_api_88xx_usb.h │ │ │ │ │ │ │ │ ├── halmac_func_88xx.c │ │ │ │ │ │ │ │ └── halmac_func_88xx.h │ │ │ │ │ │ │ ├── halmac_api.c │ │ │ │ │ │ │ ├── halmac_api.h │ │ │ │ │ │ │ ├── halmac_bit2.h │ │ │ │ │ │ │ ├── halmac_bit_8821c.h │ │ │ │ │ │ │ ├── halmac_bit_8822b.h │ │ │ │ │ │ │ ├── halmac_fw_info.h │ │ │ │ │ │ │ ├── halmac_fw_offload_c2h_ap.h │ │ │ │ │ │ │ ├── halmac_fw_offload_c2h_nic.h │ │ │ │ │ │ │ ├── halmac_fw_offload_h2c_ap.h │ │ │ │ │ │ │ ├── halmac_fw_offload_h2c_nic.h │ │ │ │ │ │ │ ├── halmac_h2c_extra_info_ap.h │ │ │ │ │ │ │ ├── halmac_h2c_extra_info_nic.h │ │ │ │ │ │ │ ├── halmac_hw_cfg.h │ │ │ │ │ │ │ ├── halmac_hw_cfg_temp.h │ │ │ │ │ │ │ ├── halmac_original_c2h_ap.h │ │ │ │ │ │ │ ├── halmac_original_c2h_nic.h │ │ │ │ │ │ │ ├── halmac_original_h2c_ap.h │ │ │ │ │ │ │ ├── halmac_original_h2c_nic.h │ │ │ │ │ │ │ ├── halmac_pcie_reg.h │ │ │ │ │ │ │ ├── halmac_pwr_seq_cmd.h │ │ │ │ │ │ │ ├── halmac_reg2.h │ │ │ │ │ │ │ ├── halmac_reg_8821c.h │ │ │ │ │ │ │ ├── halmac_reg_8822b.h │ │ │ │ │ │ │ ├── halmac_rx_bd_ap.h │ │ │ │ │ │ │ ├── halmac_rx_bd_chip.h │ │ │ │ │ │ │ ├── halmac_rx_bd_nic.h │ │ │ │ │ │ │ ├── halmac_rx_desc_ap.h │ │ │ │ │ │ │ ├── halmac_rx_desc_chip.h │ │ │ │ │ │ │ ├── halmac_rx_desc_nic.h │ │ │ │ │ │ │ ├── halmac_sdio_reg.h │ │ │ │ │ │ │ ├── halmac_tx_bd_ap.h │ │ │ │ │ │ │ ├── halmac_tx_bd_chip.h │ │ │ │ │ │ │ ├── halmac_tx_bd_nic.h │ │ │ │ │ │ │ ├── halmac_tx_desc_ap.h │ │ │ │ │ │ │ ├── halmac_tx_desc_chip.h │ │ │ │ │ │ │ ├── halmac_tx_desc_nic.h │ │ │ │ │ │ │ ├── halmac_type.h │ │ │ │ │ │ │ ├── halmac_usb_reg.h │ │ │ │ │ │ │ ├── halmisc_bb_rf_bit.h │ │ │ │ │ │ │ └── halmisc_bb_rf_reg.h │ │ │ │ │ │ ├── HalMacAPI.c │ │ │ │ │ │ ├── HalMacAPI.h │ │ │ │ │ │ ├── HalMacFunc.c │ │ │ │ │ │ ├── HalMacFunc.h │ │ │ │ │ │ ├── HalPrecomp.h │ │ │ │ │ │ ├── HalPrecompInc.h │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── GeneralDef.h │ │ │ │ │ │ │ ├── PlatformDef.h │ │ │ │ │ │ │ └── StatusCode.h │ │ │ │ │ │ ├── Output │ │ │ │ │ │ │ └── HalLib.h │ │ │ │ │ │ └── RTL88XX │ │ │ │ │ │ │ ├── Hal88XXCfg.h │ │ │ │ │ │ │ ├── Hal88XXDM.c │ │ │ │ │ │ │ ├── Hal88XXDM.h │ │ │ │ │ │ │ ├── Hal88XXDebug.h │ │ │ │ │ │ │ ├── Hal88XXDef.h │ │ │ │ │ │ │ ├── Hal88XXDesc.h │ │ │ │ │ │ │ ├── Hal88XXFirmware.c │ │ │ │ │ │ │ ├── Hal88XXFirmware.h │ │ │ │ │ │ │ ├── Hal88XXGen.c │ │ │ │ │ │ │ ├── Hal88XXHWImg.c │ │ │ │ │ │ │ ├── Hal88XXHWImg.h │ │ │ │ │ │ │ ├── Hal88XXIsr.c │ │ │ │ │ │ │ ├── Hal88XXIsr.h │ │ │ │ │ │ │ ├── Hal88XXPhyCfg.c │ │ │ │ │ │ │ ├── Hal88XXPhyCfg.h │ │ │ │ │ │ │ ├── Hal88XXPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal88XXPwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal88XXReg.h │ │ │ │ │ │ │ ├── Hal88XXRxDesc.c │ │ │ │ │ │ │ ├── Hal88XXRxDesc.h │ │ │ │ │ │ │ ├── Hal88XXTxDesc.c │ │ │ │ │ │ │ ├── Hal88XXTxDesc.h │ │ │ │ │ │ │ ├── Hal88XXVerify.c │ │ │ │ │ │ │ ├── Hal88XXVerify.h │ │ │ │ │ │ │ ├── RTL8192E │ │ │ │ │ │ │ ├── Hal8192EDef.h │ │ │ │ │ │ │ ├── Hal8192EGen.c │ │ │ │ │ │ │ ├── Hal8192EPhyCfg.c │ │ │ │ │ │ │ ├── Hal8192EPhyCfg.h │ │ │ │ │ │ │ ├── Hal8192EPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8192EPwrSeqCmd.h │ │ │ │ │ │ │ ├── RTL8192EE │ │ │ │ │ │ │ │ ├── Hal8192EEDef.h │ │ │ │ │ │ │ │ └── Hal8192EEGen.c │ │ │ │ │ │ │ └── RTL8192ES │ │ │ │ │ │ │ │ ├── Hal8192ESDef.h │ │ │ │ │ │ │ │ └── Hal8192ESGen.c │ │ │ │ │ │ │ ├── RTL8197F │ │ │ │ │ │ │ ├── Hal8197FCfg.h │ │ │ │ │ │ │ ├── Hal8197FDef.h │ │ │ │ │ │ │ ├── Hal8197FFirmware.c │ │ │ │ │ │ │ ├── Hal8197FFirmware.h │ │ │ │ │ │ │ ├── Hal8197FGen.c │ │ │ │ │ │ │ ├── Hal8197FHWImg.c │ │ │ │ │ │ │ ├── Hal8197FHWImg.h │ │ │ │ │ │ │ ├── Hal8197FIsr.c │ │ │ │ │ │ │ ├── Hal8197FPhyCfg.c │ │ │ │ │ │ │ ├── Hal8197FPhyCfg.h │ │ │ │ │ │ │ ├── Hal8197FPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8197FPwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal8197FReg.h │ │ │ │ │ │ │ ├── Hal8197FRxDesc.c │ │ │ │ │ │ │ ├── Hal8197FRxDesc.h │ │ │ │ │ │ │ ├── Hal8197FTxDesc.c │ │ │ │ │ │ │ ├── Hal8197FTxDesc.h │ │ │ │ │ │ │ ├── Hal8197FVerify.c │ │ │ │ │ │ │ ├── Hal8197FVerify.h │ │ │ │ │ │ │ └── RTL8197FE │ │ │ │ │ │ │ │ ├── Hal8197FEDef.h │ │ │ │ │ │ │ │ └── Hal8197FEGen.c │ │ │ │ │ │ │ ├── RTL8814A │ │ │ │ │ │ │ ├── Hal8814ADef.h │ │ │ │ │ │ │ ├── Hal8814AFirmware.c │ │ │ │ │ │ │ ├── Hal8814AFirmware.h │ │ │ │ │ │ │ ├── Hal8814AGen.c │ │ │ │ │ │ │ ├── Hal8814APhyCfg.c │ │ │ │ │ │ │ ├── Hal8814APhyCfg.h │ │ │ │ │ │ │ ├── Hal8814APwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8814APwrSeqCmd.h │ │ │ │ │ │ │ └── RTL8814AE │ │ │ │ │ │ │ │ ├── Hal8814AEDef.h │ │ │ │ │ │ │ │ └── Hal8814AEGen.c │ │ │ │ │ │ │ ├── RTL8822B │ │ │ │ │ │ │ ├── Hal8822BDef.h │ │ │ │ │ │ │ ├── Hal8822BFirmware.c │ │ │ │ │ │ │ ├── Hal8822BFirmware.h │ │ │ │ │ │ │ ├── Hal8822BGen.c │ │ │ │ │ │ │ ├── Hal8822BPhyCfg.c │ │ │ │ │ │ │ ├── Hal8822BPhyCfg.h │ │ │ │ │ │ │ ├── Hal8822BPwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8822BPwrSeqCmd.h │ │ │ │ │ │ │ └── RTL8822BE │ │ │ │ │ │ │ │ ├── Hal8822BEDef.h │ │ │ │ │ │ │ │ └── Hal8822BEGen.c │ │ │ │ │ │ │ └── RTL8881A │ │ │ │ │ │ │ ├── Hal8881ACfg.h │ │ │ │ │ │ │ ├── Hal8881ADef.h │ │ │ │ │ │ │ ├── Hal8881AFirmware.c │ │ │ │ │ │ │ ├── Hal8881AFirmware.h │ │ │ │ │ │ │ ├── Hal8881AGen.c │ │ │ │ │ │ │ ├── Hal8881AHWImg.c │ │ │ │ │ │ │ ├── Hal8881AHWImg.h │ │ │ │ │ │ │ ├── Hal8881AIsr.c │ │ │ │ │ │ │ ├── Hal8881APhyCfg.c │ │ │ │ │ │ │ ├── Hal8881APhyCfg.h │ │ │ │ │ │ │ ├── Hal8881APwrSeqCmd.c │ │ │ │ │ │ │ ├── Hal8881APwrSeqCmd.h │ │ │ │ │ │ │ ├── Hal8881AReg.h │ │ │ │ │ │ │ ├── Hal8881ARxDesc.c │ │ │ │ │ │ │ ├── Hal8881ARxDesc.h │ │ │ │ │ │ │ ├── Hal8881ATxDesc.c │ │ │ │ │ │ │ ├── Hal8881ATxDesc.h │ │ │ │ │ │ │ ├── Hal8881AVerify.c │ │ │ │ │ │ │ ├── Hal8881AVerify.h │ │ │ │ │ │ │ └── RTL8881AE │ │ │ │ │ │ │ ├── Hal8881AEDef.h │ │ │ │ │ │ │ └── Hal8881AEGen.c │ │ │ │ │ │ ├── Wlan_QoSType.h │ │ │ │ │ │ ├── Wlan_TypeDef.h │ │ │ │ │ │ ├── bin2c.pl │ │ │ │ │ │ ├── change.txt │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── AGC_TAB.txt │ │ │ │ │ │ ├── AGC_TAB_n_92C.txt │ │ │ │ │ │ ├── AGC_TAB_n_hp.txt │ │ │ │ │ │ ├── MACPHY_REG_92C.txt │ │ │ │ │ │ ├── PHY_REG_1T.txt │ │ │ │ │ │ ├── PHY_REG_1T_n.txt │ │ │ │ │ │ ├── PHY_REG_1T_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_2T.txt │ │ │ │ │ │ ├── PHY_REG_2T_n.txt │ │ │ │ │ │ ├── PHY_REG_2T_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_2T_n_lna.txt │ │ │ │ │ │ ├── PHY_REG_MP_n_92C.txt │ │ │ │ │ │ ├── PHY_REG_PG_92C.txt │ │ │ │ │ │ ├── PHY_REG_PG_hp.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c_1.txt │ │ │ │ │ │ ├── TXPWR_LMT_92c_2.txt │ │ │ │ │ │ ├── radio_a_1T.txt │ │ │ │ │ │ ├── radio_a_1T_n.txt │ │ │ │ │ │ ├── radio_a_2T.txt │ │ │ │ │ │ ├── radio_a_2T_n.txt │ │ │ │ │ │ ├── radio_a_2T_n_hp.txt │ │ │ │ │ │ ├── radio_a_2T_n_lna.txt │ │ │ │ │ │ ├── radio_b_2T.txt │ │ │ │ │ │ ├── radio_b_2T_n.txt │ │ │ │ │ │ ├── radio_b_2T_n_hp.txt │ │ │ │ │ │ ├── radio_b_2T_n_lna.txt │ │ │ │ │ │ ├── rtl8192cfw.bin │ │ │ │ │ │ ├── rtl8192cfwn.bin │ │ │ │ │ │ └── rtl8192cfwua.bin │ │ │ │ │ │ ├── data_8723 │ │ │ │ │ │ ├── PHY_REG_PG_8723.txt │ │ │ │ │ │ ├── TXPWR_LMT_8723.txt │ │ │ │ │ │ ├── TxPowerTrack_AP_8723.txt │ │ │ │ │ │ └── rtl8723bfw.bin │ │ │ │ │ │ ├── data_8812 │ │ │ │ │ │ ├── AGC_TAB_8812.txt │ │ │ │ │ │ ├── AGC_TAB_8812_hp.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_default.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_extlna.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_extpa.txt │ │ │ │ │ │ ├── AGC_TAB_8812_n_hp.txt │ │ │ │ │ │ ├── MAC_REG_8812.txt │ │ │ │ │ │ ├── MAC_REG_8812_n.txt │ │ │ │ │ │ ├── PHY_REG_8812.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_default.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_extlna.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_extpa.txt │ │ │ │ │ │ ├── PHY_REG_8812_n_hp.txt │ │ │ │ │ │ ├── PHY_REG_MP_8812.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812_hp.txt │ │ │ │ │ │ ├── PHY_REG_PG_8812_new.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_8812.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_8812_hp.txt │ │ │ │ │ │ ├── RadioA_8812.txt │ │ │ │ │ │ ├── RadioA_8812_hp.txt │ │ │ │ │ │ ├── RadioA_8812_n_default.txt │ │ │ │ │ │ ├── RadioA_8812_n_extlna.txt │ │ │ │ │ │ ├── RadioA_8812_n_extpa.txt │ │ │ │ │ │ ├── RadioA_8812_n_hp.txt │ │ │ │ │ │ ├── RadioA_8812_n_ultra_hp.txt │ │ │ │ │ │ ├── RadioB_8812.txt │ │ │ │ │ │ ├── RadioB_8812_hp.txt │ │ │ │ │ │ ├── RadioB_8812_n_default.txt │ │ │ │ │ │ ├── RadioB_8812_n_extlna.txt │ │ │ │ │ │ ├── RadioB_8812_n_extpa.txt │ │ │ │ │ │ ├── RadioB_8812_n_hp.txt │ │ │ │ │ │ ├── RadioB_8812_n_ultra_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_8812_new.txt │ │ │ │ │ │ ├── rtl8812fw.bin │ │ │ │ │ │ ├── rtl8812fw_n.bin │ │ │ │ │ │ └── rtl8812fw_n_2g.bin │ │ │ │ │ │ ├── data_88e │ │ │ │ │ │ ├── PHY_REG_PG_88E.txt │ │ │ │ │ │ ├── PHY_REG_PG_88E_new.txt │ │ │ │ │ │ └── TXPWR_LMT_88E_new.txt │ │ │ │ │ │ ├── data_92d │ │ │ │ │ │ ├── AGC_TAB_2G_n.txt │ │ │ │ │ │ ├── AGC_TAB_5G_n.txt │ │ │ │ │ │ ├── AGC_TAB_n.txt │ │ │ │ │ │ ├── AGC_TAB_n_92d_hp.txt │ │ │ │ │ │ ├── MACPHY_REG.txt │ │ │ │ │ │ ├── PHY_REG_MP_n.txt │ │ │ │ │ │ ├── PHY_REG_PG.txt │ │ │ │ │ │ ├── PHY_REG_PG_92d_hp.txt │ │ │ │ │ │ ├── PHY_REG_PG_CE.txt │ │ │ │ │ │ ├── PHY_REG_PG_FCC.txt │ │ │ │ │ │ ├── PHY_REG_n.txt │ │ │ │ │ │ ├── PHY_REG_n_92d_hp.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_n_92d.txt │ │ │ │ │ │ ├── REG_TXPWR_TRK_n_92d_hp.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d_1.txt │ │ │ │ │ │ ├── TXPWR_LMT_92d_2.txt │ │ │ │ │ │ ├── radio_a_intPA.txt │ │ │ │ │ │ ├── radio_a_intPA_GM.txt │ │ │ │ │ │ ├── radio_a_intPA_GM_new.txt │ │ │ │ │ │ ├── radio_a_intPA_GM_new1.txt │ │ │ │ │ │ ├── radio_a_intPA_new.txt │ │ │ │ │ │ ├── radio_a_n.txt │ │ │ │ │ │ ├── radio_a_n_92d_hp.txt │ │ │ │ │ │ ├── radio_b_intPA.txt │ │ │ │ │ │ ├── radio_b_intPA_GM.txt │ │ │ │ │ │ ├── radio_b_intPA_GM_new.txt │ │ │ │ │ │ ├── radio_b_intPA_GM_new1.txt │ │ │ │ │ │ ├── radio_b_intPA_new.txt │ │ │ │ │ │ ├── radio_b_n.txt │ │ │ │ │ │ ├── radio_b_n_92d_hp.txt │ │ │ │ │ │ └── rtl8192dfw_n.bin │ │ │ │ │ │ ├── dot11k │ │ │ │ │ │ ├── 8192cd_11k.c │ │ │ │ │ │ ├── 8192cd_11k_beacon.c │ │ │ │ │ │ ├── 8192cd_11k_link.c │ │ │ │ │ │ └── 8192cd_11k_neighbor.c │ │ │ │ │ │ ├── efuse_97f │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── efuse.c │ │ │ │ │ │ ├── efuse.h │ │ │ │ │ │ ├── rom_def.h │ │ │ │ │ │ ├── string.c │ │ │ │ │ │ └── sys_reg.h │ │ │ │ │ │ ├── ieee802_mib.h │ │ │ │ │ │ ├── mesh_ext │ │ │ │ │ │ ├── hash_table.c │ │ │ │ │ │ ├── hash_table.h │ │ │ │ │ │ ├── mesh.h │ │ │ │ │ │ ├── mesh_11kv.c │ │ │ │ │ │ ├── mesh_11kv.h │ │ │ │ │ │ ├── mesh_cfg.h │ │ │ │ │ │ ├── mesh_proc.c │ │ │ │ │ │ ├── mesh_route.c │ │ │ │ │ │ ├── mesh_route.h │ │ │ │ │ │ ├── mesh_rx.c │ │ │ │ │ │ ├── mesh_security.c │ │ │ │ │ │ ├── mesh_security.h │ │ │ │ │ │ ├── mesh_sme.c │ │ │ │ │ │ ├── mesh_tx.c │ │ │ │ │ │ ├── mesh_util.c │ │ │ │ │ │ └── mesh_util.h │ │ │ │ │ │ ├── odm_inc.h │ │ │ │ │ │ ├── phydm │ │ │ │ │ │ ├── Phydm_document │ │ │ │ │ │ │ ├── PHYDM_Debug_Cmd.xlsx │ │ │ │ │ │ │ └── PHYDM_Driver_SVN_Path.xlsx │ │ │ │ │ │ ├── halhwimg.h │ │ │ │ │ │ ├── halphyrf_ap.c │ │ │ │ │ │ ├── halphyrf_ap.h │ │ │ │ │ │ ├── halphyrf_ce.c │ │ │ │ │ │ ├── halphyrf_ce.h │ │ │ │ │ │ ├── halphyrf_win.c │ │ │ │ │ │ ├── halphyrf_win.h │ │ │ │ │ │ ├── mp_precomp.h │ │ │ │ │ │ ├── phydm.c │ │ │ │ │ │ ├── phydm.h │ │ │ │ │ │ ├── phydm_acs.c │ │ │ │ │ │ ├── phydm_acs.h │ │ │ │ │ │ ├── phydm_adaptivity.c │ │ │ │ │ │ ├── phydm_adaptivity.h │ │ │ │ │ │ ├── phydm_adc_sampling.c │ │ │ │ │ │ ├── phydm_adc_sampling.h │ │ │ │ │ │ ├── phydm_antdect.c │ │ │ │ │ │ ├── phydm_antdect.h │ │ │ │ │ │ ├── phydm_antdiv.c │ │ │ │ │ │ ├── phydm_antdiv.h │ │ │ │ │ │ ├── phydm_beamforming.c │ │ │ │ │ │ ├── phydm_beamforming.h │ │ │ │ │ │ ├── phydm_ccx.c │ │ │ │ │ │ ├── phydm_ccx.h │ │ │ │ │ │ ├── phydm_cfotracking.c │ │ │ │ │ │ ├── phydm_cfotracking.h │ │ │ │ │ │ ├── phydm_debug.c │ │ │ │ │ │ ├── phydm_debug.h │ │ │ │ │ │ ├── phydm_dfs.c │ │ │ │ │ │ ├── phydm_dfs.h │ │ │ │ │ │ ├── phydm_dig.c │ │ │ │ │ │ ├── phydm_dig.h │ │ │ │ │ │ ├── phydm_dynamicbbpowersaving.c │ │ │ │ │ │ ├── phydm_dynamicbbpowersaving.h │ │ │ │ │ │ ├── phydm_dynamictxpower.c │ │ │ │ │ │ ├── phydm_dynamictxpower.h │ │ │ │ │ │ ├── phydm_edcaturbocheck.c │ │ │ │ │ │ ├── phydm_edcaturbocheck.h │ │ │ │ │ │ ├── phydm_features.h │ │ │ │ │ │ ├── phydm_hwconfig.c │ │ │ │ │ │ ├── phydm_hwconfig.h │ │ │ │ │ │ ├── phydm_interface.c │ │ │ │ │ │ ├── phydm_interface.h │ │ │ │ │ │ ├── phydm_iqk.h │ │ │ │ │ │ ├── phydm_kfree.c │ │ │ │ │ │ ├── phydm_kfree.h │ │ │ │ │ │ ├── phydm_noisemonitor.c │ │ │ │ │ │ ├── phydm_noisemonitor.h │ │ │ │ │ │ ├── phydm_pathdiv.c │ │ │ │ │ │ ├── phydm_pathdiv.h │ │ │ │ │ │ ├── phydm_powertracking_ap.c │ │ │ │ │ │ ├── phydm_powertracking_ap.h │ │ │ │ │ │ ├── phydm_powertracking_ce.c │ │ │ │ │ │ ├── phydm_powertracking_ce.h │ │ │ │ │ │ ├── phydm_powertracking_win.c │ │ │ │ │ │ ├── phydm_powertracking_win.h │ │ │ │ │ │ ├── phydm_pre_define.h │ │ │ │ │ │ ├── phydm_precomp.h │ │ │ │ │ │ ├── phydm_rainfo.c │ │ │ │ │ │ ├── phydm_rainfo.h │ │ │ │ │ │ ├── phydm_reg.h │ │ │ │ │ │ ├── phydm_regdefine11ac.h │ │ │ │ │ │ ├── phydm_regdefine11n.h │ │ │ │ │ │ ├── phydm_types.h │ │ │ │ │ │ ├── rtchnlplan.c │ │ │ │ │ │ ├── rtchnlplan.h │ │ │ │ │ │ ├── rtl8188e │ │ │ │ │ │ │ ├── hal8188erateadaptive.c │ │ │ │ │ │ │ ├── hal8188erateadaptive.h │ │ │ │ │ │ │ ├── hal8188ereg.h │ │ │ │ │ │ │ ├── halhwimg8188e_bb.c │ │ │ │ │ │ │ ├── halhwimg8188e_bb.h │ │ │ │ │ │ │ ├── halhwimg8188e_mac.c │ │ │ │ │ │ │ ├── halhwimg8188e_mac.h │ │ │ │ │ │ │ ├── halhwimg8188e_rf.c │ │ │ │ │ │ │ ├── halhwimg8188e_rf.h │ │ │ │ │ │ │ ├── halhwimg8188e_s_fw.c │ │ │ │ │ │ │ ├── halhwimg8188e_s_fw.h │ │ │ │ │ │ │ ├── halhwimg8188e_t_fw.c │ │ │ │ │ │ │ ├── halhwimg8188e_t_fw.h │ │ │ │ │ │ │ ├── halphyrf_8188e_ap.c │ │ │ │ │ │ │ ├── halphyrf_8188e_ap.h │ │ │ │ │ │ │ ├── halphyrf_8188e_ce.c │ │ │ │ │ │ │ ├── halphyrf_8188e_ce.h │ │ │ │ │ │ │ ├── halphyrf_8188e_win.c │ │ │ │ │ │ │ ├── halphyrf_8188e_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8188e.c │ │ │ │ │ │ │ ├── phydm_regconfig8188e.h │ │ │ │ │ │ │ ├── phydm_rtl8188e.c │ │ │ │ │ │ │ ├── phydm_rtl8188e.h │ │ │ │ │ │ │ └── version_rtl8188e.h │ │ │ │ │ │ ├── rtl8188f │ │ │ │ │ │ │ ├── hal8188freg.h │ │ │ │ │ │ │ ├── halhwimg8188f_bb.c │ │ │ │ │ │ │ ├── halhwimg8188f_bb.h │ │ │ │ │ │ │ ├── halhwimg8188f_fw.c │ │ │ │ │ │ │ ├── halhwimg8188f_fw.h │ │ │ │ │ │ │ ├── halhwimg8188f_mac.c │ │ │ │ │ │ │ ├── halhwimg8188f_mac.h │ │ │ │ │ │ │ ├── halhwimg8188f_rf.c │ │ │ │ │ │ │ ├── halhwimg8188f_rf.h │ │ │ │ │ │ │ ├── halphyrf_8188f.c │ │ │ │ │ │ │ ├── halphyrf_8188f.h │ │ │ │ │ │ │ ├── phydm_regconfig8188f.c │ │ │ │ │ │ │ ├── phydm_regconfig8188f.h │ │ │ │ │ │ │ ├── phydm_rtl8188f.c │ │ │ │ │ │ │ ├── phydm_rtl8188f.h │ │ │ │ │ │ │ └── version_rtl8188f.h │ │ │ │ │ │ ├── rtl8192e │ │ │ │ │ │ │ ├── hal8192ereg.h │ │ │ │ │ │ │ ├── halhwimg8192e_bb.c │ │ │ │ │ │ │ ├── halhwimg8192e_bb.h │ │ │ │ │ │ │ ├── halhwimg8192e_fw.c │ │ │ │ │ │ │ ├── halhwimg8192e_fw.h │ │ │ │ │ │ │ ├── halhwimg8192e_mac.c │ │ │ │ │ │ │ ├── halhwimg8192e_mac.h │ │ │ │ │ │ │ ├── halhwimg8192e_rf.c │ │ │ │ │ │ │ ├── halhwimg8192e_rf.h │ │ │ │ │ │ │ ├── halphyrf_8192e_ap.c │ │ │ │ │ │ │ ├── halphyrf_8192e_ap.h │ │ │ │ │ │ │ ├── halphyrf_8192e_ce.c │ │ │ │ │ │ │ ├── halphyrf_8192e_ce.h │ │ │ │ │ │ │ ├── halphyrf_8192e_win.c │ │ │ │ │ │ │ ├── halphyrf_8192e_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8192e.c │ │ │ │ │ │ │ ├── phydm_regconfig8192e.h │ │ │ │ │ │ │ ├── phydm_rtl8192e.c │ │ │ │ │ │ │ ├── phydm_rtl8192e.h │ │ │ │ │ │ │ └── version_rtl8192e.h │ │ │ │ │ │ ├── rtl8197f │ │ │ │ │ │ │ ├── Hal8197FPhyReg.h │ │ │ │ │ │ │ ├── halhwimg8197f_bb.c │ │ │ │ │ │ │ ├── halhwimg8197f_bb.h │ │ │ │ │ │ │ ├── halhwimg8197f_mac.c │ │ │ │ │ │ │ ├── halhwimg8197f_mac.h │ │ │ │ │ │ │ ├── halhwimg8197f_rf.c │ │ │ │ │ │ │ ├── halhwimg8197f_rf.h │ │ │ │ │ │ │ ├── halphyrf_8197f.c │ │ │ │ │ │ │ ├── halphyrf_8197f.h │ │ │ │ │ │ │ ├── phydm_hal_api8197f.c │ │ │ │ │ │ │ ├── phydm_hal_api8197f.h │ │ │ │ │ │ │ ├── phydm_iqk_8197f.c │ │ │ │ │ │ │ ├── phydm_iqk_8197f.h │ │ │ │ │ │ │ ├── phydm_regconfig8197f.c │ │ │ │ │ │ │ ├── phydm_regconfig8197f.h │ │ │ │ │ │ │ ├── phydm_rtl8197f.c │ │ │ │ │ │ │ ├── phydm_rtl8197f.h │ │ │ │ │ │ │ └── version_rtl8197f.h │ │ │ │ │ │ ├── rtl8703b │ │ │ │ │ │ │ ├── halhwimg8703b_bb.c │ │ │ │ │ │ │ ├── halhwimg8703b_bb.h │ │ │ │ │ │ │ ├── halhwimg8703b_fw.c │ │ │ │ │ │ │ ├── halhwimg8703b_fw.h │ │ │ │ │ │ │ ├── halhwimg8703b_mac.c │ │ │ │ │ │ │ ├── halhwimg8703b_mac.h │ │ │ │ │ │ │ ├── halhwimg8703b_rf.c │ │ │ │ │ │ │ ├── halhwimg8703b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8703b.c │ │ │ │ │ │ │ ├── halphyrf_8703b.h │ │ │ │ │ │ │ ├── phydm_regconfig8703b.c │ │ │ │ │ │ │ ├── phydm_regconfig8703b.h │ │ │ │ │ │ │ └── version_rtl8703b.h │ │ │ │ │ │ ├── rtl8723b │ │ │ │ │ │ │ ├── hal8723breg.h │ │ │ │ │ │ │ ├── halhwimg8723b_bb.c │ │ │ │ │ │ │ ├── halhwimg8723b_bb.h │ │ │ │ │ │ │ ├── halhwimg8723b_fw.c │ │ │ │ │ │ │ ├── halhwimg8723b_fw.h │ │ │ │ │ │ │ ├── halhwimg8723b_mac.c │ │ │ │ │ │ │ ├── halhwimg8723b_mac.h │ │ │ │ │ │ │ ├── halhwimg8723b_mp.c │ │ │ │ │ │ │ ├── halhwimg8723b_mp.h │ │ │ │ │ │ │ ├── halhwimg8723b_rf.c │ │ │ │ │ │ │ ├── halhwimg8723b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8723b_ap.c │ │ │ │ │ │ │ ├── halphyrf_8723b_ap.h │ │ │ │ │ │ │ ├── halphyrf_8723b_ce.c │ │ │ │ │ │ │ ├── halphyrf_8723b_ce.h │ │ │ │ │ │ │ ├── halphyrf_8723b_win.c │ │ │ │ │ │ │ ├── halphyrf_8723b_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8723b.c │ │ │ │ │ │ │ ├── phydm_regconfig8723b.h │ │ │ │ │ │ │ ├── phydm_rtl8723b.c │ │ │ │ │ │ │ ├── phydm_rtl8723b.h │ │ │ │ │ │ │ └── version_rtl8723b.h │ │ │ │ │ │ ├── rtl8723d │ │ │ │ │ │ │ ├── hal8723dreg.h │ │ │ │ │ │ │ ├── halhwimg8723d_bb.c │ │ │ │ │ │ │ ├── halhwimg8723d_bb.h │ │ │ │ │ │ │ ├── halhwimg8723d_fw.c │ │ │ │ │ │ │ ├── halhwimg8723d_fw.h │ │ │ │ │ │ │ ├── halhwimg8723d_mac.c │ │ │ │ │ │ │ ├── halhwimg8723d_mac.h │ │ │ │ │ │ │ ├── halhwimg8723d_rf.c │ │ │ │ │ │ │ ├── halhwimg8723d_rf.h │ │ │ │ │ │ │ ├── halphyrf_8723d.c │ │ │ │ │ │ │ ├── halphyrf_8723d.h │ │ │ │ │ │ │ ├── phydm_regconfig8723d.c │ │ │ │ │ │ │ ├── phydm_regconfig8723d.h │ │ │ │ │ │ │ ├── phydm_rtl8723d.c │ │ │ │ │ │ │ ├── phydm_rtl8723d.h │ │ │ │ │ │ │ └── version_rtl8723d.h │ │ │ │ │ │ ├── rtl8812a │ │ │ │ │ │ │ ├── halhwimg8812a_bb.c │ │ │ │ │ │ │ ├── halhwimg8812a_bb.h │ │ │ │ │ │ │ ├── halhwimg8812a_fw.c │ │ │ │ │ │ │ ├── halhwimg8812a_fw.h │ │ │ │ │ │ │ ├── halhwimg8812a_mac.c │ │ │ │ │ │ │ ├── halhwimg8812a_mac.h │ │ │ │ │ │ │ ├── halhwimg8812a_rf.c │ │ │ │ │ │ │ ├── halhwimg8812a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8812a_ap.c │ │ │ │ │ │ │ ├── halphyrf_8812a_ap.h │ │ │ │ │ │ │ ├── halphyrf_8812a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8812a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8812a_win.c │ │ │ │ │ │ │ ├── halphyrf_8812a_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8812a.c │ │ │ │ │ │ │ ├── phydm_regconfig8812a.h │ │ │ │ │ │ │ ├── phydm_rtl8812a.c │ │ │ │ │ │ │ ├── phydm_rtl8812a.h │ │ │ │ │ │ │ └── version_rtl8812a.h │ │ │ │ │ │ ├── rtl8814a │ │ │ │ │ │ │ ├── hal8814areg_odm.h │ │ │ │ │ │ │ ├── halhwimg8814a_bb.c │ │ │ │ │ │ │ ├── halhwimg8814a_bb.h │ │ │ │ │ │ │ ├── halhwimg8814a_fw.c │ │ │ │ │ │ │ ├── halhwimg8814a_fw.h │ │ │ │ │ │ │ ├── halhwimg8814a_mac.c │ │ │ │ │ │ │ ├── halhwimg8814a_mac.h │ │ │ │ │ │ │ ├── halhwimg8814a_rf.c │ │ │ │ │ │ │ ├── halhwimg8814a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8814a_ap.c │ │ │ │ │ │ │ ├── halphyrf_8814a_ap.h │ │ │ │ │ │ │ ├── halphyrf_8814a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8814a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8814a_win.c │ │ │ │ │ │ │ ├── halphyrf_8814a_win.h │ │ │ │ │ │ │ ├── phydm_iqk_8814a.c │ │ │ │ │ │ │ ├── phydm_iqk_8814a.h │ │ │ │ │ │ │ ├── phydm_regconfig8814a.c │ │ │ │ │ │ │ ├── phydm_regconfig8814a.h │ │ │ │ │ │ │ ├── phydm_rtl8814a.c │ │ │ │ │ │ │ ├── phydm_rtl8814a.h │ │ │ │ │ │ │ └── version_rtl8814a.h │ │ │ │ │ │ ├── rtl8821a │ │ │ │ │ │ │ ├── halhwimg8821a_bb.c │ │ │ │ │ │ │ ├── halhwimg8821a_bb.h │ │ │ │ │ │ │ ├── halhwimg8821a_fw.c │ │ │ │ │ │ │ ├── halhwimg8821a_fw.h │ │ │ │ │ │ │ ├── halhwimg8821a_mac.c │ │ │ │ │ │ │ ├── halhwimg8821a_mac.h │ │ │ │ │ │ │ ├── halhwimg8821a_rf.c │ │ │ │ │ │ │ ├── halhwimg8821a_rf.h │ │ │ │ │ │ │ ├── halphyrf_8821a_ce.c │ │ │ │ │ │ │ ├── halphyrf_8821a_ce.h │ │ │ │ │ │ │ ├── halphyrf_8821a_win.c │ │ │ │ │ │ │ ├── halphyrf_8821a_win.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ap.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ap.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ce.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_ce.h │ │ │ │ │ │ │ ├── phydm_iqk_8821a_win.c │ │ │ │ │ │ │ ├── phydm_iqk_8821a_win.h │ │ │ │ │ │ │ ├── phydm_regconfig8821a.c │ │ │ │ │ │ │ ├── phydm_regconfig8821a.h │ │ │ │ │ │ │ ├── phydm_rtl8821a.c │ │ │ │ │ │ │ ├── phydm_rtl8821a.h │ │ │ │ │ │ │ └── version_rtl8821a.h │ │ │ │ │ │ ├── rtl8821c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_bb.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_bb.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_fw.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_fw.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_mac.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_mac.h │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_rf.c │ │ │ │ │ │ │ ├── halhwimg8821c_testchip_rf.h │ │ │ │ │ │ │ ├── phydm_hal_api8821c.c │ │ │ │ │ │ │ ├── phydm_hal_api8821c.h │ │ │ │ │ │ │ ├── phydm_iqk_8821c.c │ │ │ │ │ │ │ ├── phydm_iqk_8821c.h │ │ │ │ │ │ │ ├── phydm_regconfig8821c.c │ │ │ │ │ │ │ ├── phydm_regconfig8821c.h │ │ │ │ │ │ │ └── version_rtl8821c.h │ │ │ │ │ │ ├── rtl8822b │ │ │ │ │ │ │ ├── halhwimg8822b_bb.c │ │ │ │ │ │ │ ├── halhwimg8822b_bb.h │ │ │ │ │ │ │ ├── halhwimg8822b_fw.c │ │ │ │ │ │ │ ├── halhwimg8822b_fw.h │ │ │ │ │ │ │ ├── halhwimg8822b_mac.c │ │ │ │ │ │ │ ├── halhwimg8822b_mac.h │ │ │ │ │ │ │ ├── halhwimg8822b_rf.c │ │ │ │ │ │ │ ├── halhwimg8822b_rf.h │ │ │ │ │ │ │ ├── halphyrf_8822b.c │ │ │ │ │ │ │ ├── halphyrf_8822b.h │ │ │ │ │ │ │ ├── phydm_hal_api8822b.c │ │ │ │ │ │ │ ├── phydm_hal_api8822b.h │ │ │ │ │ │ │ ├── phydm_iqk_8822b.c │ │ │ │ │ │ │ ├── phydm_iqk_8822b.h │ │ │ │ │ │ │ ├── phydm_regconfig8822b.c │ │ │ │ │ │ │ ├── phydm_regconfig8822b.h │ │ │ │ │ │ │ ├── phydm_rtl8822b.c │ │ │ │ │ │ │ ├── phydm_rtl8822b.h │ │ │ │ │ │ │ └── version_rtl8822b.h │ │ │ │ │ │ └── txbf │ │ │ │ │ │ │ ├── halcomtxbf.c │ │ │ │ │ │ │ ├── halcomtxbf.h │ │ │ │ │ │ │ ├── haltxbf8192e.c │ │ │ │ │ │ │ ├── haltxbf8192e.h │ │ │ │ │ │ │ ├── haltxbf8814a.c │ │ │ │ │ │ │ ├── haltxbf8814a.h │ │ │ │ │ │ │ ├── haltxbf8822b.c │ │ │ │ │ │ │ ├── haltxbf8822b.h │ │ │ │ │ │ │ ├── haltxbfinterface.c │ │ │ │ │ │ │ ├── haltxbfinterface.h │ │ │ │ │ │ │ ├── haltxbfjaguar.c │ │ │ │ │ │ │ ├── haltxbfjaguar.h │ │ │ │ │ │ │ ├── phydm_hal_txbf_api.c │ │ │ │ │ │ │ └── phydm_hal_txbf_api.h │ │ │ │ │ │ ├── platform.mk │ │ │ │ │ │ ├── romeperf.c │ │ │ │ │ │ ├── romeperf.h │ │ │ │ │ │ ├── rtl8672_port.c │ │ │ │ │ │ ├── rtl_types.h │ │ │ │ │ │ ├── rtw_android.c │ │ │ │ │ │ ├── rtw_android.h │ │ │ │ │ │ ├── sha256.c │ │ │ │ │ │ ├── sha256.h │ │ │ │ │ │ ├── to_phydm_trunk │ │ │ │ │ │ ├── tplmt2h.pl │ │ │ │ │ │ ├── typedef.h │ │ │ │ │ │ └── wifi.h │ │ │ │ ├── spi │ │ │ │ │ └── sheipa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dw_common.h │ │ │ │ │ │ ├── modules.builtin │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── spi-sheipa.c │ │ │ │ │ │ └── spi-sheipa.h │ │ │ │ ├── usb │ │ │ │ │ ├── dwc_otg │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dummy_audio.c │ │ │ │ │ │ ├── dwc_otg_attr.c │ │ │ │ │ │ ├── dwc_otg_attr.h │ │ │ │ │ │ ├── dwc_otg_cil.c │ │ │ │ │ │ ├── dwc_otg_cil.h │ │ │ │ │ │ ├── dwc_otg_cil_def.h │ │ │ │ │ │ ├── dwc_otg_cil_intr.c │ │ │ │ │ │ ├── dwc_otg_driver.c │ │ │ │ │ │ ├── dwc_otg_driver.h │ │ │ │ │ │ ├── dwc_otg_hcd.c │ │ │ │ │ │ ├── dwc_otg_hcd.h │ │ │ │ │ │ ├── dwc_otg_hcd_def.h │ │ │ │ │ │ ├── dwc_otg_hcd_intr.c │ │ │ │ │ │ ├── dwc_otg_hcd_queue.c │ │ │ │ │ │ ├── dwc_otg_pcd.c │ │ │ │ │ │ ├── dwc_otg_pcd.h │ │ │ │ │ │ ├── dwc_otg_pcd_intr.c │ │ │ │ │ │ ├── dwc_otg_plat.h │ │ │ │ │ │ ├── dwc_otg_regs.h │ │ │ │ │ │ ├── dwc_otg_regs_src.h │ │ │ │ │ │ ├── lm.c │ │ │ │ │ │ ├── lm.h │ │ │ │ │ │ ├── modules.order │ │ │ │ │ │ ├── otg_dbg.h │ │ │ │ │ │ ├── rtk_otg_autodet.c │ │ │ │ │ │ ├── rtk_otg_autodet.h │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── dwc_otg_test.pm │ │ │ │ │ │ │ ├── test_mod_param.pl │ │ │ │ │ │ │ └── test_sysfs.pl │ │ │ │ │ └── host │ │ │ │ │ │ ├── ehci-rtl819x.c │ │ │ │ │ │ └── ohci-rtl819x.c │ │ │ │ └── watchdog │ │ │ │ │ └── rtl819x_wdt.c │ │ │ ├── include │ │ │ │ ├── nand_spi │ │ │ │ │ ├── ecc_ctrl.h │ │ │ │ │ ├── nand_spi.h │ │ │ │ │ ├── nand_spi_ctrl.h │ │ │ │ │ ├── nand_spi_gd.h │ │ │ │ │ ├── nand_spi_util.h │ │ │ │ │ ├── soc.h │ │ │ │ │ └── util.h │ │ │ │ ├── net │ │ │ │ │ └── rtl │ │ │ │ │ │ ├── fastpath │ │ │ │ │ │ ├── fast_br.h │ │ │ │ │ │ └── fastpath_core.h │ │ │ │ │ │ ├── features │ │ │ │ │ │ ├── fast_bridge.h │ │ │ │ │ │ ├── lan_restrict.h │ │ │ │ │ │ ├── rtl_dev_stats.h │ │ │ │ │ │ ├── rtl_features.h │ │ │ │ │ │ ├── rtl_igmp_ps_hook.h │ │ │ │ │ │ ├── rtl_private_struct.h │ │ │ │ │ │ ├── rtl_ps_hooks.h │ │ │ │ │ │ ├── rtl_ps_log.h │ │ │ │ │ │ └── rtl_sched_hooks.h │ │ │ │ │ │ ├── rtk_stp.h │ │ │ │ │ │ ├── rtk_vlan.h │ │ │ │ │ │ ├── rtl8198c_arp_ipv6_api.h │ │ │ │ │ │ ├── rtl8198c_route_ipv6_api.h │ │ │ │ │ │ ├── rtl865x_arp_api.h │ │ │ │ │ │ ├── rtl865x_fdb_api.h │ │ │ │ │ │ ├── rtl865x_igmpsnooping.h │ │ │ │ │ │ ├── rtl865x_igmpsnooping_glue.h │ │ │ │ │ │ ├── rtl865x_ip_api.h │ │ │ │ │ │ ├── rtl865x_localPublic.h │ │ │ │ │ │ ├── rtl865x_multicast.h │ │ │ │ │ │ ├── rtl865x_multipleWan_api.h │ │ │ │ │ │ ├── rtl865x_nat.h │ │ │ │ │ │ ├── rtl865x_netif.h │ │ │ │ │ │ ├── rtl865x_outputQueue.h │ │ │ │ │ │ ├── rtl865x_ppp.h │ │ │ │ │ │ ├── rtl865x_route_api.h │ │ │ │ │ │ ├── rtl_dnstrap.h │ │ │ │ │ │ ├── rtl_dot1x.h │ │ │ │ │ │ ├── rtl_glue.h │ │ │ │ │ │ ├── rtl_multi_wan.h │ │ │ │ │ │ ├── rtl_nf.h │ │ │ │ │ │ ├── rtl_nic.h │ │ │ │ │ │ ├── rtl_queue.h │ │ │ │ │ │ ├── rtl_sendfile.h │ │ │ │ │ │ └── rtl_types.h │ │ │ │ ├── net80211 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.kernel │ │ │ │ │ ├── _ieee80211.h │ │ │ │ │ ├── ieee80211.h │ │ │ │ │ ├── ieee80211_crypto.h │ │ │ │ │ └── ieee80211_ioctl.h │ │ │ │ └── uapi │ │ │ │ │ └── linux │ │ │ │ │ └── netfilter_ipv4 │ │ │ │ │ ├── ip_conntrack_pptp.h │ │ │ │ │ ├── ipt_TRIGGERPORT.h │ │ │ │ │ └── listhelp.h │ │ │ └── net │ │ │ │ └── rtl │ │ │ │ └── features │ │ │ │ ├── Makefile │ │ │ │ ├── fast_bridge.c │ │ │ │ ├── lan_restrict.c │ │ │ │ ├── rtl_features.c │ │ │ │ ├── rtl_nf_connGC.c │ │ │ │ └── rtl_ps_hooks.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── Makefile.new │ │ │ └── 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 │ │ ├── patches-3.10 │ │ │ ├── 100-rlx_build.patch │ │ │ ├── 101-rtkmips_arch_add.patch │ │ │ ├── 102-rtkmips_98C_and_GIC_fix.patch │ │ │ ├── 103-rtkmips_arch_add_97f.patch │ │ │ ├── 110-rlx_flash.patch │ │ │ ├── 111-rlx_819x_sw.patch │ │ │ ├── 112_rlx_nand_flash.patch │ │ │ ├── 113_rlx_nand_flash_chip.patch │ │ │ ├── 114-rlx_819x_usb.patch │ │ │ ├── 115-rlx-819x_usb_otg.patch │ │ │ ├── 116-rlx-8192cd-add-config.patch │ │ │ ├── 117-rlx-export.dev_change_name.patch │ │ │ ├── 120-rtk-819x_watchdog.patch │ │ │ ├── 125-rlx-819x_usb_otg_alignment_fix.patch │ │ │ ├── 126-rlx-819x_usb_otg_smp_fix.patch │ │ │ ├── 205-MIPS-98c-rcu-stall-fix.patch │ │ │ ├── 300-bluetooth_driver.patch │ │ │ ├── 400-rtl-smb_speedup.patch │ │ │ ├── 402-rtl_sendfile-kernel.patch │ │ │ ├── 500-netfilter_layer7_coderefine.patch │ │ │ ├── 600-rtl8197f-spi.patch │ │ │ ├── 601-rtl8197f-uart.patch │ │ │ ├── 900-realtek-dma-operation.patch │ │ │ ├── 990-watchdog_panic_workaround.patch │ │ │ ├── 991-realtek-hw_crypto.patch │ │ │ ├── 992-rtk-spi.patch │ │ │ ├── 993-realtek-hw_crypto_cbc_fix.patch │ │ │ ├── 995-realtek-hw_crypto_refine_lock.patch │ │ │ ├── 996-kernel_exception_reboot.patch │ │ │ ├── 9990-rtl_fastpath.patch │ │ │ ├── 9991-rtl_hw_napt.patch │ │ │ ├── 9992-rtl_dev_stats.patch │ │ │ ├── 9993-rtl_hw_qos.patch │ │ │ ├── 9994-rtl_hw_napt_fixed.patch │ │ │ └── 9995-rtl_hw_multicast.patch │ │ └── rtl8197f │ │ │ ├── config-3.10 │ │ │ ├── config-3.10.old │ │ │ ├── config-3.10_nand │ │ │ ├── config.bkup │ │ │ ├── config.bkup.kernel_cmdline_can_run │ │ │ ├── kconfig │ │ │ └── USB_97fs_config-3.10 │ │ │ ├── profiles │ │ │ └── 120-AP.mk │ │ │ └── target.mk │ ├── sibyte │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-3.3 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.3 │ │ │ ├── 101-rhone_physmap.patch │ │ │ ├── 103-m41t80_smbus.patch │ │ │ ├── 104-sibyte_rtc_cleanup.patch │ │ │ ├── 105-sibyte_hwmon.patch │ │ │ └── 106-no_module_reloc.patch │ ├── sparc │ │ ├── Makefile │ │ ├── config-default │ │ └── image │ │ │ └── Makefile │ ├── sunxi │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 01_preinit_sunxi.sh │ │ │ │ └── sunxi.sh │ │ ├── config-3.12 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-3.12 │ │ │ ├── 100-clk-sunxi_register_factors.patch │ │ │ ├── 101-clk-sunxi_add-gating-pll1.patch │ │ │ ├── 102-clk-sunxi_add_pll4.patch │ │ │ ├── 103-clk-sunxi_add_pll5-6.patch │ │ │ ├── 104-arm-sunxi_add_pll5-6_dts.patch │ │ │ ├── 105-clk-sunxi_mod0.patch │ │ │ ├── 120-split-dt-for-sun6i-sun7i.patch │ │ │ ├── 130-sun7i-enable-i2c-ctrlers.patch │ │ │ ├── 131-sun7i-add-i2c-pinmuxing.patch │ │ │ ├── 132-add-dt-i2c-for-olinuxino-a20.patch │ │ │ ├── 140-add-a31-reset-driver.patch │ │ │ ├── 141-add-Kconfig-for-reset.patch │ │ │ ├── 142-register-a31-reset.patch │ │ │ ├── 143-add-dtsi-for-reset.patch │ │ │ ├── 145-fix-reset-for-all-sunxi.patch │ │ │ ├── 150-sun4i-add-dt-bindings.patch │ │ │ ├── 151-clk-sunxi-add-usbclocks.patch │ │ │ ├── 152-sun4i-dt-add-usb-ehci-bindings.patch │ │ │ ├── 153-add-sunxi-ehci.patch │ │ │ ├── 154-add-ehci-for-a1000.patch │ │ │ ├── 155-add-ehci-for-cubieboard-a10.patch │ │ │ ├── 156-sun7i-add-dt-bindings-for-usbclocks.patch │ │ │ ├── 157-sun7i-add-dt-usb-ehci-bindings.patch │ │ │ ├── 158-sun5i-add-dt-bindings-for-usbclocks.patch │ │ │ ├── 159-sun5i-add-support-for-usbclocks.patch │ │ │ ├── 160-sun5i-dt-add-usb-ehci-bindings.patch │ │ │ ├── 161-sun5i-add-dt-ehci-for-a13-olinuxino.patch │ │ │ ├── 162-add-dt-ehci-for-a20-olinuxino.patch │ │ │ ├── 170-sunxi-sid-initial.patch │ │ │ ├── 171-add-dt-sunxi-sid.patch │ │ │ ├── 175-sunxi-rtc.patch │ │ │ └── 176-add-dt-rtc-for-sun4i-7i.patch │ │ └── profiles │ │ │ ├── 01-default.mk │ │ │ ├── a13-olinuxino.mk │ │ │ ├── a20-olinuxino.mk │ │ │ ├── cubieboard.mk │ │ │ └── cubieboard2.mk │ ├── uml │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.8 │ │ │ ├── 001-fix_make_headers_install.patch │ │ │ ├── 002-fix_compilation.patch │ │ │ └── 100-boot-parameter-mangling.patch │ ├── x86 │ │ ├── Makefile │ │ ├── alix2 │ │ │ ├── base-files │ │ │ │ └── etc │ │ │ │ │ ├── config │ │ │ │ │ ├── network │ │ │ │ │ └── system │ │ │ │ │ └── hotplug.d │ │ │ │ │ └── button │ │ │ │ │ └── 50-reboot │ │ │ ├── config-3.10 │ │ │ └── target.mk │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── defconfig │ │ │ │ │ ├── net4801 │ │ │ │ │ │ └── network │ │ │ │ │ └── net4826 │ │ │ │ │ │ └── network │ │ │ │ ├── init.d │ │ │ │ │ └── defconfig │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 15_essential_fs_x86 │ │ │ │ ├── 20_check_iso │ │ │ │ └── 89_move_config │ │ │ │ ├── soekris.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.10 │ │ ├── config-3.3 │ │ ├── config-3.6 │ │ ├── config-3.7 │ │ ├── config-3.8 │ │ ├── ep80579 │ │ │ ├── config-3.3 │ │ │ └── target.mk │ │ ├── generic │ │ │ ├── config-3.10 │ │ │ ├── profiles │ │ │ │ ├── 000-Generic.mk │ │ │ │ ├── Soekris45xx.mk │ │ │ │ ├── Soekris48xx.mk │ │ │ │ └── Wrap.mk │ │ │ └── target.mk │ │ ├── geos │ │ │ ├── base-files │ │ │ │ └── etc │ │ │ │ │ ├── config │ │ │ │ │ ├── network │ │ │ │ │ └── system │ │ │ │ │ └── hotplug.d │ │ │ │ │ └── button │ │ │ │ │ └── 50-reboot │ │ │ ├── config-3.3 │ │ │ ├── config-3.6 │ │ │ ├── config-3.7 │ │ │ ├── config-3.8 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_image_generic.sh │ │ │ ├── gen_image_olpc.sh │ │ │ ├── grub-early.cfg │ │ │ ├── grub-iso.cfg │ │ │ ├── grub.cfg │ │ │ ├── mkimg_bifferboard.py │ │ │ ├── mkimg_sitecom.pl │ │ │ └── olpc.fth │ │ ├── kvm_guest │ │ │ ├── config-3.3 │ │ │ ├── config-3.7 │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── net5501 │ │ │ ├── base-files │ │ │ │ └── etc │ │ │ │ │ ├── config │ │ │ │ │ ├── network │ │ │ │ │ └── system │ │ │ │ │ └── hotplug.d │ │ │ │ │ └── button │ │ │ │ │ └── 50-reboot │ │ │ ├── config-3.3 │ │ │ └── target.mk │ │ ├── olpc │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf │ │ │ │ │ └── config │ │ │ │ │ │ └── network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 15_essential_fs_x86 │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-3.3 │ │ │ └── target.mk │ │ ├── patches-3.10 │ │ │ ├── 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 │ │ ├── patches-3.3 │ │ │ ├── 001-alix_platform.patch │ │ │ ├── 002-geos_platform.patch │ │ │ ├── 003-via-rhine-crash-fix.patch │ │ │ ├── 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 │ │ ├── patches-3.7 │ │ │ ├── 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 │ │ ├── patches-3.8 │ │ │ ├── 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-3.3 │ │ │ ├── profiles │ │ │ │ ├── ar525w.mk │ │ │ │ ├── bifferboard.mk │ │ │ │ ├── r8610.mk │ │ │ │ └── sitecom.mk │ │ │ └── target.mk │ │ ├── thincan │ │ │ ├── base-files │ │ │ │ └── etc │ │ │ │ │ └── init.d │ │ │ │ │ └── alsa │ │ │ ├── config-3.3 │ │ │ ├── profiles │ │ │ │ └── dbe61.mk │ │ │ └── target.mk │ │ └── xen_domu │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-3.3 │ │ │ └── target.mk │ └── xburst │ │ ├── Makefile │ │ ├── base-files │ │ └── etc │ │ │ └── config │ │ │ ├── fstab │ │ │ ├── network │ │ │ └── system │ │ ├── config-3.10 │ │ ├── id800wt │ │ ├── config-3.8 │ │ └── target.mk │ │ ├── image │ │ ├── Makefile │ │ └── ubinize.cfg │ │ ├── modules.mk │ │ ├── n516 │ │ ├── config-3.8 │ │ └── target.mk │ │ ├── n526 │ │ ├── config-3.8 │ │ └── target.mk │ │ ├── patches-3.10 │ │ ├── 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-MMC-JZ4740-Remove-duplicated-code.patch │ │ ├── 005-MMC-JZ4740-Fix-handling-of-read-errors.patch │ │ ├── 006-ASoC-JZ4740-delay-activation-of-the-DAC-to-work-arou.patch │ │ ├── 007-RTC-JZ4740-Init-the-regulator-register-on-startup.patch │ │ ├── 008-Add-jz4740-udc-driver.patch │ │ ├── 009-Add-ili8960-lcd-driver.patch │ │ ├── 010-qi_lb60-Don-t-use-3-wire-spi-mode-for-the-display-fo.patch │ │ ├── 011-dma-Add-a-jz4740-dmaengine-driver.patch │ │ ├── 012-MIPS-JZ4740-Correct-clock-gate-bit-for-DMA-controlle.patch │ │ ├── 013-MIPS-JZ4740-Acquire-and-enable-DMA-controller-clock.patch │ │ ├── 014-MIPS-jz4740-Register-jz4740-DMA-device.patch │ │ ├── 015-MIPS-jz4740-Remove-custom-DMA-API.patch │ │ └── 016-ASoC-jz4740-Use-the-generic-dmaengine-PCM-driver.patch │ │ └── qi_lb60 │ │ ├── config-3.8 │ │ └── target.mk ├── sdk │ ├── Config.in │ ├── Makefile │ ├── convert-config.pl │ └── files │ │ ├── Config.in │ │ ├── Makefile │ │ └── README.SDK └── toolchain │ ├── Config.in │ ├── Makefile │ └── files │ ├── README.TOOLCHAIN │ └── wrapper.sh ├── toolchain ├── Config.in ├── Makefile ├── binutils │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 2.20.1 │ │ ├── 110-arm-eabi-conf.patch │ │ ├── 111-pr7093.elf32-arm.c.patch │ │ ├── 200-mips_non_pic.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 310-backport_fPIE_mips_fix.patch │ │ ├── 400-autoreconf-compat.patch │ │ └── 700-avr32.patch │ │ ├── 2.22 │ │ ├── 200-musl.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-fix_arm_gc_sections.patch │ │ ├── 500-arm_ld_assert_fix.patch │ │ ├── 600-mips_no_dynamic_linking_sym.patch │ │ └── 999-ppc-textrels.patch │ │ ├── 2.23.1 │ │ ├── 200-musl.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ └── 400-mips_no_dynamic_linking_sym.patch │ │ └── linaro │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ └── 400-mips_no_dynamic_linking_sym.patch ├── eglibc │ ├── 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 ├── gcc │ ├── Config.in │ ├── Config.version │ ├── common.mk │ ├── files │ │ └── alternate-arch-cc.in │ ├── final │ │ └── Makefile │ ├── initial │ │ └── Makefile │ ├── minimal │ │ └── Makefile │ └── patches │ │ ├── 4.4.7 │ │ ├── 100-uclibc-conf.patch │ │ ├── 301-missing-execinfo_h.patch │ │ ├── 302-c99-snprintf.patch │ │ ├── 305-libmudflap-susv3-legacy.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-avr32_support.patch │ │ ├── 931-avr32_disable_shifted_data_opt.patch │ │ ├── 933-avr32_bug_7435.patch │ │ ├── 934-avr32_bug_9675.patch │ │ ├── 993-arm_insn-opinit-RTX_CODE-fixup.patch │ │ └── 999-coldfire.patch │ │ ├── 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 │ │ └── 999-coldfire.patch │ │ ├── 4.8-linaro │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-weak_data_fix.patch │ │ ├── 010-documentation.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl.patch │ │ ├── 210-disable_libsanitizer_off_t_check.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.patch │ │ ├── 910-mbsd_multi.patch │ │ └── 920-specs_nonfatal_getenv.patch │ │ └── 4.8.0 │ │ ├── 010-documentation.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl.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.patch │ │ ├── 910-mbsd_multi.patch │ │ └── 920-specs_nonfatal_getenv.patch ├── gdb │ ├── Makefile │ └── patches │ │ ├── 100-ppc_compile_fix.patch │ │ ├── 110-no_extern_inline.patch │ │ └── 600-fix-compile-flag-mismatch.patch ├── info.mk ├── insight │ ├── Makefile │ └── patches │ │ └── 600-fix-compile-flag-mismatch.patch ├── kernel-headers │ ├── Makefile │ └── patches-3.3.5 │ │ └── 100-ext2_fs_header.patch ├── llvm │ ├── Makefile │ └── patches │ │ ├── 100-darwin_arch_auto.patch │ │ └── 110-darwin_version_detect.patch ├── 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 │ │ ├── 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 │ │ ├── avr32 │ │ ├── common │ │ ├── cris │ │ ├── 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 │ │ ├── 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 │ │ ├── 140-avr32_atomic_fix.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 │ │ ├── 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 │ └── 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 ├── 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 ├── dosfstools └── Makefile ├── 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 ├── 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 │ ├── 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 │ ├── 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 ├── genext2fs ├── Makefile └── patches │ ├── 100-c99_scanf.patch │ ├── 200-autoconf.patch │ ├── 300-blocksize-creator.patch │ └── 400-byteswap_fix.patch ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h ├── getline.h └── sys │ └── sysmacros.h ├── ipkg-utils ├── Makefile └── patches │ ├── 100-build_clean.patch │ ├── 110-buildpackage.patch │ ├── 111-buildpackage_conffiles.patch │ ├── 120-build_tar.patch │ ├── 130-tar_wildcards.patch │ ├── 140-portability.patch │ ├── 150-uppercase_letters.patch │ ├── 160-find.patch │ ├── 170-resolve_conffiles.patch │ ├── 180-add_installed_size.patch │ ├── 190-preserve_permissions.patch │ ├── 200-force_gnu_format.patch │ └── 210-remove_field_checks.patch ├── 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 ├── missing-macros ├── Makefile └── src │ ├── README │ └── m4 │ ├── as-ac-expand.m4 │ ├── as-compiler-flag.m4 │ ├── as-unaligned-access.m4 │ ├── as-version.m4 │ ├── dnet.m4 │ ├── esd.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 │ ├── xaw.m4 │ └── xmms.m4 ├── mkimage ├── Makefile └── patches │ ├── 010-freebsd-ulong-fix.patch │ ├── 020-openbsd_fixes.patch │ ├── 030-allow-to-use-different-magic.patch │ ├── 040-include_order.patch │ ├── 050-image_h_portability.patch │ └── 060-remove_kernel_includes.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 ├── mtd-utils ├── Makefile ├── include │ ├── fls.h │ └── linux │ │ └── types.h └── patches │ ├── 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 ├── padjffs2 ├── Makefile └── src │ ├── Makefile │ └── padjffs2.c ├── patch-image ├── Makefile └── src │ ├── patch-cmdline.c │ └── patch-dtb.c ├── patch └── Makefile ├── 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 ├── rtk-tools ├── Makefile └── src │ ├── apmib.h │ ├── cvimg.c │ └── mgbin.c ├── 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 ├── xfce-macros └── Makefile ├── xorg-macros └── Makefile ├── xz └── Makefile └── yaffs2 ├── Makefile └── patches ├── 100-compile.patch └── 110-openbsd-compat.patch /README.md: -------------------------------------------------------------------------------- 1 | # openwrt_rtk 2 | -------------------------------------------------------------------------------- /original/UserGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/original/UserGuide -------------------------------------------------------------------------------- /original/bootcode.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/original/bootcode.tar.gz -------------------------------------------------------------------------------- /original/document/RTK_Repeater_WEB_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/original/document/RTK_Repeater_WEB_guide.pdf -------------------------------------------------------------------------------- /original/document/UserGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/original/document/UserGuide -------------------------------------------------------------------------------- /rtk_openwrt_sdk/.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/.gitignore -------------------------------------------------------------------------------- /rtk_openwrt_sdk/BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/BSDmakefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/LICENSE -------------------------------------------------------------------------------- /rtk_openwrt_sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/config/Config-build.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/config/Config-devel.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/config/Config-images.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/config/Config-kernel.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/.gitignore -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/adding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/adding.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/bugs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/bugs.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/build.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/build.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/config.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/debugging.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/init-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/init-scripts.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/network-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/network-scripts.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/network.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/network.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/openwrt.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/openwrt.sty -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/openwrt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/openwrt.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/submitting-patches.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/submitting-patches.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/wireless.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/wireless.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/docs/working.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/docs/working.tex -------------------------------------------------------------------------------- /rtk_openwrt_sdk/feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/feeds.conf.default -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/autotools.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/cmake.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/debug.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/depends.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/device_table.txt -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/download.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/feeds.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/host-build.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/host.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/image.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/kernel-build.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/kernel-defaults.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/kernel-version.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/kernel.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/ltqtapi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/ltqtapi.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/netfilter.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/nls.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/package-bin.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/package-defaults.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/package-ipkg.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/package.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/prereq-build.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/prereq.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/quilt.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/scan.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/scons.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/shell.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/arm-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/arm-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/armeb-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/armeb-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/avr32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/avr32-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/cris-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/cris-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/i486-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/i486-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/i686-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/i686-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/linux-gnu: -------------------------------------------------------------------------------- 1 | . $TOPDIR/include/site/linux 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/linux-uclibc: -------------------------------------------------------------------------------- 1 | . $TOPDIR/include/site/linux 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/m68k-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/m68k-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mips-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mips-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mips-linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mips-linux-gnu -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mips-rlx4181-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mips-rlx4181-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mips-rlx5281-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mips-rlx5281-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mips64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mips64-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mips64el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mips64el-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mipsel-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mipsel-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/mipsel-linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/mipsel-linux-gnu -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/powerpc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/powerpc-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/sparc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/sparc-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/sparc-linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/sparc-linux-gnu -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/site/x86_64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/site/x86_64-linux -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/subdir.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/toolchain-build.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/toplevel.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/uclibc++.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/unpack.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/verbose.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/include/version.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/base-files/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/etc/diag.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (C) 2006-2009 OpenWrt.org 3 | 4 | set_state() { :; } 5 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/etc/openwrt_version: -------------------------------------------------------------------------------- 1 | %V 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/etc/rc.button/failsafe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${TYPE}" = "switch" ] || echo ${BUTTON} > /tmp/failsafe_button 4 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/etc/rc.button/power: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${ACTION}" = "released" ] || exit 0 4 | 5 | exec /sbin/poweroff 6 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/etc/shells: -------------------------------------------------------------------------------- 1 | /bin/ash 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/base-files/files/rom/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/base-files/files/rom/note -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/apex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/apex/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-pxa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-pxa/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/uboot-sunxi/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/uboot-sunxi/uEnv.txt -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/boot/yamonenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/boot/yamonenv/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/chinadns/.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/chinadns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/chinadns/LICENSE -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/chinadns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/chinadns/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/chinadns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/chinadns/README.md -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/oprofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/devel/oprofile/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/devel/strace/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/devel/valgrind/src/abort.c: -------------------------------------------------------------------------------- 1 | void abort(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/ar7-atm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/ar7-atm/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/ar7-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/ar7-atm/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/avila-wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/avila-wdt/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/avila-wdt/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := avila-wdt.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/button-hotplug/src/Kconfig: -------------------------------------------------------------------------------- 1 | config BUTTON_HOTPLUG 2 | tristate "Button Hotplug driver" 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_BUTTON_HOTPLUG} += button-hotplug.o -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/fastpath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/fastpath/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/gpio-button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += gpio-button-hotplug.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/i2c-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_I2C_GPIO_CUSTOM} += i2c-gpio-custom.o -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/rotary-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_ROTARY_GPIO_CUSTOM} += rotary-gpio-custom.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/rtl_fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/rtl_fs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/rtl_nf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/rtl_nf/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/spi-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_SPI_GPIO_CUSTOM} += spi-gpio-custom.o -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/trelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/kernel/trelay/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/trelay/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := trelay.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/w1-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_W1_MASTER_GPIO_CUSTOM} += w1-gpio-custom.o -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/kernel/wrt55agv2-spidevs/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += wrt55agv2_spidevs.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/cyassl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/cyassl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libnl-tiny/src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libnl-tiny/src/msg.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libnl-tiny/src/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libnl-tiny/src/nl.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libnl-tiny/src/unl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libnl-tiny/src/unl.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libreadline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libreadline/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/librpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/librpc/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/polarssl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/popt/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/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 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/network/ipv6/map/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/ead/src/tinysrp/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/mdns/files/mdns.config: -------------------------------------------------------------------------------- 1 | config mdns 2 | list network lan 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/openvpn-easy-rsa/files/easy-rsa.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/openvpn-easy-rsa/files/easy-rsa.serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/ppp/files/etc/ppp/chap-secrets: -------------------------------------------------------------------------------- 1 | #USERNAME PROVIDER PASSWORD IPADDRESS 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/services/ppp/files/etc/ppp/radius/servers: -------------------------------------------------------------------------------- 1 | # SERVER SECRET 2 | localhost secret 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/fstools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/fstools/files/mount.hotplug: -------------------------------------------------------------------------------- 1 | /sbin/block hotplug 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mountd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mountd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/opkg/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/procd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/ubox/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/ubus/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/uci/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/udev/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/udev/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/udev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/udev/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/bluez/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/bluez/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/bluez/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/bluez/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/bluez/files/givepin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/bluez/files/givepin -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/busybox/files/cron -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/e2fsprogs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/e2fsprogs/files/e2fsck.conf: -------------------------------------------------------------------------------- 1 | [options] 2 | broken_system_clock = true 3 | 4 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/lua/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/mkelfimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/mkelfimage/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/robocfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/robocfg/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/rtk_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/rtk_app/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/rtk_app/files/rtk_app.conf: -------------------------------------------------------------------------------- 1 | config rtk_app 2 | option efuse enabled 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/rtk_app/src/apmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/rtk_app/src/apmib.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/rtk_app/src/mibhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/rtk_app/src/mibhw.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/rtk_cloud/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/rtk_cloud/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/ubi-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/ubi-utils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/usbmode/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/usbmode/files/usbmode.hotplug: -------------------------------------------------------------------------------- 1 | /etc/init.d/usbmode start 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/usbreset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8196e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8196e -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8197f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8197f -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8198c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8198c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl819xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl819xd -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8881a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8881a -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8954e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_deconfig/defconfig_rtl8954e -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rtk_scripts/rtk_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rtk_scripts/rtk_init.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/rules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/arm-magic.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/brcmImage.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/checkpatch.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/clean-package.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/cleanfile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/cleanpatch -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/combined-image.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config.guess -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config.rpath -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config.sub -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/.gitignore -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/conf.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/confdata.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/expr.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/expr.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/list.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lkc.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/mconf.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/menu.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/symbol.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/util.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/zconf.l -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/config/zconf.y -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/deptest.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/diffconfig.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/download.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/env -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/feeds -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/freebsd.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/getver.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/ipkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/ipkg -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/kconfig.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/metadata.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/metadata.pm -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/mkits.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/openbsd.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/pad_image -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/patch-specs.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/relink-lib.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/remote-gdb -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/rstrip.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/slugimage.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/timestamp.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/scripts/update-package-md5sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/scripts/update-package-md5sum -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/adm5120/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/adm5120/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/files/arch/mips/adm5120/generic/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_EB_214A) += eb-214a.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/files/arch/mips/adm5120/motorola/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_PMUGW) += pmugw.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/files/arch/mips/adm5120/osbridge/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_5GXI) += 5gxi.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/adm5120/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm5120/router_le/config-3.8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm8668/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/adm8668/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm8668/base-files/sbin/hotplug.failsafe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | case "$1" in 3 | button) kill -USR1 1;; 4 | esac 5 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm8668/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/adm8668/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/adm8668/files/arch/mips/adm8668/Kconfig: -------------------------------------------------------------------------------- 1 | config ARM_AMBA 2 | def_bool y 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/amazon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/amazon/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/amazon/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/amazon/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar7/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar7/ac49x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar7/ac49x/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar7/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar7/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar7/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar7/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar7/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar7/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar71xx/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar71xx/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar71xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar71xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar71xx/generic/config-default: -------------------------------------------------------------------------------- 1 | CONFIG_CMDLINE="rootfstype=squashfs,jffs2 noinitrd" 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/at91/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/at91/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/at91/config-default -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/atheros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/atheros/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/atheros/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/atheros/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/atheros/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/atheros/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/au1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/au1000/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/au1000/config-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/au1000/config-3.6 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/au1000/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/au1000/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/avr32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/avr32/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/avr32/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/avr32/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/avr32/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/avr32/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/avr32/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/avr32/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/avr32/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/avr32/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/bcm53xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/bcm53xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm2708/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm2708/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm2708/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm2708/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm2708/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm2708/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm47xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm47xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm47xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm47xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm63xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm63xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm63xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/brcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/brcm63xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cns21xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cns21xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cns21xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cns21xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cns21xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cns21xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cns3xxx/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cns3xxx/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cobalt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cobalt/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cobalt/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cobalt/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/cobalt/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/cobalt/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ep93xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ep93xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ep93xx/config-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ep93xx/config-3.6 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ep93xx/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ep93xx/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ep93xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ep93xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/generic/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/generic/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/imx6/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/imx6/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/imx6/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/imx6/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/imx6/config-3.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/imx6/config-3.12 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/iop32x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/iop32x/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/iop32x/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/iop32x/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ixp4xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ixp4xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ixp4xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ixp4xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ixp4xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ixp4xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/kirkwood/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/kirkwood/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/ase/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/ase/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/dts/H201L.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/dts/H201L.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/dts/WBMR.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/dts/WBMR.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/dts/ar9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/dts/ar9.dtsi -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/dts/vr9.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/dts/vr9.dtsi -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/be64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/be64/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/config-3.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/config-3.12 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/malta/le64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/malta/le64/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mcs814x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mcs814x/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mcs814x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mcs814x/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc52xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc52xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc52xx/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc52xx/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc83xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc83xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc83xx/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc83xx/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc83xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc83xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc85xx/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mpc85xx/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mpc85xx/generic/config-default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mvebu/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mvebu/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mvebu/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mvebu/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mxs/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mxs/config-default -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/mxs/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/mxs/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/omap/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/omap/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/omap/config-default -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/omap24xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/omap24xx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/omap24xx/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/omap24xx/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/omap24xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/omap24xx/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/orion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/orion/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/orion/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/orion/config-default -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/orion/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/orion/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ppc40x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ppc40x/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ppc40x/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ppc40x/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ppc40x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ppc40x/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ppc44x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ppc44x/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ppc44x/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ppc44x/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/pxa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/pxa/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/pxa/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/pxa/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/pxa/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/pxa/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/BC2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/BC2.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/D105.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/D105.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/M3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/M3.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/M4-4M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/M4-4M.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/M4-8M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/M4-8M.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/MPRA1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/MPRA1.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/MPRA2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/MPRA2.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/NW718.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/NW718.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/W150M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/W150M.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/W502U.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/W502U.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/X5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/X5.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/dts/X8.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/dts/X8.dts -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rb532/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rb532/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rb532/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rb532/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rb532/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rb532/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/realtek/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/mips/realtek/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/mips/rtl8197f/modules.builtin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/boot/compressed/dummy.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/Kbuild: -------------------------------------------------------------------------------- 1 | # MIPS headers 2 | generic-y += trace_clock.h 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/current.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/mach-generic/topology.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/parport.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/asm/xor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/uapi/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/include/uapi/asm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/kernel/.gitignore: -------------------------------------------------------------------------------- 1 | vmlinux.lds 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/arch/rlx/power/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_HIBERNATION) += cpu.o hibernate.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXCfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FCfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FFirmware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FIsr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FReg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FRxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FRxDesc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FTxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8814A/Hal8814AFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8822B/Hal8822BFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ACfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AFirmware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AIsr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AReg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ARxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ARxDesc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ATxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/spi/sheipa/modules.builtin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/spi/sheipa/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realtek/files/drivers/usb/dwc_otg/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/realview/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realview/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/realview/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realview/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/realview/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/realview/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/realview/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rtkmips/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/mips/realtek/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/mips/rtl8197f/modules.builtin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/boot/compressed/dummy.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/Kbuild: -------------------------------------------------------------------------------- 1 | # MIPS headers 2 | generic-y += trace_clock.h 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/current.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/mach-generic/topology.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/parport.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/asm/xor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/uapi/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/include/uapi/asm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/kernel/.gitignore: -------------------------------------------------------------------------------- 1 | vmlinux.lds 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/arch/rlx/power/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_HIBERNATION) += cpu.o hibernate.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXCfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FCfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FFirmware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FIsr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FReg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FRxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FRxDesc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FTxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8814A/Hal8814AFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8822B/Hal8822BFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ACfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AFirmware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AIsr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AReg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ARxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ARxDesc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ATxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/spi/sheipa/modules.builtin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/spi/sheipa/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmips/files/drivers/usb/dwc_otg/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/rtkmipsel/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/mips/realtek/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/mips/rtl8197f/modules.builtin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/boot/compressed/dummy.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/Kbuild: -------------------------------------------------------------------------------- 1 | # MIPS headers 2 | generic-y += trace_clock.h 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/current.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/local64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/mach-generic/topology.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/parport.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/asm/xor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/uapi/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/include/uapi/asm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/kernel/.gitignore: -------------------------------------------------------------------------------- 1 | vmlinux.lds 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/arch/rlx/power/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_HIBERNATION) += cpu.o hibernate.o 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXCfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/Hal88XXVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FCfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FFirmware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FIsr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FReg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FRxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FRxDesc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FTxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8197F/Hal8197FVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8814A/Hal8814AFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8822B/Hal8822BFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ACfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AFirmware.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AFirmware.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AHWImg.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AHWImg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AIsr.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AReg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ARxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ARxDesc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881ATxDesc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AVerify.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/net/wireless/rtl8192cd/WlanHAL/RTL88XX/RTL8881A/Hal8881AVerify.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/spi/sheipa/modules.builtin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/spi/sheipa/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/rtkmipsel/files/drivers/usb/dwc_otg/modules.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sibyte/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sibyte/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sibyte/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sibyte/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sparc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sparc/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sparc/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sparc/config-default -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sparc/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sparc/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sunxi/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sunxi/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sunxi/config-3.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sunxi/config-3.12 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/uml/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/uml/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/alix2/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/alix2/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/base-files.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/config-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/config-3.6 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/config-3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/config-3.7 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/geos/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/geos/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/geos/config-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/geos/config-3.6 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/geos/config-3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/geos/config-3.7 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/geos/config-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/geos/config-3.8 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/geos/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/geos/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/image/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/image/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/image/grub.cfg -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/image/olpc.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/image/olpc.fth -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/olpc/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/olpc/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/olpc/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/olpc/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/rdc/config-3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/rdc/config-3.3 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/x86/rdc/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/x86/rdc/target.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/xburst/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/xburst/config-3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/xburst/config-3.10 -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/xburst/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/linux/xburst/modules.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/xburst/n526/config-3.8: -------------------------------------------------------------------------------- 1 | CONFIG_I2C_ALGOBIT=y 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/linux/xburst/qi_lb60/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=QI Ben Nanonote (qi_lb60) 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/sdk/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/sdk/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/sdk/files/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/sdk/files/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/toolchain/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/toolchain/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/eglibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/eglibc/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/eglibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/eglibc/Config.version -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/eglibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/eglibc/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/eglibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/eglibc/common.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/eglibc/config/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/eglibc/config/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/eglibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/eglibc/headers/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/files/alternate-arch-cc.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec @CC_BASE@ @EXTRA_ARCH_OPTS@ "$@" 4 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/final/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/info.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/insight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/insight/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/llvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/llvm/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/Config.version -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/common.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/headers/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/uClibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/uClibc/Config.version -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/autoconf/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/automake/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/automake/files/aclocal: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | aclocal.real $ACLOCAL_INCLUDE $@ 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/b43-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/bc/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/bison/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/ccache/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/ccache/files/ccache_cc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ccache "${TARGET_CC_NOCACHE}" "$@" 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/ccache/files/ccache_cxx: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ccache "${TARGET_CXX_NOCACHE}" "$@" 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/cloog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/cloog/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/cmake/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/elftosb/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/findutils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/flex/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/flock/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/flock/src/flock.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/genext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/genext2fs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/gmp/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/include/byteswap.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/include/elf.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/include/endian.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/include/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/include/getline.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/ipkg-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/ipkg-utils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/libelf/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/libtool/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/lzma/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/m4/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/missing-macros/src/README -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mkimage/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mklibs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mpc/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mpfr/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mtd-utils/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mtd-utils/include/fls.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define fls local_fls 3 | -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/mtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/mtools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/patch-image/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/patch/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/ppl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/ppl/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/qemu/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/quilt/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/rtk-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/rtk-tools/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/rtk-tools/src/apmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/rtk-tools/src/apmib.h -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/rtk-tools/src/cvimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/rtk-tools/src/cvimg.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/rtk-tools/src/mgbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/rtk-tools/src/mgbin.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/scons/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/scons/files/pywrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/scons/files/pywrap.sh -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/sed/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/sparse/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/squashfs/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/squashfs4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/squashfs4/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/sstrip/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/upslug2/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/upx/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/xfce-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/xfce-macros/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/xorg-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/xorg-macros/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/xz/Makefile -------------------------------------------------------------------------------- /rtk_openwrt_sdk/tools/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgoder/openwrt_rtk/HEAD/rtk_openwrt_sdk/tools/yaffs2/Makefile --------------------------------------------------------------------------------