├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README.md ├── config ├── Config-build.in ├── Config-devel.in ├── Config-images.in └── Config-kernel.in ├── docs ├── .gitignore ├── Makefile ├── adding.tex ├── bugs.tex ├── build.tex ├── config.tex ├── debugging.tex ├── init-scripts.tex ├── network-scripts.tex ├── network.tex ├── openwrt.sty ├── openwrt.tex ├── submitting-patches.tex ├── wireless.tex └── working.tex ├── feeds.conf.default ├── include ├── autotools.mk ├── cmake.mk ├── debug.mk ├── depends.mk ├── device_table.txt ├── download.mk ├── feeds.mk ├── host-build.mk ├── host.mk ├── image.mk ├── kernel-build.mk ├── kernel-defaults.mk ├── kernel-version.mk ├── kernel.mk ├── netfilter.mk ├── nls.mk ├── package-bin.mk ├── package-defaults.mk ├── package-dumpinfo.mk ├── package-ipkg.mk ├── package-seccomp.mk ├── package.mk ├── prereq-build.mk ├── prereq.mk ├── quilt.mk ├── scan.awk ├── scan.mk ├── scons.mk ├── shell.sh ├── site │ ├── aarch64 │ ├── aarch64_be │ ├── arm │ ├── armeb │ ├── i386 │ ├── i486 │ ├── i686 │ ├── linux │ ├── m68k │ ├── mips │ ├── mips64 │ ├── mips64el │ ├── mipsel │ ├── powerpc │ ├── sparc │ └── x86_64 ├── subdir.mk ├── target.mk ├── toolchain-build.mk ├── toplevel.mk ├── uclibc++.mk ├── unpack.mk ├── verbose.mk └── version.mk ├── package ├── Makefile ├── base-files │ ├── Makefile │ ├── files │ │ ├── bin │ │ │ ├── board_detect │ │ │ ├── config_generate │ │ │ ├── ipcalc.sh │ │ │ └── login.sh │ │ ├── etc │ │ │ ├── banner │ │ │ ├── banner.failsafe │ │ │ ├── config │ │ │ │ ├── network │ │ │ │ └── system │ │ │ ├── device_info │ │ │ ├── diag.sh │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── hotplug.d │ │ │ │ └── net │ │ │ │ │ └── 00-sysctl │ │ │ ├── init.d │ │ │ │ ├── boot │ │ │ │ ├── done │ │ │ │ ├── led │ │ │ │ ├── sysctl │ │ │ │ ├── sysfixtime │ │ │ │ ├── system │ │ │ │ └── umount │ │ │ ├── inittab │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── opkg │ │ │ │ └── keys │ │ │ │ │ └── de98a2dd1d0f8a07 │ │ │ ├── passwd │ │ │ ├── preinit │ │ │ ├── profile │ │ │ ├── protocols │ │ │ ├── rc.button │ │ │ │ ├── failsafe │ │ │ │ ├── power │ │ │ │ ├── reset │ │ │ │ └── rfkill │ │ │ ├── rc.common │ │ │ ├── rc.local │ │ │ ├── services │ │ │ ├── shadow │ │ │ ├── shells │ │ │ ├── sysctl.conf │ │ │ ├── sysupgrade.conf │ │ │ └── uci-defaults │ │ │ │ ├── 10_migrate-shadow │ │ │ │ ├── 11_migrate-sysctl │ │ │ │ └── 12_network-generate-ula │ │ ├── lib │ │ │ ├── functions.sh │ │ │ ├── functions │ │ │ │ ├── leds.sh │ │ │ │ ├── network.sh │ │ │ │ ├── preinit.sh │ │ │ │ ├── service.sh │ │ │ │ ├── system.sh │ │ │ │ ├── uci-defaults-new.sh │ │ │ │ └── uci-defaults.sh │ │ │ ├── preinit │ │ │ │ ├── 02_default_set_state │ │ │ │ ├── 10_indicate_failsafe │ │ │ │ ├── 10_indicate_preinit │ │ │ │ ├── 10_sysinfo │ │ │ │ ├── 30_failsafe_wait │ │ │ │ ├── 40_run_failsafe_hook │ │ │ │ ├── 50_indicate_regular_preinit │ │ │ │ ├── 70_initramfs_test │ │ │ │ ├── 80_mount_root │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ └── 99_10_run_init │ │ │ └── upgrade │ │ │ │ ├── common.sh │ │ │ │ └── keep.d │ │ │ │ └── base-files-essential │ │ ├── rom │ │ │ └── note │ │ └── sbin │ │ │ ├── firstboot │ │ │ ├── hotplug-call │ │ │ ├── led.sh │ │ │ ├── sysupgrade │ │ │ └── wifi │ └── image-config.in ├── boot │ ├── apex │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 100-openwrt_nslu2_armeb_config.patch │ │ │ ├── 120-openwrt_nslu2_16mb_armeb_config.patch │ │ │ ├── 140-openwrt_fsg3_armeb_config.patch │ │ │ ├── 150-limit_ram_to_64mb.patch │ │ │ └── 160-openwrt_nas100d_armeb_config.patch │ ├── fconfig │ │ └── Makefile │ ├── grub2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-grub_setup_root.patch │ │ │ ├── 200-fix-gets-removal.patch │ │ │ └── 210-fix_serial_rtscts.patch │ ├── imx-bootlets │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-skip_sb_generation.patch │ │ │ ├── 002-set_elftosb_config.patch │ │ │ └── 003-add-olinuxino.patch │ ├── kexec-tools │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Fix-zlib-lzma-decompression.patch │ │ │ ├── 0002-configure.ac-apply-necessary-quotes-to-result-of-mac.patch │ │ │ ├── 0003-mips-fix-compiler-warning-on-printing-64-bit-integer.patch │ │ │ ├── 0004-mips-remove-unused-variable.patch │ │ │ └── 0005-mips-fix-warning-about-implicit-type-conversion.patch │ ├── kobs-ng │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix-mtd-defines.patch │ │ │ └── 002-add-init-size-param.patch │ ├── rbcfg │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── cyg_crc.h │ │ │ ├── cyg_crc32.c │ │ │ ├── main.c │ │ │ └── rbcfg.h │ ├── uboot-sunxi │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 005-add-gmac-tx-delay-variant.patch │ │ │ ├── 901-add-bpi-m1.patch │ │ │ ├── 902-add-bpi-m1-plus.patch │ │ │ └── 903-add-bpi-r1.patch │ │ └── uEnv.txt │ └── yamonenv │ │ ├── Makefile │ │ └── patches │ │ └── 001-yamonenv_mtd_partition.patch ├── devel │ ├── binutils │ │ └── Makefile │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gdb-pr14523-mips-signal-number.patch │ │ │ ├── 100-musl_fix.patch │ │ │ └── 101-arm-uclibc-sim-needs-libm.patch │ ├── oprofile │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-use_insmod_instead_of_modprobe.patch │ │ │ └── 110-fix_compile_error.patch │ ├── perf │ │ └── Makefile │ ├── strace │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-musl_fix.patch │ ├── trace-cmd │ │ ├── Makefile │ │ └── patches │ │ │ └── 110-mac80211_tracepoint.patch │ └── valgrind │ │ ├── Makefile │ │ ├── files │ │ └── default.supp │ │ ├── patches │ │ ├── 100-fix_configure_check.patch │ │ ├── 110-add_a_out_h.patch │ │ └── 200-musl_fix.patch │ │ └── src │ │ └── abort.c ├── firmware │ ├── am33x-cm3 │ │ └── Makefile │ ├── ixp4xx-microcode │ │ ├── Makefile │ │ └── src │ │ │ ├── IxNpeMicrocode.h │ │ │ └── LICENSE.IPL │ ├── linux-firmware │ │ └── Makefile │ └── vsc73x5-ucode │ │ ├── Makefile │ │ └── files │ │ └── Makefile ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-pci-mem-Fix-3.8-build.patch │ │ │ ├── 003-Fix-3.10-build.patch │ │ │ ├── 004-Fix-3.14-build.patch │ │ │ └── 200-initial-macaddr.patch │ ├── ar7-atm │ │ ├── Config.in │ │ ├── Makefile │ │ ├── patches-D7.04.03.00 │ │ │ ├── 100-compile_fix.patch │ │ │ ├── 110-interrupt_fix.patch │ │ │ ├── 120-no_dumb_inline.patch │ │ │ ├── 130-powercutback.patch │ │ │ ├── 140-debug_mode.patch │ │ │ ├── 150-tasklet_mode.patch │ │ │ ├── 160-module-params.patch │ │ │ ├── 170-bus_id_removal.patch │ │ │ ├── 180-git_headers_include.patch │ │ │ ├── 190-2.6.32_proc_fixes.patch │ │ │ ├── 200-2.6.37_args.patch │ │ │ ├── 210-3.3-remove-smp_lock.h.patch │ │ │ ├── 220-3.10-update_proc_code.patch │ │ │ ├── 230-compile_fixes.patch │ │ │ └── 240-3.18_fixes.patch │ │ └── patches-D7.05.01.00 │ │ │ ├── 100-compile_fix.patch │ │ │ ├── 110-interrupt_fix.patch │ │ │ ├── 120-no_dumb_inline.patch │ │ │ ├── 130-powercutback.patch │ │ │ ├── 140-debug_mode.patch │ │ │ ├── 150-tasklet_mode.patch │ │ │ ├── 160-module-params.patch │ │ │ ├── 170-bus_id_removal.patch │ │ │ ├── 180-git_headers_include.patch │ │ │ ├── 190-2.6.32_proc_fixes.patch │ │ │ ├── 200-2.6.37_args.patch │ │ │ ├── 210-3.3-remove-smp_lock.h.patch │ │ │ └── 220-3.10-update_proc_code.patch │ ├── avila-wdt │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── avila-wdt.c │ ├── brcm2708-gpu-fw │ │ └── Makefile │ ├── broadcom-wl │ │ ├── Makefile │ │ ├── files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── net │ │ │ │ │ │ └── 20-broadcom_wds │ │ │ │ └── init.d │ │ │ │ │ └── wlunbind │ │ │ └── lib │ │ │ │ └── wifi │ │ │ │ └── broadcom.sh │ │ ├── patches │ │ │ ├── 003-compat-2.6.35.patch │ │ │ ├── 004-remove-pcmcia.patch │ │ │ ├── 005-fix-mem-leak-on-unload.patch │ │ │ ├── 006-generic-dma-api.patch │ │ │ ├── 007-use-glue-driver.patch │ │ │ ├── 008-fix_virtual_interfaces.patch │ │ │ ├── 009-fix_compile_3_2.patch │ │ │ ├── 010-remove_irqf_samble_random.patch │ │ │ ├── 011-fix_compile_3_4.patch │ │ │ ├── 012-compat-3.10.patch │ │ │ ├── 013-interface-name.patch │ │ │ ├── 014-fix-band-reporting.patch │ │ │ ├── 015-support-probe-of-wds-interfaces.patch │ │ │ ├── 100-fix_nvram_two_devices.patch │ │ │ ├── 110-add_number_to_dev_name.patch │ │ │ ├── 120-fixup-mac-addresses.patch │ │ │ ├── 200-add_bcm_a8xx_support.patch │ │ │ ├── 910-fallback-sprom.patch │ │ │ ├── 912-pci-bus-nvram-hack.patch │ │ │ ├── 913-avoid-dbe-on-ifs_ctl-readw-hack.patch │ │ │ └── 914-eliminate-date-time-error.patch │ │ └── src │ │ │ ├── glue │ │ │ ├── Makefile │ │ │ ├── wl_glue.c │ │ │ └── wl_glue.h │ │ │ └── wlc.c │ ├── button-hotplug │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── button-hotplug.c │ ├── ep80579-drivers │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-igbe_update.patch │ │ │ ├── 002-cflags_cleanup.patch │ │ │ ├── 003-new_irqf_constants.patch │ │ │ ├── 100-iegbe_netdev_ops.patch │ │ │ ├── 101-iegbe_fix_napi_interface.patch │ │ │ ├── 102-iegbe_nuke_polling_netdev.patch │ │ │ ├── 103-iegbe_convert_unicast_addr_list.patch │ │ │ ├── 104-iegbe_group_address_list_and_its_count.patch │ │ │ ├── 105-iegbe_new_dma_masks.patch │ │ │ ├── 106-iegbe_new_irqf_constant.patch │ │ │ ├── 150-ocracoke_island.patch │ │ │ ├── 200-can_fix_ioctl_numbers.patch │ │ │ ├── 210-can_include_linux_fs_h.patch │ │ │ ├── 220-can_fix_irq_request.patch │ │ │ ├── 230-can_remove_driver_data_direct_access.patch │ │ │ ├── 300-wdt_compile_fix.patch │ │ │ ├── 400-edma_fix_irq_request_warning.patch │ │ │ ├── 500-1588_fix_irq_request_warning.patch │ │ │ ├── 600-2.6.27_includes.patch │ │ │ ├── 601-2.6.32_includes.patch │ │ │ ├── 700-iegbe_kcompat_2.6.30.patch │ │ │ ├── 701-iegbe_poll_dev.patch │ │ │ ├── 710-3.3-fix-generated-header-locations.patch │ │ │ ├── 711-3.3-gbe-fixes.patch │ │ │ ├── 712-3.3-can-fixes.patch │ │ │ ├── 713-3.3-gpio-fixes.patch │ │ │ ├── 714-3.3-wdt-fixes.patch │ │ │ └── 715-3.3-1588-fixes.patch │ ├── gpio-button-hotplug │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gpio-button-hotplug.c │ ├── hostap-driver │ │ ├── Makefile │ │ ├── files │ │ │ └── lib │ │ │ │ └── wifi │ │ │ │ └── hostap.sh │ │ └── patches │ │ │ └── 001-fix-txpower.patch │ ├── i2c-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── i2c-gpio-custom.c │ ├── lantiq │ │ ├── ltq-adsl-fw │ │ │ └── Makefile │ │ ├── ltq-adsl-mei │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_mei_interface.h │ │ │ │ └── lantiq_mei.c │ │ ├── ltq-adsl │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 100-dsl_compat.patch │ │ │ │ ├── 110-fix_status_polling_loop.patch │ │ │ │ ├── 120-platform.patch │ │ │ │ ├── 130-linux3.8.patch │ │ │ │ └── 140-linux_3.18.patch │ │ ├── ltq-atm │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_atm_amazon_se.c │ │ │ │ ├── ifxmips_atm_ar9.c │ │ │ │ ├── ifxmips_atm_core.h │ │ │ │ ├── ifxmips_atm_danube.c │ │ │ │ ├── ifxmips_atm_fw_amazon_se.h │ │ │ │ ├── ifxmips_atm_fw_ar9.h │ │ │ │ ├── ifxmips_atm_fw_ar9_retx.h │ │ │ │ ├── ifxmips_atm_fw_danube.h │ │ │ │ ├── ifxmips_atm_fw_danube_retx.h │ │ │ │ ├── ifxmips_atm_fw_regs_amazon_se.h │ │ │ │ ├── ifxmips_atm_fw_regs_ar9.h │ │ │ │ ├── ifxmips_atm_fw_regs_common.h │ │ │ │ ├── ifxmips_atm_fw_regs_danube.h │ │ │ │ ├── ifxmips_atm_fw_regs_vr9.h │ │ │ │ ├── ifxmips_atm_fw_vr9.h │ │ │ │ ├── ifxmips_atm_ppe_amazon_se.h │ │ │ │ ├── ifxmips_atm_ppe_ar9.h │ │ │ │ ├── ifxmips_atm_ppe_common.h │ │ │ │ ├── ifxmips_atm_ppe_danube.h │ │ │ │ ├── ifxmips_atm_ppe_vr9.h │ │ │ │ ├── ifxmips_atm_vr9.c │ │ │ │ └── ltq_atm.c │ │ ├── ltq-deu │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_aes.c │ │ │ │ ├── ifxmips_arc4.c │ │ │ │ ├── ifxmips_async_aes.c │ │ │ │ ├── ifxmips_async_des.c │ │ │ │ ├── ifxmips_des.c │ │ │ │ ├── ifxmips_deu.c │ │ │ │ ├── ifxmips_deu.h │ │ │ │ ├── ifxmips_deu_ar9.c │ │ │ │ ├── ifxmips_deu_ar9.h │ │ │ │ ├── ifxmips_deu_danube.c │ │ │ │ ├── ifxmips_deu_danube.h │ │ │ │ ├── ifxmips_deu_dma.c │ │ │ │ ├── ifxmips_deu_dma.h │ │ │ │ ├── ifxmips_deu_vr9.c │ │ │ │ ├── ifxmips_deu_vr9.h │ │ │ │ ├── ifxmips_md5.c │ │ │ │ ├── ifxmips_md5_hmac.c │ │ │ │ ├── ifxmips_sha1.c │ │ │ │ ├── ifxmips_sha1_hmac.c │ │ │ │ ├── ifxmips_tcrypt.h │ │ │ │ ├── ifxmips_testmgr.h │ │ │ │ ├── internal.h │ │ │ │ └── ltq_deu_testmgr.c │ │ ├── ltq-hcd │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── ifxhcd.c │ │ │ │ ├── ifxhcd.h │ │ │ │ ├── ifxhcd_es.c │ │ │ │ ├── ifxhcd_intr.c │ │ │ │ ├── ifxhcd_queue.c │ │ │ │ ├── ifxusb_cif.c │ │ │ │ ├── ifxusb_cif.h │ │ │ │ ├── ifxusb_cif_d.c │ │ │ │ ├── ifxusb_cif_h.c │ │ │ │ ├── ifxusb_ctl.c │ │ │ │ ├── ifxusb_driver.c │ │ │ │ ├── ifxusb_plat.h │ │ │ │ ├── ifxusb_regs.h │ │ │ │ └── ifxusb_version.h │ │ ├── ltq-ifxos │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ ├── ltq-ptm │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_ptm_adsl.c │ │ │ │ ├── ifxmips_ptm_adsl.h │ │ │ │ ├── ifxmips_ptm_amazon_se.c │ │ │ │ ├── ifxmips_ptm_ar9.c │ │ │ │ ├── ifxmips_ptm_common.h │ │ │ │ ├── ifxmips_ptm_danube.c │ │ │ │ ├── ifxmips_ptm_fw_amazon_se.h │ │ │ │ ├── ifxmips_ptm_fw_ar9.h │ │ │ │ ├── ifxmips_ptm_fw_danube.h │ │ │ │ ├── ifxmips_ptm_fw_regs_adsl.h │ │ │ │ ├── ifxmips_ptm_fw_regs_amazon_se.h │ │ │ │ ├── ifxmips_ptm_fw_regs_ar9.h │ │ │ │ ├── ifxmips_ptm_fw_regs_danube.h │ │ │ │ ├── ifxmips_ptm_fw_regs_vdsl.h │ │ │ │ ├── ifxmips_ptm_fw_regs_vr9.h │ │ │ │ ├── ifxmips_ptm_fw_vr9.h │ │ │ │ ├── ifxmips_ptm_ppe_amazon_se.h │ │ │ │ ├── ifxmips_ptm_ppe_ar9.h │ │ │ │ ├── ifxmips_ptm_ppe_common.h │ │ │ │ ├── ifxmips_ptm_ppe_danube.h │ │ │ │ ├── ifxmips_ptm_ppe_vr9.h │ │ │ │ ├── ifxmips_ptm_test.c │ │ │ │ ├── ifxmips_ptm_vdsl.c │ │ │ │ ├── ifxmips_ptm_vdsl.h │ │ │ │ └── ifxmips_ptm_vr9.c │ │ ├── ltq-tapi │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 000-portability.patch │ │ │ │ ├── 100-ifxmips.patch │ │ │ │ ├── 200-linux-37.patch │ │ │ │ └── 300-linux-310.patch │ │ ├── ltq-vdsl-fw │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── LzmaWrapper.c │ │ │ │ ├── LzmaWrapper.h │ │ │ │ ├── Makefile │ │ │ │ ├── vdsl_fw_install.sh │ │ │ │ └── w921v_fw_cutter.c │ │ ├── ltq-vdsl-mei │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ ├── ltq-vdsl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ └── ltq-vmmc │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ └── vmmc.init │ │ │ └── patches │ │ │ ├── 000-portability.patch │ │ │ ├── 100-target.patch │ │ │ ├── 200-linux-310.patch │ │ │ └── 400-falcon.patch │ ├── linux │ │ ├── Makefile │ │ └── modules │ │ │ ├── 001-depends.mk │ │ │ ├── block.mk │ │ │ ├── can.mk │ │ │ ├── crypto.mk │ │ │ ├── firewire.mk │ │ │ ├── fs.mk │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── input.mk │ │ │ ├── leds.mk │ │ │ ├── lib.mk │ │ │ ├── netdevices.mk │ │ │ ├── netfilter.mk │ │ │ ├── netsupport.mk │ │ │ ├── nls.mk │ │ │ ├── other.mk │ │ │ ├── pcmcia.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ ├── usb.mk │ │ │ ├── video.mk │ │ │ ├── virtual.mk │ │ │ ├── w1.mk │ │ │ ├── wireless.mk │ │ │ └── wpan.mk │ ├── mac80211 │ │ ├── Makefile │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ └── regdb.txt │ │ ├── patches │ │ │ ├── 000-fix_kconfig.patch │ │ │ ├── 001-fix_build.patch │ │ │ ├── 002-change_allconfig.patch │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ ├── 004-backports_debugfs_fix.patch │ │ │ ├── 008-fix_netdev_unregister.patch │ │ │ ├── 010-disable_rfkill.patch │ │ │ ├── 020-add_mpls_h.patch │ │ │ ├── 030-rt2x00_options.patch │ │ │ ├── 040-brcmutil_option.patch │ │ │ ├── 045-bcma-from-4.1.patch │ │ │ ├── 050-lib80211_option.patch │ │ │ ├── 060-no_local_ssb_bcma.patch │ │ │ ├── 070-ath_common_config.patch │ │ │ ├── 080-disable_clk_backport.patch │ │ │ ├── 090-linux_3_18_12_compat.patch │ │ │ ├── 100-revert-cryptoapi-ports.patch │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ ├── 210-ap_scan.patch │ │ │ ├── 300-mac80211-add-an-intermediate-software-queue-implemen.patch │ │ │ ├── 301-mac80211-lock-rate-control.patch │ │ │ ├── 302-ath9k-restart-only-triggering-DFS-detector-line.patch │ │ │ ├── 303-ath9k-add-DFS-support-for-extension-channel.patch │ │ │ ├── 304-ath9k-allow-40MHz-radar-detection-width.patch │ │ │ ├── 305-ath5k-channel-change-fix.patch │ │ │ ├── 306-ath5k-fix-reset-race.patch │ │ │ ├── 307-ath9k-fix-tracking-of-enabled-AP-beacons.patch │ │ │ ├── 308-mac80211-minstrel_ht-fix-rounding-issue-in-MCS-durat.patch │ │ │ ├── 309-ath9k-disable-TPC-support-again-for-now.patch │ │ │ ├── 310-mac80211-don-t-look-up-stations-for-multicast-addres.patch │ │ │ ├── 311-mac80211-remove-drop_unencrypted-code.patch │ │ │ ├── 312-mac80211-don-t-look-up-destination-station-twice.patch │ │ │ ├── 313-mac80211-drop-4-addr-VLAN-frames-earlier-if-not-conn.patch │ │ │ ├── 314-mac80211-mesh-avoid-pointless-station-lookup.patch │ │ │ ├── 315-mac80211-avoid-duplicate-TX-path-station-lookup.patch │ │ │ ├── 316-mac80211-reduce-log-spam-from-ieee80211_handle_pwr_c.patch │ │ │ ├── 317-brcmfmac-Fix-race-condition-in-msgbuf-ioctl-processi.patch │ │ │ ├── 318-brcmfmac-Update-msgbuf-commonring-size-for-improved-.patch │ │ │ ├── 319-ath9k_htc-add-new-WMI_REG_RMW_CMDID-command.patch │ │ │ ├── 320-ath9k-ar9271_hw_pa_cal-use-defs-instead-of-magin-num.patch │ │ │ ├── 321-ath9k-ar9271_hw_pa_cal-use-proper-makroses.patch │ │ │ ├── 322-ath9k-ar9271_hw_pa_cal-use-RMW-buffer.patch │ │ │ ├── 323-ath9k-add-multi_read-to-be-compatible-with-ath9k_htc.patch │ │ │ ├── 324-ath9k-add-new-function-ath9k_hw_read_array.patch │ │ │ ├── 325-ath9k-ar9271_hw_pa_cal-use-REG_READ_ARRAY.patch │ │ │ ├── 326-ath9k-use-one-shot-read-in-ath9k_hw_update_mibstats.patch │ │ │ ├── 327-ath9k-ath9k_hw_loadnf-use-REG_RMW.patch │ │ │ ├── 328-ath9k-write-buffer-related-optimisation-in-ar5008_hw.patch │ │ │ ├── 329-ath9k-ath9k_hw_set_4k_power_cal_tabl-use-rmw-buffer.patch │ │ │ ├── 330-ath9k-use-rmw-buffer-in-ath9k_hw_set_operating_mode-.patch │ │ │ ├── 331-ath9k-ath9k_hw_4k_set_board_values-use-rmw-buffer.patch │ │ │ ├── 332-ath9k-ath9k_hw_analog_shift_rmw-use-REG_RMW.patch │ │ │ ├── 333-ath9k-use-REG_RMW-and-rmw-buffer-in-ath9k_hw_4k_set_.patch │ │ │ ├── 334-ath9k-use-REG_RMW-and-rmw-buffer-in-ath9k_hw_def_set.patch │ │ │ ├── 335-brcmfmac-Fix-oops-when-SDIO-device-is-removed.patch │ │ │ ├── 336-brcmfmac-Simplify-watchdog-sleep.patch │ │ │ ├── 337-brcmfmac-Fix-possible-race-condition.patch │ │ │ ├── 338-brcmfmac-Add-support-for-BCM4345-SDIO-chipset.patch │ │ │ ├── 339-brcmfmac-remove-duplication-of-ramsize-info.patch │ │ │ ├── 340-brcmfmac-always-perform-cores-checks.patch │ │ │ ├── 341-brcmfmac-rename-chip-download-functions.patch │ │ │ ├── 342-brcmfmac-assure-device-is-ready-for-download-after-b.patch │ │ │ ├── 343-brcmfmac-extract-ram-size-info-from-internal-memory-.patch │ │ │ ├── 344-brcmfmac-take-save-restore-memory-into-account-for-S.patch │ │ │ ├── 345-brcmfmac-fix-watchdog-timer-regression.patch │ │ │ ├── 346-brcmfmac-avoid-runtime-pm-for-sdio-host-controller.patch │ │ │ ├── 347-brcmfmac-Add-necessary-memory-barriers-for-SDIO.patch │ │ │ ├── 348-brcmfmac-Remove-unnecessary-new-line-in-pcie-console.patch │ │ │ ├── 349-brcmfmac-add-MODULE_FIRMWARE-macros-for-bcm4356-PCIe.patch │ │ │ ├── 350-brcmfmac-add-support-for-BCM43430-SDIO-chipset.patch │ │ │ ├── 351-brcmfmac-only-support-the-BCM43455-7-device.patch │ │ │ ├── 352-brcmfmac-remove-support-for-unreleased-BCM4354-PCIe.patch │ │ │ ├── 353-brcmfmac-disable-MBSS-feature-for-BCM43362.patch │ │ │ ├── 354-brcmfmac-use-static-superset-of-channels-for-wiphy-b.patch │ │ │ ├── 355-brcmfmac-update-wiphy-band-information-upon-updating.patch │ │ │ ├── 356-brcmfmac-add-description-for-feature-flags.patch │ │ │ ├── 357-brcmfmac-make-scheduled-scan-support-conditional.patch │ │ │ ├── 358-brcmfmac-add-support-for-BCM4324-rev-B5-chipset.patch │ │ │ ├── 359-brcmfmac-process-interrupt-regardless-sdiod-state.patch │ │ │ ├── 360-brcmfmac-fix-sdio-suspend-and-resume.patch │ │ │ ├── 361-brcmfmac-add-support-for-BCM4358-PCIe-device.patch │ │ │ ├── 362-brcmfmac-add-additional-43602-pcie-device-id.patch │ │ │ ├── 363-brcmfmac-Add-support-for-multiple-PCIE-devices-in-nv.patch │ │ │ ├── 364-brcmfmac-cleanup-a-sizeof.patch │ │ │ ├── 365-brcmfmac-check-result-of-USB-firmware-request.patch │ │ │ ├── 366-brcmfmac-prohibit-ACPI-power-management-for-brcmfmac.patch │ │ │ ├── 367-brcmfmac-avoid-gcc-5.1-warning.patch │ │ │ ├── 368-brcmfmac-allow-device-tree-node-without-interrupts-p.patch │ │ │ ├── 369-brcmfmac-Improve-throughput-by-scheduling-msbug-flow.patch │ │ │ ├── 370-brcmfmac-remove-pci-shared-structure-rev4-support.patch │ │ │ ├── 371-brcmfmac-remove-dummy-cache-flush-invalidate-functio.patch │ │ │ ├── 372-brcmfmac-add-support-for-dma-indices-feature.patch │ │ │ ├── 373-brcmfmac-avoid-null-pointer-access-when-brcmf_msgbuf.patch │ │ │ ├── 374-brcmfmac-fix-invalid-access-to-struct-acpi_device-fi.patch │ │ │ ├── 375-brcmfmac-simplify-check-stripping-v2-NVRAM.patch │ │ │ ├── 376-brcmfmac-simplify-check-finding-NVRAM-v1-device-path.patch │ │ │ ├── 377-brcmfmac-treat-0-as-end-of-comment-when-parsing-NVRA.patch │ │ │ ├── 378-brcmfmac-allow-NVRAM-values-to-contain-spaces.patch │ │ │ ├── 379-ath9k-fix-DMA-stop-sequence-for-AR9003.patch │ │ │ ├── 380-brcmfmac-support-NVRAMs-containing-pci-devpaths-inst.patch │ │ │ ├── 381-brcmfmac-set-wiphy-perm_addr-to-hardware-MAC-address.patch │ │ │ ├── 382-brcmfmac-use-direct-data-pointer-in-NVRAM-parser-str.patch │ │ │ ├── 383-b43-fix-support-for-14e4-4321-PCI-dev-with-BCM4321-c.patch │ │ │ ├── 384-ath9k-force-rx_clear-when-disabling-rx.patch │ │ │ ├── 385-ath9k_hw-fix-device-ID-check-for-AR956x.patch │ │ │ ├── 385-brcmfmac-Update-msgbuf-read-pointer-quicker.patch │ │ │ ├── 386-brcmfmac-remove-chipinfo-debugfs-entry.patch │ │ │ ├── 387-brcmfmac-remove-watchdog-reset-from-brcmf_pcie_busco.patch │ │ │ ├── 388-brcmfmac-use-debugfs_create_devm_seqfile-helper-func.patch │ │ │ ├── 389-brcmfmac-Check-if-firmware-supports-p2p.patch │ │ │ ├── 390-brcmfmac-Build-wiphy-mode-and-interface-combinations.patch │ │ │ ├── 391-brcmfmac-rework-.get_station-callback.patch │ │ │ ├── 392-brcmfmac-have-sdio-return-EIO-when-device-communicat.patch │ │ │ ├── 393-ath9k-make-DMA-stop-related-messages-debug-only.patch │ │ │ ├── 400-ath_move_debug_code.patch │ │ │ ├── 401-ath9k_blink_default.patch │ │ │ ├── 402-ath_regd_optional.patch │ │ │ ├── 403-world_regd_fixup.patch │ │ │ ├── 404-regd_no_assoc_hints.patch │ │ │ ├── 405-ath_regd_us.patch │ │ │ ├── 406-ath_relax_default_regd.patch │ │ │ ├── 410-ath9k_allow_adhoc_and_ap.patch │ │ │ ├── 411-ath5k_allow_adhoc_and_ap.patch │ │ │ ├── 420-ath5k_disable_fast_cc.patch │ │ │ ├── 430-add_ath5k_platform.patch │ │ │ ├── 431-add_platform_eeprom_support_to_ath5k.patch │ │ │ ├── 432-ath5k_add_pciids.patch │ │ │ ├── 440-ath5k_channel_bw_debugfs.patch │ │ │ ├── 500-ath9k_eeprom_debugfs.patch │ │ │ ├── 501-ath9k_ahb_init.patch │ │ │ ├── 510-ath9k_intr_mitigation_tweak.patch │ │ │ ├── 511-ath9k_reduce_rxbuf.patch │ │ │ ├── 512-ath9k_channelbw_debugfs.patch │ │ │ ├── 513-ath9k_add_pci_ids.patch │ │ │ ├── 522-mac80211_configure_antenna_gain.patch │ │ │ ├── 530-ath9k_extra_leds.patch │ │ │ ├── 531-ath9k_extra_platform_leds.patch │ │ │ ├── 540-ath9k_reduce_ani_interval.patch │ │ │ ├── 541-ath9k_rx_dma_stop_check.patch │ │ │ ├── 542-ath9k_debugfs_diag.patch │ │ │ ├── 543-ath9k_entropy_from_adc.patch │ │ │ ├── 544-ath9k-ar933x-usb-hang-workaround.patch │ │ │ ├── 545-ath9k_ani_ws_detect.patch │ │ │ ├── 600-0001-rt2x00-rt2800lib-move-rt2800_drv_data-declaration-in.patch │ │ │ ├── 600-0002-rt2x00-rt2800lib-introduce-RT2800_HAS_HIGH_SHARED_ME.patch │ │ │ ├── 600-0003-rt2x00-rt2800-serialize-shared-memory-access.patch │ │ │ ├── 600-0004-rt2x00-rt2800lib-fix-beacon-generation-on-RT3593.patch │ │ │ ├── 600-0005-rt2x00-rt2800lib-add-hw_beacon_count-field-to-struct.patch │ │ │ ├── 600-0006-rt2x00-rt2800lib-init-additional-beacon-offset-regis.patch │ │ │ ├── 600-0007-rt2x00-rt2800lib-fix-max-supported-beacon-count-for-.patch │ │ │ ├── 600-0008-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ ├── 600-0009-rt2x00-rt2800lib-enable-support-for-RT3883.patch │ │ │ ├── 600-0010-rt2x00-rt2800lib-add-rf_vals-for-RF3853.patch │ │ │ ├── 600-0011-rt2x00-rt2800lib-enable-VCO-calibration-for-RF3853.patch │ │ │ ├── 600-0012-rt2x00-rt2800lib-add-channel-configuration-function-.patch │ │ │ ├── 600-0013-rt2x00-rt2800lib-enable-RF3853-support.patch │ │ │ ├── 600-0014-rt2x00-rt2800lib-add-MAC-register-initialization-for.patch │ │ │ ├── 600-0015-rt2x00-rt2800soc-fix-rt2800soc_disable_radio-for-RT3.patch │ │ │ ├── 600-0016-rt2x00-rt2800lib-add-BBP-register-initialization-for.patch │ │ │ ├── 600-0017-rt2x00-rt2800lib-add-RFCSR-initialization-for-RT3883.patch │ │ │ ├── 600-0018-rt2x00-rt2800lib-use-the-extended-EEPROM-map-for-RT3.patch │ │ │ ├── 600-0019-rt2x00-rt2800lib-force-rf-type-to-RF3853-on-RT3883.patch │ │ │ ├── 600-0020-rt2x00-rt2800lib-add-channel-configuration-code-for-.patch │ │ │ ├── 600-0021-rt2x00-rt2800lib-fix-txpower_to_dev-function-for-RT3.patch │ │ │ ├── 600-0022-rt2x00-rt2800lib-use-correct-txpower-calculation-fun.patch │ │ │ ├── 600-0023-rt2x00-rt2800lib-hardcode-txmixer-gain-values-to-zer.patch │ │ │ ├── 600-0024-rt2x00-rt2800lib-use-correct-RT-XWI-size-for-RT3883.patch │ │ │ ├── 600-0025-rt2x00-rt2800lib-use-correct-beacon-base-for-RT3883.patch │ │ │ ├── 600-0026-rt2x00-rt2800lib-use-correct-beacon-count-for-RT3883.patch │ │ │ ├── 600-0027-rt2x00-rt2800lib-fix-antenna-configuration-for-RT388.patch │ │ │ ├── 600-0028-rt2x00-rt2800lib-fix-LNA-gain-configuration-for-RT38.patch │ │ │ ├── 600-0029-rt2x00-rt2800lib-fix-VGC-setup-for-RT3883.patch │ │ │ ├── 600-0030-rt2x00-rt2800lib-fix-EEPROM-LNA-validation-for-RT388.patch │ │ │ ├── 600-0031-rt2x00-rt2800lib-fix-txpower-compensation-for-RT3883.patch │ │ │ ├── 600-0032-rt2x00-rt2800lib-enable-RT2800_HAS_HIGH_SHARED_MEM-f.patch │ │ │ ├── 600-0033-rt2x00-rt2800lib-use-high-memory-for-beacons-on-RT38.patch │ │ │ ├── 600-0034-rt2x00-rt2800mmio-add-a-workaround-for-spurious-TX_F.patch │ │ │ ├── 601-rt2x00-set_pci_mwi.patch │ │ │ ├── 602-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ ├── 603-rt2x00-introduce-rt2x00eeprom.patch │ │ │ ├── 604-rt2x00-of_load_eeprom_filename.patch │ │ │ ├── 605-rt2x00-load-eeprom-on-SoC-from-a-mtd-device-defines-.patch │ │ │ ├── 607-rt2x00-allow_disabling_bands_through_platform_data.patch │ │ │ ├── 608-add_platform_data_mac_addr.patch │ │ │ ├── 609-rt2x00-allow_disabling_bands_through_dts.patch │ │ │ ├── 610-rt2x00-fix-rt3352-ext-pa.patch │ │ │ ├── 611-rt2x00-rf_vals-rt3352-xtal20.patch │ │ │ ├── 612-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch │ │ │ ├── 615-rt2x00-fix_20mhz_clk.patch │ │ │ ├── 616-rt2x00-support-rt5350.patch │ │ │ ├── 619-rt2x00-change-led-polarity-from-OF.patch │ │ │ ├── 620-rt2x00-add-AP+STA-support.patch │ │ │ ├── 620-rt2x00-rt3352-rf-id.patch │ │ │ ├── 621-rt2x00-ht20_40_fix.patch │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ ├── 802-libertas-set-wireless-macaddr.patch │ │ │ ├── 805-b43-gpio-mask-module-option.patch │ │ │ ├── 810-b43_no_pio.patch │ │ │ ├── 820-b43-add-antenna-control.patch │ │ │ ├── 841-b43-reduce-number-of-RX-slots.patch │ │ │ ├── 845-b43-only-use-gpio-0-1-for-led.patch │ │ │ ├── 847-b43-always-take-overlapping-devs.patch │ │ │ ├── 850-brcmsmac-remove-extra-regulation-restriction.patch │ │ │ ├── 860-brcmfmac-use-bcm47xx-platform-NVRAM-as-fallback.patch │ │ │ ├── 861-brcmfmac-register-wiphy-s-during-module_init.patch │ │ │ ├── 862-brcmfmac-workaround-bug-with-some-inconsistent-BSSes.patch │ │ │ ├── 863-brcmfmac-set-wiphy-s-addresses-to-provide-valid-MACs.patch │ │ │ ├── 900-wlcore-Add-support-for-DT-platform-data.patch │ │ │ ├── 910-00-rt2x00-enable-rt2800soc-for-mt7620.patch │ │ │ ├── 910-01-add-support-for-mt7620.patch │ │ │ ├── 920-ath10k_allow_fallback_to_board_bin_on_empty_otp_stream.patch │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ └── 930-ath10k_add_tpt_led_trigger.patch │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mmc_over_gpio │ │ ├── Makefile │ │ └── files │ │ │ ├── mmc_over_gpio.config │ │ │ └── mmc_over_gpio.init │ ├── mt76 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-dma-fix-rx-buffer-allocation-size.patch │ ├── mwlwifi │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── rotary-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── rotary-gpio-custom.c │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── spi-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── spi-gpio-custom.c │ ├── trelay │ │ ├── Makefile │ │ ├── files │ │ │ ├── trelay.config │ │ │ ├── trelay.hotplug │ │ │ └── trelay.init │ │ └── src │ │ │ ├── Makefile │ │ │ └── trelay.c │ ├── w1-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── w1-gpio-custom.c │ └── wrt55agv2-spidevs │ │ ├── Makefile │ │ └── src │ │ ├── Kconfig │ │ ├── Makefile │ │ └── wrt55agv2_spidevs.c ├── libs │ ├── argp-standalone │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-throw-in-funcdef.patch │ ├── cyassl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-respect_cflags.patch │ │ │ ├── 200-SSL_accept-handle-hello-garbage.patch │ │ │ └── 300-SSL_set_tlsext_host_name.patch │ ├── elfutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-elfutils-portability.patch │ │ │ ├── 002-argp_standalone.patch │ │ │ ├── 003-libint-stub.patch │ │ │ ├── 004-maybe-uninitialized.patch │ │ │ ├── 004-memcpy_def.patch │ │ │ ├── 005-build_only_libs.patch │ │ │ ├── 006-libdw_LIBS.patch │ │ │ ├── 100-musl-compat.patch │ │ │ └── 101-no-fts.patch │ ├── gettext-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-autotools.patch │ │ │ ├── 001-no_examples_and_tests.patch │ │ │ ├── 003-gettext-error_print_progname.patch │ │ │ ├── 100-error_progname.patch │ │ │ ├── 110-error_progname_def.patch │ │ │ ├── 120-uclibc-nolocale.patch │ │ │ └── 150-disable_libxml_iconv.patch │ ├── gettext │ │ ├── Makefile │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ └── libintl.h │ │ │ └── m4 │ │ │ ├── codeset.m4 │ │ │ ├── gettext.m4 │ │ │ ├── intl.m4 │ │ │ ├── intldir.m4 │ │ │ ├── intlmacosx.m4 │ │ │ ├── lcmessage.m4 │ │ │ ├── nls.m4 │ │ │ └── po.m4 │ ├── gmp │ │ └── Makefile │ ├── libbsd │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-aarch64_support.patch │ ├── libconfig │ │ └── Makefile │ ├── libevent2 │ │ └── Makefile │ ├── libiconv-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-strip_charsets.patch │ │ │ ├── 101-autotools.patch │ │ │ ├── 103-configure_ac_fix.patch │ │ │ └── 200-work-with-libtool2.patch │ ├── libiconv │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── iconv.c │ │ │ ├── include │ │ │ ├── charmaps.h │ │ │ ├── charmaps │ │ │ │ ├── iso-8859-10.h │ │ │ │ ├── iso-8859-13.h │ │ │ │ ├── iso-8859-14.h │ │ │ │ ├── iso-8859-16.h │ │ │ │ ├── iso-8859-2.h │ │ │ │ ├── iso-8859-3.h │ │ │ │ ├── iso-8859-4.h │ │ │ │ ├── iso-8859-5.h │ │ │ │ ├── iso-8859-6.h │ │ │ │ ├── iso-8859-7.h │ │ │ │ ├── iso-8859-8.h │ │ │ │ ├── iso-8859-9.h │ │ │ │ ├── koi8-r.h │ │ │ │ ├── windows-1250.h │ │ │ │ ├── windows-1251.h │ │ │ │ ├── windows-1252.h │ │ │ │ ├── windows-1253.h │ │ │ │ ├── windows-1254.h │ │ │ │ ├── windows-1255.h │ │ │ │ ├── windows-1256.h │ │ │ │ ├── windows-1257.h │ │ │ │ ├── windows-1258.h │ │ │ │ └── windows-874.h │ │ │ └── iconv.h │ │ │ └── m4 │ │ │ └── iconv.m4 │ ├── libjson-c │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-libm.patch │ │ │ └── 001-backport_compile_fix.patch │ ├── libmnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-upstream-fixes.patch │ ├── libnetfilter-conntrack │ │ └── Makefile │ ├── libnetfilter-cthelper │ │ └── Makefile │ ├── libnetfilter-cttimeout │ │ └── Makefile │ ├── libnetfilter-log │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-build-remove-unnecessary-pkgconfig-config.status-dep.patch │ │ │ ├── 0002-build-remove-unused-lines-in-Makefile.am.patch │ │ │ ├── 0003-build-resolve-automake-1.12-warnings.patch │ │ │ ├── 0004-Add-include-needed-for-integer-type-definition.patch │ │ │ ├── 0005-configure-uclinux-is-also-linux.patch │ │ │ └── 0006-configure-add-without-ipulog-option-to-disable-libip.patch │ ├── libnetfilter-queue │ │ └── Makefile │ ├── libnfnetlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-missing_include.patch │ ├── libnftnl │ │ └── Makefile │ ├── libnl-tiny │ │ ├── Makefile │ │ ├── files │ │ │ └── libnl-tiny.pc │ │ └── src │ │ │ ├── Makefile │ │ │ ├── attr.c │ │ │ ├── cache.c │ │ │ ├── cache_mngt.c │ │ │ ├── error.c │ │ │ ├── genl.c │ │ │ ├── genl_ctrl.c │ │ │ ├── genl_family.c │ │ │ ├── genl_mngt.c │ │ │ ├── handlers.c │ │ │ ├── include │ │ │ ├── linux │ │ │ │ ├── gen_stats.h │ │ │ │ ├── genetlink.h │ │ │ │ ├── if.h │ │ │ │ ├── if_addr.h │ │ │ │ └── netlink.h │ │ │ ├── netlink-generic.h │ │ │ ├── netlink-local.h │ │ │ ├── netlink-types.h │ │ │ ├── netlink │ │ │ │ ├── addr.h │ │ │ │ ├── attr.h │ │ │ │ ├── cache-api.h │ │ │ │ ├── cache.h │ │ │ │ ├── data.h │ │ │ │ ├── errno.h │ │ │ │ ├── genl │ │ │ │ │ ├── ctrl.h │ │ │ │ │ ├── family.h │ │ │ │ │ ├── genl.h │ │ │ │ │ └── mngt.h │ │ │ │ ├── handlers.h │ │ │ │ ├── list.h │ │ │ │ ├── msg.h │ │ │ │ ├── netlink-compat.h │ │ │ │ ├── netlink-kernel.h │ │ │ │ ├── netlink.h │ │ │ │ ├── object-api.h │ │ │ │ ├── object.h │ │ │ │ ├── socket.h │ │ │ │ ├── types.h │ │ │ │ ├── utils.h │ │ │ │ └── version.h │ │ │ └── unl.h │ │ │ ├── msg.c │ │ │ ├── nl.c │ │ │ ├── object.c │ │ │ ├── socket.c │ │ │ └── unl.c │ ├── libnl │ │ └── Makefile │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-debian_shared_lib.patch │ │ │ ├── 102-makefile_disable_manpages.patch │ │ │ ├── 103-makefile_flex_workaround.patch │ │ │ ├── 201-space_optimization.patch │ │ │ ├── 202-protocol_api.patch │ │ │ └── 203-undef_iw_mode_monitor.patch │ ├── libreadline │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-install_perm.patch │ ├── libroxml │ │ └── Makefile │ ├── librpc │ │ └── Makefile │ ├── libtool │ │ └── Makefile │ ├── libubox │ │ └── Makefile │ ├── libusb-compat │ │ └── Makefile │ ├── libusb │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-timerfd.patch │ ├── lzo │ │ └── Makefile │ ├── ncurses │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-ncurses-5.6-20080112-urxvt.patch │ │ │ ├── 101-ncurses-5.6-20080628-kbs.patch │ │ │ ├── 102-ncurses-5.9-gcc-5.patch │ │ │ ├── 200-fix_missing_include.patch │ │ │ ├── 500-cross.patch │ │ │ └── 900-terminfo.patch │ ├── nettle │ │ ├── Config.in │ │ └── Makefile │ ├── ocf-crypto-headers │ │ ├── Makefile │ │ └── src │ │ │ └── cryptodev.h │ ├── openssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 110-optimize-for-size.patch │ │ │ ├── 130-perl-path.patch │ │ │ ├── 140-makefile-dirs.patch │ │ │ ├── 150-no_engines.patch │ │ │ ├── 160-disable_doc_tests.patch │ │ │ ├── 170-bash_path.patch │ │ │ ├── 180-fix_link_segfault.patch │ │ │ ├── 190-remove_timestamp_check.patch │ │ │ └── 200-parallel_build.patch │ ├── polarssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable_sslv3.patch │ │ │ └── 200-reduce_config.patch │ ├── popt │ │ └── Makefile │ ├── sysfsutils │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-mnt_path_check.patch │ ├── toolchain │ │ ├── Makefile │ │ ├── eglibc-files │ │ │ └── etc │ │ │ │ └── nsswitch.conf │ │ └── glibc-files │ │ │ └── etc │ │ │ └── nsswitch.conf │ ├── uclibc++ │ │ ├── Makefile │ │ ├── files │ │ │ └── config.default │ │ └── patches │ │ │ ├── 002-path_to_bash.patch │ │ │ └── 006-eabi_fix.patch │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ └── zlib │ │ └── Makefile ├── network │ ├── config │ │ ├── firewall │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── firewall.config │ │ │ │ ├── firewall.hotplug │ │ │ │ ├── firewall.init │ │ │ │ └── firewall.user │ │ ├── gre │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── gre.sh │ │ ├── ipip │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── ipip.sh │ │ ├── ltq-adsl-app │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── dsl_control │ │ │ └── patches │ │ │ │ └── 010-eglibc_compile_fix.patch │ │ ├── ltq-vdsl-app │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── dsl_control │ │ │ └── patches │ │ │ │ └── 100-compat.patch │ │ ├── netifd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── iface │ │ │ │ │ │ └── 00-netstate │ │ │ │ └── init.d │ │ │ │ │ └── network │ │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── dhcp.script │ │ │ │ │ └── proto │ │ │ │ │ │ └── dhcp.sh │ │ │ │ └── network │ │ │ │ │ └── config.sh │ │ │ │ ├── sbin │ │ │ │ ├── devstatus │ │ │ │ ├── ifdown │ │ │ │ ├── ifstatus │ │ │ │ └── ifup │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── udhcpc │ │ │ │ └── default.script │ │ ├── qos-scripts │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── qos │ │ │ │ ├── hotplug.d │ │ │ │ │ └── iface │ │ │ │ │ │ └── 10-qos │ │ │ │ └── init.d │ │ │ │ │ └── qos │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ ├── qos-start │ │ │ │ ├── qos-stat │ │ │ │ └── qos-stop │ │ │ │ └── lib │ │ │ │ └── qos │ │ │ │ ├── generate.sh │ │ │ │ └── tcrules.awk │ │ ├── soloscli │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── atm │ │ │ │ │ │ │ └── 15-solos-init │ │ │ │ │ └── uci-default │ │ │ │ │ │ └── solos │ │ │ │ └── solos-log-stats │ │ │ └── patches │ │ │ │ ├── 001-no-driver.patch │ │ │ │ └── 002-cflags.patch │ │ └── swconfig │ │ │ ├── Makefile │ │ │ ├── files │ │ │ └── switch.sh │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── cli.c │ │ │ ├── swlib.c │ │ │ ├── swlib.h │ │ │ └── uci.c │ ├── ipv6 │ │ ├── 6in4 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── 6in4.sh │ │ ├── 6rd │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── 6rd.sh │ │ │ └── src │ │ │ │ ├── 6rdcalc.c │ │ │ │ └── Makefile │ │ ├── 6to4 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── 6to4.sh │ │ ├── ds-lite │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── dslite.sh │ │ ├── map │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── map.sh │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mapcalc.c │ │ ├── odhcp6c │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── dhcpv6.script │ │ │ │ └── dhcpv6.sh │ │ └── thc-ipv6 │ │ │ ├── Makefile │ │ │ └── patches │ │ │ └── 100-no-ssl.patch │ ├── services │ │ ├── authsae │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── lib │ │ │ │ │ └── wifi │ │ │ │ │ └── authsae.sh │ │ │ └── patches │ │ │ │ └── 100-musl_fix.patch │ │ ├── dnsmasq │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.hotplug │ │ │ │ └── dnsmasq.init │ │ │ └── patches │ │ │ │ ├── 100-fix-dhcp-no-address-warning.patch │ │ │ │ ├── 110-ipset-remove-old-kernel-support.patch │ │ │ │ └── 210-dnssec-improve-timestamp-heuristic.patch │ │ ├── dropbear │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dropbear.config │ │ │ │ └── dropbear.init │ │ │ └── patches │ │ │ │ ├── 100-pubkey_path.patch │ │ │ │ ├── 110-change_user.patch │ │ │ │ ├── 120-openwrt_options.patch │ │ │ │ ├── 130-ssh_ignore_o_and_x_args.patch │ │ │ │ ├── 140-disable_assert.patch │ │ │ │ ├── 150-dbconvert_standalone.patch │ │ │ │ └── 500-set-default-path.patch │ │ ├── ead │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── aes.c │ │ │ │ ├── ead-client.c │ │ │ │ ├── ead-crypt.c │ │ │ │ ├── ead-crypt.h │ │ │ │ ├── ead-pcap.h │ │ │ │ ├── ead.c │ │ │ │ ├── ead.h │ │ │ │ ├── filter.c │ │ │ │ ├── libbridge.h │ │ │ │ ├── libbridge_init.c │ │ │ │ ├── libbridge_private.h │ │ │ │ ├── list.h │ │ │ │ ├── passwd │ │ │ │ ├── pfc.c │ │ │ │ ├── pw_encrypt_md5.c │ │ │ │ ├── sha1.c │ │ │ │ └── tinysrp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Notes │ │ │ │ ├── acconfig.h │ │ │ │ ├── acinclude.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── bn.h │ │ │ │ ├── bn_add.c │ │ │ │ ├── bn_asm.c │ │ │ │ ├── bn_ctx.c │ │ │ │ ├── bn_div.c │ │ │ │ ├── bn_exp.c │ │ │ │ ├── bn_lcl.h │ │ │ │ ├── bn_lib.c │ │ │ │ ├── bn_mul.c │ │ │ │ ├── bn_prime.h │ │ │ │ ├── bn_shift.c │ │ │ │ ├── bn_sqr.c │ │ │ │ ├── bn_word.c │ │ │ │ ├── clitest.c │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── install-sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── srvtest.c │ │ │ │ ├── stamp-h.in │ │ │ │ ├── t_client.c │ │ │ │ ├── t_client.h │ │ │ │ ├── t_conf.c │ │ │ │ ├── t_conv.c │ │ │ │ ├── t_defines.h │ │ │ │ ├── t_getconf.c │ │ │ │ ├── t_getpass.c │ │ │ │ ├── t_math.c │ │ │ │ ├── t_misc.c │ │ │ │ ├── t_pw.c │ │ │ │ ├── t_pwd.h │ │ │ │ ├── t_read.c │ │ │ │ ├── t_read.h │ │ │ │ ├── t_server.c │ │ │ │ ├── t_server.h │ │ │ │ ├── t_sha.c │ │ │ │ ├── t_sha.h │ │ │ │ ├── t_truerand.c │ │ │ │ ├── tconf.c │ │ │ │ ├── tinysrp.c │ │ │ │ ├── tinysrp.h │ │ │ │ ├── tpasswd │ │ │ │ └── tphrase.c │ │ ├── hostapd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── hostapd-full.config │ │ │ │ ├── hostapd-mini.config │ │ │ │ ├── hostapd.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── netifd.sh │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ ├── wpa_supplicant-mesh.config │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ ├── wpa_supplicant.sh │ │ │ │ └── wps-hotplug.sh │ │ │ └── patches │ │ │ │ ├── 001-P2P-Validate-SSID-element-length-before-copying-it-C.patch │ │ │ │ ├── 002-AP-WMM-Fix-integer-underflow-in-WMM-Action-frame-par.patch │ │ │ │ ├── 110-bool_fix.patch │ │ │ │ ├── 120-daemonize_fix.patch │ │ │ │ ├── 130-no_eapol_fix.patch │ │ │ │ ├── 140-disable_bridge_packet_workaround.patch │ │ │ │ ├── 200-multicall.patch │ │ │ │ ├── 300-noscan.patch │ │ │ │ ├── 310-rescan_immediately.patch │ │ │ │ ├── 320-optional_rfkill.patch │ │ │ │ ├── 330-nl80211_fix_set_freq.patch │ │ │ │ ├── 340-reload_freq_change.patch │ │ │ │ ├── 350-nl80211_del_beacon_bss.patch │ │ │ │ ├── 360-ctrl_iface_reload.patch │ │ │ │ ├── 370-ap_sta_support.patch │ │ │ │ ├── 380-disable_ctrl_iface_mib.patch │ │ │ │ ├── 390-wpa_ie_cap_workaround.patch │ │ │ │ ├── 400-wps_single_auth_enc_type.patch │ │ │ │ ├── 410-limit_debug_messages.patch │ │ │ │ ├── 420-indicate-features.patch │ │ │ │ ├── 430-hostapd_cli_ifdef.patch │ │ │ │ ├── 431-wpa_cli_ifdef.patch │ │ │ │ ├── 440-max_num_sta_probe.patch │ │ │ │ ├── 450-scan_wait.patch │ │ │ │ ├── 460-wpa_supplicant-add-new-config-params-to-be-used-with.patch │ │ │ │ ├── 461-driver_nl80211-use-new-parameters-during-ibss-join.patch │ │ │ │ ├── 462-wpa_s-support-htmode-param.patch │ │ │ │ └── 600-ubus_support.patch │ │ ├── igmpproxy │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── igmpproxy.config │ │ │ │ └── igmpproxy.init │ │ │ └── patches │ │ │ │ ├── 001-Send-IGMP-packets-with-IP-Router-Alert-option-RFC-21.patch │ │ │ │ ├── 002-Change-default-interface-state-to-disabled-wrt-29458.patch │ │ │ │ ├── 003-Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch │ │ │ │ ├── 004-Restrict-igmp-reports-forwarding-to-upstream-interfa.patch │ │ │ │ ├── 010-missing_include.patch │ │ │ │ ├── 020-Silence-downstream-interface-igmp-messages.patch │ │ │ │ ├── 100-use-monotic-clock-instead-of-time-of-day.patch │ │ │ │ ├── 200-allow_wildcard_addr.patch │ │ │ │ └── 250-fix_multiple_downlink_interfaces.patch │ │ ├── ipset-dns │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── ipset-dns.config │ │ │ │ └── ipset-dns.init │ │ │ └── patches │ │ │ │ └── 100-simultaneous-ipv4-ipv6.patch │ │ ├── lldpd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── lldpd.config │ │ │ │ └── lldpd.init │ │ │ └── patches │ │ │ │ └── 100-os-release.patch │ │ ├── mdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── mdns.config │ │ │ │ ├── mdns.init │ │ │ │ └── mdns.json │ │ ├── odhcpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.init │ │ ├── openvpn-easy-rsa │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── easy-rsa.index │ │ │ │ └── easy-rsa.serial │ │ │ └── patches │ │ │ │ └── 100-run-ootb.patch │ │ ├── openvpn │ │ │ ├── Config-nossl.in │ │ │ ├── Config-openssl.in │ │ │ ├── Config-polarssl.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── openvpn.config │ │ │ │ ├── openvpn.init │ │ │ │ └── openvpn.upgrade │ │ │ └── patches │ │ │ │ ├── 001-backport_cipher_none_fix.patch │ │ │ │ ├── 100-polarssl_compat.h │ │ │ │ ├── 110-musl_compat.patch │ │ │ │ ├── 120-polarssl-disable-record-splitting.patch │ │ │ │ └── 130-polarssl-disable-runtime-version-check.patch │ │ ├── ppp │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ └── ppp │ │ │ │ │ │ ├── chap-secrets │ │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── options │ │ │ │ │ │ ├── options.pptp │ │ │ │ │ │ ├── radius.conf │ │ │ │ │ │ └── radius │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── dictionary.asnet │ │ │ │ │ │ ├── dictionary.microsoft │ │ │ │ │ │ └── servers │ │ │ │ ├── lib │ │ │ │ │ └── netifd │ │ │ │ │ │ ├── ppp-down │ │ │ │ │ │ └── ppp-up │ │ │ │ └── ppp.sh │ │ │ ├── patches │ │ │ │ ├── 010-use_target_for_configure.patch │ │ │ │ ├── 100-debian_ip-ip_option.patch │ │ │ │ ├── 101-debian_close_dev_ppp.patch │ │ │ │ ├── 103-debian_fix_link_pidfile.patch │ │ │ │ ├── 105-debian_demand.patch │ │ │ │ ├── 106-debian_stripMSdomain.patch │ │ │ │ ├── 107-debian_pppoatm_wildcard.patch │ │ │ │ ├── 110-debian_defaultroute.patch │ │ │ │ ├── 120-debian_ipv6_updown_option.patch │ │ │ │ ├── 121-debian_adaptive_lcp_echo.patch │ │ │ │ ├── 130-no_cdefs_h.patch │ │ │ │ ├── 131-missing_prototype_macro.patch │ │ │ │ ├── 132-fix_linux_includes.patch │ │ │ │ ├── 133-fix_sha1_include.patch │ │ │ │ ├── 140-pppoe_compile_fix.patch │ │ │ │ ├── 200-makefile.patch │ │ │ │ ├── 201-mppe_mppc_1.1.patch │ │ │ │ ├── 202-no_strip.patch │ │ │ │ ├── 203-opt_flags.patch │ │ │ │ ├── 204-radius_config.patch │ │ │ │ ├── 205-no_exponential_timeout.patch │ │ │ │ ├── 206-compensate_time_change.patch │ │ │ │ ├── 207-lcp_mtu_max.patch │ │ │ │ ├── 208-fix_status_code.patch │ │ │ │ ├── 300-filter-pcap-includes-lib.patch │ │ │ │ ├── 310-precompile_filter.patch │ │ │ │ ├── 320-custom_iface_names.patch │ │ │ │ ├── 321-multilink_support_custom_iface_names.patch │ │ │ │ ├── 330-retain_foreign_default_routes.patch │ │ │ │ ├── 340-populate_default_gateway.patch │ │ │ │ ├── 400-simplify_kernel_checks.patch │ │ │ │ ├── 401-no_record_file.patch │ │ │ │ ├── 403-no_wtmp.patch │ │ │ │ ├── 404-remove_obsolete_protocol_names.patch │ │ │ │ ├── 405-no_multilink_option.patch │ │ │ │ ├── 500-add-pptp-plugin.patch │ │ │ │ ├── 510-pptp_compile_fix.patch │ │ │ │ ├── 520-uniq.patch │ │ │ │ ├── 530-pppoe_send_padt.patch │ │ │ │ ├── 531-pppoe_no_disconnect_warning.patch │ │ │ │ ├── 540-save-pppol2tp_fd_str.patch │ │ │ │ └── 550-fix-printer-args.patch │ │ │ └── utils │ │ │ │ └── pfc.c │ │ ├── relayd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── relay.hotplug │ │ │ │ └── relay.init │ │ ├── samba36 │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── samba.config │ │ │ │ ├── samba.init │ │ │ │ └── smb.conf.template │ │ │ └── patches │ │ │ │ ├── 100-configure_fixes.patch │ │ │ │ ├── 110-multicall.patch │ │ │ │ ├── 111-owrt_smbpasswd.patch │ │ │ │ ├── 120-add_missing_ifdef.patch │ │ │ │ ├── 200-remove_printer_support.patch │ │ │ │ ├── 210-remove_ad_support.patch │ │ │ │ ├── 220-remove_services.patch │ │ │ │ ├── 230-remove_winreg_support.patch │ │ │ │ ├── 240-remove_dfs_api.patch │ │ │ │ ├── 250-remove_domain_logon.patch │ │ │ │ ├── 260-remove_samr.patch │ │ │ │ ├── 270-remove_registry_backend.patch │ │ │ │ ├── 280-strip_srvsvc.patch │ │ │ │ ├── 290-remove_lsa.patch │ │ │ │ ├── 300-assert_debug_level.patch │ │ │ │ ├── 310-remove_error_strings.patch │ │ │ │ ├── 320-debug_level_checks.patch │ │ │ │ └── 330-librpc_default_print.patch │ │ └── uhttpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── ubus.default │ │ │ ├── uhttpd.config │ │ │ └── uhttpd.init │ └── utils │ │ ├── arptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-always_optimize.patch │ │ │ └── 200-musl_fixes.patch │ │ ├── comgt │ │ ├── Makefile │ │ ├── files │ │ │ ├── 3g.chat │ │ │ ├── 3g.sh │ │ │ ├── 3g.usb │ │ │ ├── directip-stop.gcom │ │ │ ├── directip.gcom │ │ │ ├── directip.sh │ │ │ ├── evdo.chat │ │ │ ├── getcardinfo.gcom │ │ │ ├── getcarrier.gcom │ │ │ ├── getcnum.gcom │ │ │ ├── getimsi.gcom │ │ │ ├── getstrength.gcom │ │ │ ├── ncm.json │ │ │ ├── ncm.sh │ │ │ ├── runcommand.gcom │ │ │ ├── setmode.gcom │ │ │ └── setpin.gcom │ │ └── patches │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 002-termios.patch │ │ │ ├── 003-no_XCASE.patch │ │ │ └── 004-check_tty.patch │ │ ├── conntrack-tools │ │ ├── Makefile │ │ ├── files │ │ │ └── conntrackd.init │ │ └── patches │ │ │ └── 100-missing_include.patch │ │ ├── curl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 010-CVE-2015-3143.patch │ │ │ ├── 011-CVE-2015-3144.patch │ │ │ ├── 012-CVE-2015-3145.patch │ │ │ ├── 013-CVE-2015-3148.patch │ │ │ ├── 014-CVE-2015-3153.patch │ │ │ ├── 015-CVE-2015-3236.patch │ │ │ ├── 016-CVE-2015-3237.patch │ │ │ ├── 100-check_long_long.patch │ │ │ ├── 200-no_docs_tests.patch │ │ │ ├── 300-fix-disable-crypto-auth.patch │ │ │ └── 310-polarssl-disable-runtime-version-check.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 100-do-not-use-defdname.patch │ │ │ └── 200-fix-RTLD_NEXT.patch │ │ ├── ebtables │ │ └── Makefile │ │ ├── iftop │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-force-ncurses.patch │ │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-set-report-next-time-in-single-thread-mode.patch │ │ ├── iperf3 │ │ └── Makefile │ │ ├── iproute2 │ │ ├── Makefile │ │ ├── files │ │ │ └── 15-teql │ │ └── patches │ │ │ ├── 001-config.patch │ │ │ ├── 004-darwin_fixes.patch │ │ │ ├── 006-no_sctp.patch │ │ │ ├── 007-no_arpd.patch │ │ │ ├── 008-no_netem.patch │ │ │ ├── 010-type_fixes.patch │ │ │ ├── 100-allow_pfifo_fast.patch │ │ │ ├── 110-extra-ccopts.patch │ │ │ ├── 120-libnetlink-pic.patch │ │ │ ├── 130-missing_include.patch │ │ │ ├── 200-add-tc_esfq.patch │ │ │ ├── 210-add-act_connmark.patch │ │ │ ├── 300-ip_tiny.patch │ │ │ ├── 900-drop_FAILED_POLICY.patch │ │ │ └── 910-sanitize_headers_for_musl.patch │ │ ├── ipset │ │ └── Makefile │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 020-iptables-disable-modprobe.patch │ │ │ ├── 030-no-libnfnetlink.patch │ │ │ ├── 050-optional-xml.patch │ │ │ ├── 100-bash-location.patch │ │ │ ├── 200-configurable_builtin.patch │ │ │ ├── 300-musl_fixes.patch │ │ │ ├── 500-add-xt_id-match.patch │ │ │ ├── 600-shared-libext.patch │ │ │ └── 700-disable-legacy-revisions.patch │ │ ├── iputils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-iputils.patch │ │ │ ├── 002-fix-ipv6.patch │ │ │ ├── 003-fix-makefile.patch │ │ │ ├── 010-ping6_uclibc_resolv.patch │ │ │ ├── 011-ping6_use_gnu_source.patch │ │ │ └── 020-include_fixes.patch │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 120-antenna_gain.patch │ │ │ └── 200-reduce_size.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ └── Makefile │ │ ├── linux-atm │ │ ├── Makefile │ │ ├── files │ │ │ └── br2684ctl │ │ └── patches │ │ │ ├── 000-debian_16.patch │ │ │ ├── 200-no_libfl.patch │ │ │ ├── 300-objcopy_path.patch │ │ │ └── 400-portability_fixes.patch │ │ ├── maccalc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── nftables │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-disable-doc-generation.patch │ │ ├── owipcalc │ │ ├── Makefile │ │ └── src │ │ │ └── owipcalc.c │ │ ├── resolveip │ │ ├── Makefile │ │ └── src │ │ │ └── resolveip.c │ │ ├── rssileds │ │ ├── Makefile │ │ ├── files │ │ │ └── rssileds.init │ │ └── src │ │ │ └── rssileds.c │ │ ├── tcpdump │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove_pcap_debug.patch │ │ │ ├── 002-remove_static_libpcap_check.patch │ │ │ └── 100-tcpdump_mini.patch │ │ ├── umbim │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── mbim.sh │ │ ├── uqmi │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── qmi.sh │ │ ├── wireless-tools │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-debian.patch │ │ │ ├── 002-fix-iwconfig-power-argument-parsing.patch │ │ │ ├── 003-we_essential_def.patch │ │ │ └── 004-increase_iwlist_buffer.patch │ │ ├── wpan-tools │ │ └── Makefile │ │ ├── wwan │ │ ├── Makefile │ │ └── files │ │ │ ├── data │ │ │ ├── 0421:03a7 │ │ │ ├── 0421:060d │ │ │ ├── 0421:060e │ │ │ ├── 0421:0612 │ │ │ ├── 0421:0619 │ │ │ ├── 0421:061e │ │ │ ├── 0421:0623 │ │ │ ├── 0421:0629 │ │ │ ├── 0421:062d │ │ │ ├── 0421:062f │ │ │ ├── 0421:0638 │ │ │ ├── 05c6:0016 │ │ │ ├── 05c6:0023 │ │ │ ├── 05c6:00a0 │ │ │ ├── 05c6:6000 │ │ │ ├── 05c6:9000 │ │ │ ├── 07d1:3e01 │ │ │ ├── 07d1:3e02 │ │ │ ├── 07d1:7e11 │ │ │ ├── 0af0:4005 │ │ │ ├── 0af0:6901 │ │ │ ├── 0af0:7201 │ │ │ ├── 0af0:8120 │ │ │ ├── 0af0:9200 │ │ │ ├── 0b3c:c000 │ │ │ ├── 0b3c:c001 │ │ │ ├── 0b3c:c002 │ │ │ ├── 0b3c:c003 │ │ │ ├── 0b3c:c004 │ │ │ ├── 0b3c:c005 │ │ │ ├── 0b3c:c00a │ │ │ ├── 0b3c:c00b │ │ │ ├── 0bdb:1900 │ │ │ ├── 0bdb:1902 │ │ │ ├── 0bdb:190a │ │ │ ├── 0bdb:190d │ │ │ ├── 0bdb:1910 │ │ │ ├── 0c88:17da │ │ │ ├── 0c88:180a │ │ │ ├── 0f3d:68a2 │ │ │ ├── 0f3d:68aa │ │ │ ├── 1004:6124 │ │ │ ├── 1004:6141 │ │ │ ├── 1004:6157 │ │ │ ├── 1004:618f │ │ │ ├── 106c:3711 │ │ │ ├── 106c:3714 │ │ │ ├── 106c:3715 │ │ │ ├── 106c:3716 │ │ │ ├── 106c:3717 │ │ │ ├── 106c:3718 │ │ │ ├── 106c:3721 │ │ │ ├── 1199:0017 │ │ │ ├── 1199:0018 │ │ │ ├── 1199:0019 │ │ │ ├── 1199:0020 │ │ │ ├── 1199:0021 │ │ │ ├── 1199:0022 │ │ │ ├── 1199:0023 │ │ │ ├── 1199:0024 │ │ │ ├── 1199:0025 │ │ │ ├── 1199:0026 │ │ │ ├── 1199:0027 │ │ │ ├── 1199:0028 │ │ │ ├── 1199:0112 │ │ │ ├── 1199:0120 │ │ │ ├── 1199:0218 │ │ │ ├── 1199:0220 │ │ │ ├── 1199:0224 │ │ │ ├── 1199:0301 │ │ │ ├── 1199:6802 │ │ │ ├── 1199:6803 │ │ │ ├── 1199:6804 │ │ │ ├── 1199:6805 │ │ │ ├── 1199:6808 │ │ │ ├── 1199:6809 │ │ │ ├── 1199:6813 │ │ │ ├── 1199:6815 │ │ │ ├── 1199:6816 │ │ │ ├── 1199:6820 │ │ │ ├── 1199:6821 │ │ │ ├── 1199:6822 │ │ │ ├── 1199:6833 │ │ │ ├── 1199:6834 │ │ │ ├── 1199:6835 │ │ │ ├── 1199:6838 │ │ │ ├── 1199:6839 │ │ │ ├── 1199:683a │ │ │ ├── 1199:683b │ │ │ ├── 1199:6850 │ │ │ ├── 1199:6851 │ │ │ ├── 1199:6852 │ │ │ ├── 1199:6853 │ │ │ ├── 1199:6855 │ │ │ ├── 1199:6856 │ │ │ ├── 1199:6859 │ │ │ ├── 1199:685a │ │ │ ├── 1199:6880 │ │ │ ├── 1199:6890 │ │ │ ├── 1199:6891 │ │ │ ├── 1199:6892 │ │ │ ├── 1199:6893 │ │ │ ├── 1199:68a2 │ │ │ ├── 1199:68aa │ │ │ ├── 12d1:1035 │ │ │ ├── 12d1:1404 │ │ │ ├── 12d1:1406 │ │ │ ├── 12d1:140b │ │ │ ├── 12d1:140c │ │ │ ├── 12d1:1412 │ │ │ ├── 12d1:141b │ │ │ ├── 12d1:1433 │ │ │ ├── 12d1:1436 │ │ │ ├── 12d1:1444 │ │ │ ├── 12d1:144e │ │ │ ├── 12d1:1464 │ │ │ ├── 12d1:1465 │ │ │ ├── 12d1:1491 │ │ │ ├── 12d1:14a5 │ │ │ ├── 12d1:14a8 │ │ │ ├── 12d1:14ac │ │ │ ├── 12d1:14ae │ │ │ ├── 12d1:14c6 │ │ │ ├── 12d1:14c8 │ │ │ ├── 12d1:14c9 │ │ │ ├── 12d1:14ca │ │ │ ├── 12d1:14cb │ │ │ ├── 12d1:14cc │ │ │ ├── 12d1:14cf │ │ │ ├── 12d1:14d2 │ │ │ ├── 12d1:1506 │ │ │ ├── 12d1:150a │ │ │ ├── 12d1:150c │ │ │ ├── 12d1:150f │ │ │ ├── 12d1:151b │ │ │ ├── 12d1:151d │ │ │ ├── 12d1:156c │ │ │ ├── 12d1:1576 │ │ │ ├── 12d1:1577 │ │ │ ├── 12d1:1578 │ │ │ ├── 12d1:1589 │ │ │ ├── 12d1:1c05 │ │ │ ├── 12d1:1c07 │ │ │ ├── 12d1:1c08 │ │ │ ├── 12d1:1c10 │ │ │ ├── 12d1:1c12 │ │ │ ├── 12d1:1c1e │ │ │ ├── 12d1:1c1f │ │ │ ├── 12d1:1c23 │ │ │ ├── 12d1:1f16 │ │ │ ├── 1410:1400 │ │ │ ├── 1410:1410 │ │ │ ├── 1410:1420 │ │ │ ├── 1410:1430 │ │ │ ├── 1410:1450 │ │ │ ├── 1410:2100 │ │ │ ├── 1410:2110 │ │ │ ├── 1410:2120 │ │ │ ├── 1410:2130 │ │ │ ├── 1410:2400 │ │ │ ├── 1410:2410 │ │ │ ├── 1410:2420 │ │ │ ├── 1410:4100 │ │ │ ├── 1410:4400 │ │ │ ├── 1410:6000 │ │ │ ├── 1410:6001 │ │ │ ├── 1410:6002 │ │ │ ├── 1410:6010 │ │ │ ├── 1410:7001 │ │ │ ├── 1410:7003 │ │ │ ├── 1410:7030 │ │ │ ├── 1410:7031 │ │ │ ├── 1410:7041 │ │ │ ├── 1410:7042 │ │ │ ├── 1410:9011 │ │ │ ├── 1410:b001 │ │ │ ├── 1529:3100 │ │ │ ├── 16d5:6202 │ │ │ ├── 16d5:6501 │ │ │ ├── 16d5:6502 │ │ │ ├── 16d5:6603 │ │ │ ├── 16d5:900d │ │ │ ├── 16d8:5141 │ │ │ ├── 16d8:5533 │ │ │ ├── 16d8:5543 │ │ │ ├── 16d8:5553 │ │ │ ├── 16d8:6002 │ │ │ ├── 16d8:6006 │ │ │ ├── 16d8:6007 │ │ │ ├── 16d8:6008 │ │ │ ├── 16d8:6522 │ │ │ ├── 16d8:6523 │ │ │ ├── 16d8:6532 │ │ │ ├── 16d8:6533 │ │ │ ├── 16d8:6543 │ │ │ ├── 16d8:680a │ │ │ ├── 19d2:0001 │ │ │ ├── 19d2:0002 │ │ │ ├── 19d2:0015 │ │ │ ├── 19d2:0016 │ │ │ ├── 19d2:0017 │ │ │ ├── 19d2:0018 │ │ │ ├── 19d2:0019 │ │ │ ├── 19d2:0022 │ │ │ ├── 19d2:0024 │ │ │ ├── 19d2:0025 │ │ │ ├── 19d2:0031 │ │ │ ├── 19d2:0033 │ │ │ ├── 19d2:0037 │ │ │ ├── 19d2:0039 │ │ │ ├── 19d2:0042 │ │ │ ├── 19d2:0052 │ │ │ ├── 19d2:0055 │ │ │ ├── 19d2:0057 │ │ │ ├── 19d2:0063 │ │ │ ├── 19d2:0064 │ │ │ ├── 19d2:0066 │ │ │ ├── 19d2:0073 │ │ │ ├── 19d2:0079 │ │ │ ├── 19d2:0082 │ │ │ ├── 19d2:0086 │ │ │ ├── 19d2:0091 │ │ │ ├── 19d2:0094 │ │ │ ├── 19d2:0104 │ │ │ ├── 19d2:0108 │ │ │ ├── 19d2:0116 │ │ │ ├── 19d2:0117 │ │ │ ├── 19d2:0121 │ │ │ ├── 19d2:0124 │ │ │ ├── 19d2:0128 │ │ │ ├── 19d2:0142 │ │ │ ├── 19d2:0143 │ │ │ ├── 19d2:0152 │ │ │ ├── 19d2:0157 │ │ │ ├── 19d2:0167 │ │ │ ├── 19d2:0170 │ │ │ ├── 19d2:0199 │ │ │ ├── 19d2:0257 │ │ │ ├── 19d2:0265 │ │ │ ├── 19d2:0284 │ │ │ ├── 19d2:0326 │ │ │ ├── 19d2:1003 │ │ │ ├── 19d2:1008 │ │ │ ├── 19d2:1010 │ │ │ ├── 19d2:1015 │ │ │ ├── 19d2:1018 │ │ │ ├── 19d2:1172 │ │ │ ├── 19d2:1173 │ │ │ ├── 19d2:1176 │ │ │ ├── 19d2:1177 │ │ │ ├── 19d2:1181 │ │ │ ├── 19d2:1203 │ │ │ ├── 19d2:1208 │ │ │ ├── 19d2:1211 │ │ │ ├── 19d2:1212 │ │ │ ├── 19d2:1217 │ │ │ ├── 19d2:1218 │ │ │ ├── 19d2:1220 │ │ │ ├── 19d2:1222 │ │ │ ├── 19d2:1245 │ │ │ ├── 19d2:1252 │ │ │ ├── 19d2:1254 │ │ │ ├── 19d2:1256 │ │ │ ├── 19d2:1270 │ │ │ ├── 19d2:1401 │ │ │ ├── 19d2:1402 │ │ │ ├── 19d2:1426 │ │ │ ├── 19d2:1512 │ │ │ ├── 19d2:1515 │ │ │ ├── 19d2:1518 │ │ │ ├── 19d2:1519 │ │ │ ├── 19d2:1522 │ │ │ ├── 19d2:1525 │ │ │ ├── 19d2:1527 │ │ │ ├── 19d2:1537 │ │ │ ├── 19d2:1538 │ │ │ ├── 19d2:1544 │ │ │ ├── 19d2:2002 │ │ │ ├── 19d2:2003 │ │ │ ├── 19d2:ffdd │ │ │ ├── 19d2:ffe4 │ │ │ ├── 19d2:ffe9 │ │ │ ├── 19d2:fff1 │ │ │ ├── 19d2:fffb │ │ │ ├── 19d2:fffc │ │ │ ├── 19d2:fffd │ │ │ ├── 19d2:fffe │ │ │ ├── 19d2:ffff │ │ │ ├── 1a8d:1002 │ │ │ ├── 1a8d:1003 │ │ │ ├── 1a8d:1007 │ │ │ ├── 1a8d:1009 │ │ │ ├── 1a8d:100c │ │ │ ├── 1a8d:100d │ │ │ ├── 1a8d:2006 │ │ │ ├── 1bbb:0000 │ │ │ ├── 1bbb:0012 │ │ │ ├── 1bbb:0017 │ │ │ ├── 1bbb:0052 │ │ │ ├── 1bbb:00b7 │ │ │ ├── 1bbb:00ca │ │ │ ├── 1bbb:011e │ │ │ ├── 1bbb:0203 │ │ │ ├── 1c9e:6060 │ │ │ ├── 1c9e:6061 │ │ │ ├── 1c9e:9000 │ │ │ ├── 1c9e:9603 │ │ │ ├── 1c9e:9605 │ │ │ ├── 1c9e:9607 │ │ │ ├── 1c9e:9801 │ │ │ ├── 1c9e:9900 │ │ │ ├── 1e0e:9000 │ │ │ ├── 1e0e:9100 │ │ │ ├── 1e0e:9200 │ │ │ ├── 1e0e:ce16 │ │ │ ├── 1e0e:cefe │ │ │ ├── 2001:7d00 │ │ │ ├── 2001:7d01 │ │ │ ├── 2001:7d02 │ │ │ ├── 2001:7d03 │ │ │ ├── 211f:6801 │ │ │ ├── 2357:0201 │ │ │ ├── 2357:0202 │ │ │ ├── 2357:0203 │ │ │ ├── 2357:9000 │ │ │ ├── 413c:8114 │ │ │ ├── 413c:8115 │ │ │ ├── 413c:8116 │ │ │ ├── 413c:8117 │ │ │ ├── 413c:8118 │ │ │ ├── 413c:8128 │ │ │ ├── 413c:8129 │ │ │ ├── 413c:8133 │ │ │ ├── 413c:8134 │ │ │ ├── 413c:8135 │ │ │ ├── 413c:8136 │ │ │ ├── 413c:8137 │ │ │ ├── 413c:8138 │ │ │ ├── 413c:8147 │ │ │ ├── 413c:8180 │ │ │ ├── 413c:8181 │ │ │ ├── 413c:8182 │ │ │ ├── 413c:8186 │ │ │ ├── 413c:8194 │ │ │ ├── 413c:8195 │ │ │ ├── 413c:8196 │ │ │ └── 413c:819b │ │ │ ├── wwan.sh │ │ │ ├── wwan.usb │ │ │ └── wwan.usbmisc │ │ └── xtables-addons │ │ ├── Makefile │ │ └── patches │ │ ├── 002-fix-kernel-version-detection.patch │ │ ├── 100-add-rtsp-conntrack.patch │ │ ├── 200-add-lua-packetscript.patch │ │ ├── 201-fix-lua-packetscript.patch │ │ └── 300-geoip-endian-detection.patch ├── system │ ├── ca-certificates │ │ └── Makefile │ ├── fstools │ │ ├── Makefile │ │ └── files │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ ├── mountd │ │ ├── Makefile │ │ ├── files │ │ │ ├── mountd.config │ │ │ └── mountd.init │ │ └── patches │ │ │ ├── 010-uci_rename_history_to_delta.patch │ │ │ ├── 020-handle_timeout.patch │ │ │ ├── 030-ext4_support.patch │ │ │ ├── 040-optional-daemonize.patch │ │ │ ├── 050-no_error_h.patch │ │ │ └── 060-link_libubox.patch │ ├── mtd │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── fis.c │ │ │ ├── fis.h │ │ │ ├── imagetag.c │ │ │ ├── jffs2.c │ │ │ ├── jffs2.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── mtd.c │ │ │ ├── mtd.h │ │ │ ├── seama.c │ │ │ ├── seama.h │ │ │ └── trx.c │ ├── opkg │ │ ├── Makefile │ │ ├── files │ │ │ ├── opkg-key │ │ │ ├── opkg-smime.conf │ │ │ └── opkg.conf │ │ └── patches │ │ │ ├── 001-ship-pkg-m4.patch │ │ │ ├── 002-no-shave.patch │ │ │ ├── 004-host_cpu.patch │ │ │ ├── 007-force_static.patch │ │ │ ├── 009-remove-upgrade-all.patch │ │ │ ├── 011-old-config-location.patch │ │ │ ├── 012-strip-trailing-conffiles-whitespace.patch │ │ │ ├── 014-errors-to-stderr.patch │ │ │ ├── 020-avoid_getline.patch │ │ │ ├── 030-fix-double-free.patch │ │ │ ├── 040-wrap-descriptions-only-on-ttys.patch │ │ │ ├── 050-add-case-insensitive-flag.patch │ │ │ ├── 060-add-find-command.patch │ │ │ ├── 070-use_gzipped_pkg_list.patch │ │ │ ├── 080-suppress-blank-package-fields.patch │ │ │ ├── 090-suppress-blank-provides-field.patch │ │ │ ├── 100-add-force-checksum.patch │ │ │ ├── 110-upgrade.patch │ │ │ ├── 200-usign_support.patch │ │ │ ├── 210-add-force-signature.patch │ │ │ ├── 220-drop-release-support.patch │ │ │ ├── 230-drop_md5_support.patch │ │ │ └── 240-fix-force-checksum-for-sha256.patch │ ├── procd │ │ ├── Makefile │ │ └── files │ │ │ ├── hotplug-preinit.json │ │ │ ├── hotplug.json │ │ │ ├── nand-preinit.sh │ │ │ ├── nand.sh │ │ │ ├── procd.sh │ │ │ └── reload_config │ ├── rpcd │ │ ├── Makefile │ │ └── files │ │ │ ├── rpcd.config │ │ │ └── rpcd.init │ ├── ubox │ │ ├── Makefile │ │ └── files │ │ │ └── log.init │ ├── ubus │ │ └── Makefile │ ├── uci │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── config │ │ │ └── uci.sh │ ├── udev │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-build-don-t-use-gc-sections.patch │ │ │ ├── 0002-udevd-add-lrt-for-message-queue-symbols.patch │ │ │ └── 0003-add_btn_trigger_happy_define.patch │ ├── usign │ │ └── Makefile │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── admswconfig │ ├── Makefile │ ├── files │ │ ├── admswconfig │ │ └── admswswitch.sh │ └── patches │ │ └── 001-matrix.patch │ ├── busybox │ ├── Config-defaults.in │ ├── Config.in │ ├── Makefile │ ├── config │ │ ├── Config.in │ │ ├── archival │ │ │ └── Config.in │ │ ├── console-tools │ │ │ └── Config.in │ │ ├── coreutils │ │ │ └── Config.in │ │ ├── debianutils │ │ │ └── Config.in │ │ ├── e2fsprogs │ │ │ ├── Config.in │ │ │ └── old_e2fsprogs │ │ │ │ └── Config.in │ │ ├── editors │ │ │ └── Config.in │ │ ├── findutils │ │ │ └── Config.in │ │ ├── init │ │ │ └── Config.in │ │ ├── libbb │ │ │ └── Config.in │ │ ├── loginutils │ │ │ └── Config.in │ │ ├── mailutils │ │ │ └── Config.in │ │ ├── miscutils │ │ │ └── Config.in │ │ ├── modutils │ │ │ └── Config.in │ │ ├── networking │ │ │ ├── Config.in │ │ │ └── udhcp │ │ │ │ └── Config.in │ │ ├── printutils │ │ │ └── Config.in │ │ ├── procps │ │ │ └── Config.in │ │ ├── runit │ │ │ └── Config.in │ │ ├── selinux │ │ │ └── Config.in │ │ ├── shell │ │ │ └── Config.in │ │ ├── sysklogd │ │ │ └── Config.in │ │ └── util-linux │ │ │ ├── Config.in │ │ │ └── volume_id │ │ │ └── Config.in │ ├── convert_defaults.pl │ ├── convert_menuconfig.pl │ ├── files │ │ ├── cron │ │ ├── ntpd-hotplug │ │ ├── sysntpd │ │ └── telnet │ └── patches │ │ ├── 001-resource_h_include.patch │ │ ├── 100-trylink_bash.patch │ │ ├── 101-gen_build_files_bash.patch │ │ ├── 110-no_static_libgcc.patch │ │ ├── 120-remove_uclibc_rpc_check.patch │ │ ├── 130-mconf_missing_sigwinch.patch │ │ ├── 200-udhcpc_reduce_msgs.patch │ │ ├── 201-udhcpc_changed_ifindex.patch │ │ ├── 203-udhcpc_renew_no_deconfig.patch │ │ ├── 204-udhcpc_src_ip_rebind.patch │ │ ├── 210-add_netmsg_util.patch │ │ ├── 220-add_lock_util.patch │ │ ├── 230-ntpd_delayed_resolve.patch │ │ ├── 240-telnetd_intr.patch │ │ ├── 250-date-k-flag.patch │ │ ├── 260-arping_missing_includes.patch │ │ ├── 270-libbb_make_unicode_printable.patch │ │ ├── 280-fix_find_regression.patch │ │ └── 290-ash-fix-a-regression-in-handling-local-variables.patch │ ├── bzip2 │ └── Makefile │ ├── e2fsprogs │ ├── Makefile │ ├── files │ │ ├── e2fsck.conf │ │ └── e2fsck.sh │ └── patches │ │ └── 001-com_err_version.patch │ ├── fbtest │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── fbtest.c │ ├── fuse │ ├── Makefile │ └── patches │ │ ├── 001-fix_exec_environment_for_mount_and_umount.patch │ │ ├── 100-missing_includes.patch │ │ ├── 112-no_break_on_mknod.patch │ │ └── 200-backport_arm64_fuse_kernel_h_clean_includes.patch │ ├── hostap-utils │ └── Makefile │ ├── jsonfilter │ └── Makefile │ ├── lua │ ├── Makefile │ ├── patches-host │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 030-archindependent-bytecode.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 020-shared_liblua.patch │ │ ├── 030-archindependent-bytecode.patch │ │ ├── 040-use-symbolic-functions.patch │ │ ├── 100-no_readline.patch │ │ ├── 200-lua-path.patch │ │ └── 300-opcode_performance.patch │ ├── mdadm │ ├── Makefile │ └── patches │ │ ├── 000-compile.patch │ │ ├── 100-cross_compile.patch │ │ └── 200-reduce_size.patch │ ├── mkelfimage │ ├── Makefile │ └── patches │ │ └── no-stack-protector.patch │ ├── nvram │ ├── Makefile │ ├── files │ │ └── nvram.init │ └── src │ │ ├── Makefile │ │ ├── cli.c │ │ ├── crc.c │ │ ├── nvram.c │ │ ├── nvram.h │ │ └── sdinitvals.h │ ├── otrx │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── otrx.c │ ├── px5g-standalone │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── library │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── havege.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── timing.c │ │ └── x509write.c │ │ ├── polarssl │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── bn_mul.h │ │ ├── config.h │ │ ├── havege.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── timing.h │ │ └── x509.h │ │ └── px5g.c │ ├── px5g │ ├── Makefile │ └── px5g.c │ ├── robocfg │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── etc53xx.h │ │ └── robocfg.c │ ├── spidev_test │ └── Makefile │ ├── ubi-utils │ ├── Makefile │ └── patches │ │ ├── 010-fix-rpmatch.patch │ │ ├── 100-fix_includes.patch │ │ └── 130-lzma_jffs2.patch │ ├── ugps │ ├── Makefile │ └── files │ │ ├── gps.config │ │ └── ugps.init │ ├── usbmode │ ├── Makefile │ ├── data │ │ └── 12d1:1f16 │ └── files │ │ ├── usbmode.hotplug │ │ └── usbmode.init │ ├── usbreset │ ├── Makefile │ └── src │ │ └── usbreset.c │ ├── usbutils │ └── Makefile │ ├── util-linux │ ├── Makefile │ └── patches │ │ ├── 0001-switch_root-improve-statfs-f_type-portability.patch │ │ ├── 0002-lib-colors-use-static-buffers-when-parse-scheme.patch │ │ ├── 001-no-printf-alloc.patch │ │ ├── 002-mkostemp.patch │ │ └── 003-fix_pkgconfig_files.patch │ └── xfsprogs │ ├── Makefile │ └── patches │ ├── 001-automake-compat.patch │ ├── 100-no_aio.patch │ ├── 110-uclibc_no_ustat.patch │ ├── 120-portability.patch │ ├── 130-uclibc_no_xattr.patch │ ├── 140-no_po.patch │ └── 150-include_fixes.patch ├── rules.mk ├── scripts ├── arm-magic.sh ├── brcmImage.pl ├── bundle-libraries.sh ├── checkpatch.pl ├── clang-gcc-wrapper ├── clean-package.sh ├── cleanfile ├── cleanpatch ├── combined-ext-image.sh ├── combined-image.sh ├── config.guess ├── config.rpath ├── config.sub ├── config │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── deptest.sh ├── diffconfig.sh ├── dl_cleanup.py ├── download.pl ├── env ├── ext-toolchain.sh ├── feeds ├── flashing │ ├── adam2flash-502T.pl │ ├── adam2flash-fritzbox.pl │ ├── adam2flash.pl │ ├── adsl2mue_flash.pl │ ├── flash.sh │ └── jungo-image.py ├── freebsd.sh ├── gen-dependencies.sh ├── getver.sh ├── ipkg-build ├── ipkg-make-index.sh ├── kconfig.pl ├── make-ipkg-dir.sh ├── md5sum ├── metadata.pl ├── metadata.pm ├── mkits.sh ├── om-fwupgradecfg-gen.sh ├── openbsd.sh ├── pad_image ├── patch-kernel.sh ├── patch-specs.sh ├── relink-lib.sh ├── remote-gdb ├── rstrip.sh ├── slugimage.pl ├── srecimage.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 │ ├── generic │ │ ├── PATCHES │ │ ├── base-files │ │ │ └── init │ │ ├── config-3.18 │ │ ├── files │ │ │ ├── Documentation │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── crypto │ │ │ │ └── ocf │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c7108 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aes-7108.c │ │ │ │ │ └── aes-7108.h │ │ │ │ │ ├── criov.c │ │ │ │ │ ├── crypto.c │ │ │ │ │ ├── cryptocteon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── cavium_crypto.c │ │ │ │ │ └── cryptocteon.c │ │ │ │ │ ├── cryptodev.c │ │ │ │ │ ├── cryptodev.h │ │ │ │ │ ├── cryptosoft.c │ │ │ │ │ ├── ep80579 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── environment.mk │ │ │ │ │ ├── icp_asym.c │ │ │ │ │ ├── icp_common.c │ │ │ │ │ ├── icp_ocf.h │ │ │ │ │ ├── icp_sym.c │ │ │ │ │ └── linux_2.6_kernel_space.mk │ │ │ │ │ ├── hifn │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hifn7751.c │ │ │ │ │ ├── hifn7751reg.h │ │ │ │ │ ├── hifn7751var.h │ │ │ │ │ ├── hifnHIPP.c │ │ │ │ │ ├── hifnHIPPreg.h │ │ │ │ │ └── hifnHIPPvar.h │ │ │ │ │ ├── ixp4xx │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ixp4xx.c │ │ │ │ │ ├── kirkwood │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cesa │ │ │ │ │ │ ├── AES │ │ │ │ │ │ │ ├── mvAes.h │ │ │ │ │ │ │ ├── mvAesAlg.c │ │ │ │ │ │ │ ├── mvAesAlg.h │ │ │ │ │ │ │ ├── mvAesApi.c │ │ │ │ │ │ │ └── mvAesBoxes.dat │ │ │ │ │ │ ├── mvCesa.c │ │ │ │ │ │ ├── mvCesa.h │ │ │ │ │ │ ├── mvCesaDebug.c │ │ │ │ │ │ ├── mvCesaRegs.h │ │ │ │ │ │ ├── mvCesaTest.c │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvLru.c │ │ │ │ │ │ ├── mvLru.h │ │ │ │ │ │ ├── mvMD5.c │ │ │ │ │ │ ├── mvMD5.h │ │ │ │ │ │ ├── mvSHA1.c │ │ │ │ │ │ └── mvSHA1.h │ │ │ │ │ ├── cesa_ocf_drv.c │ │ │ │ │ └── mvHal │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── mv802_3.h │ │ │ │ │ │ ├── mvCommon.c │ │ │ │ │ │ ├── mvCommon.h │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvDebug.c │ │ │ │ │ │ ├── mvDebug.h │ │ │ │ │ │ ├── mvDeviceId.h │ │ │ │ │ │ ├── mvHalVer.h │ │ │ │ │ │ ├── mvStack.c │ │ │ │ │ │ ├── mvStack.h │ │ │ │ │ │ └── mvTypes.h │ │ │ │ │ │ ├── dbg-trace.c │ │ │ │ │ │ ├── dbg-trace.h │ │ │ │ │ │ ├── kw_family │ │ │ │ │ │ ├── boardEnv │ │ │ │ │ │ │ ├── mvBoardEnvLib.c │ │ │ │ │ │ │ ├── mvBoardEnvLib.h │ │ │ │ │ │ │ ├── mvBoardEnvSpec.c │ │ │ │ │ │ │ └── mvBoardEnvSpec.h │ │ │ │ │ │ ├── cpu │ │ │ │ │ │ │ ├── mvCpu.c │ │ │ │ │ │ │ └── mvCpu.h │ │ │ │ │ │ ├── ctrlEnv │ │ │ │ │ │ │ ├── mvCtrlEnvAddrDec.c │ │ │ │ │ │ │ ├── mvCtrlEnvAddrDec.h │ │ │ │ │ │ │ ├── mvCtrlEnvAsm.h │ │ │ │ │ │ │ ├── mvCtrlEnvLib.c │ │ │ │ │ │ │ ├── mvCtrlEnvLib.h │ │ │ │ │ │ │ ├── mvCtrlEnvRegs.h │ │ │ │ │ │ │ ├── mvCtrlEnvSpec.h │ │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ │ ├── mvAhbToMbus.c │ │ │ │ │ │ │ │ ├── mvAhbToMbus.h │ │ │ │ │ │ │ │ ├── mvAhbToMbusRegs.h │ │ │ │ │ │ │ │ ├── mvCpuIf.c │ │ │ │ │ │ │ │ ├── mvCpuIf.h │ │ │ │ │ │ │ │ ├── mvCpuIfInit.S │ │ │ │ │ │ │ │ ├── mvCpuIfRegs.h │ │ │ │ │ │ │ │ ├── mvSysAudio.c │ │ │ │ │ │ │ │ ├── mvSysAudio.h │ │ │ │ │ │ │ │ ├── mvSysCesa.c │ │ │ │ │ │ │ │ ├── mvSysCesa.h │ │ │ │ │ │ │ │ ├── mvSysDram.c │ │ │ │ │ │ │ │ ├── mvSysDram.h │ │ │ │ │ │ │ │ ├── mvSysGbe.c │ │ │ │ │ │ │ │ ├── mvSysGbe.h │ │ │ │ │ │ │ │ ├── mvSysPex.c │ │ │ │ │ │ │ │ ├── mvSysPex.h │ │ │ │ │ │ │ │ ├── mvSysSata.c │ │ │ │ │ │ │ │ ├── mvSysSata.h │ │ │ │ │ │ │ │ ├── mvSysSdmmc.c │ │ │ │ │ │ │ │ ├── mvSysSdmmc.h │ │ │ │ │ │ │ │ ├── mvSysTdm.c │ │ │ │ │ │ │ │ ├── mvSysTdm.h │ │ │ │ │ │ │ │ ├── mvSysTs.c │ │ │ │ │ │ │ │ ├── mvSysTs.h │ │ │ │ │ │ │ │ ├── mvSysUsb.c │ │ │ │ │ │ │ │ ├── mvSysUsb.h │ │ │ │ │ │ │ │ ├── mvSysXor.c │ │ │ │ │ │ │ │ └── mvSysXor.h │ │ │ │ │ │ ├── device │ │ │ │ │ │ │ ├── mvDevice.c │ │ │ │ │ │ │ ├── mvDevice.h │ │ │ │ │ │ │ └── mvDeviceRegs.h │ │ │ │ │ │ └── mvCompVer.txt │ │ │ │ │ │ ├── linux_oss │ │ │ │ │ │ ├── mvOs.c │ │ │ │ │ │ ├── mvOs.h │ │ │ │ │ │ └── mvOsSata.h │ │ │ │ │ │ ├── mvSysHwConfig.h │ │ │ │ │ │ └── mv_hal │ │ │ │ │ │ ├── cntmr │ │ │ │ │ │ ├── mvCntmr.c │ │ │ │ │ │ ├── mvCntmr.h │ │ │ │ │ │ ├── mvCntmrRegs.h │ │ │ │ │ │ └── mvCompVer.txt │ │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── mvCpuCntrs.c │ │ │ │ │ │ ├── mvCpuCntrs.h │ │ │ │ │ │ ├── mvCpuL2Cntrs.c │ │ │ │ │ │ └── mvCpuL2Cntrs.h │ │ │ │ │ │ ├── ddr1_2 │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvDram.c │ │ │ │ │ │ ├── mvDram.h │ │ │ │ │ │ ├── mvDramIf.c │ │ │ │ │ │ ├── mvDramIf.h │ │ │ │ │ │ ├── mvDramIfBasicInit.S │ │ │ │ │ │ ├── mvDramIfConfig.S │ │ │ │ │ │ ├── mvDramIfConfig.h │ │ │ │ │ │ └── mvDramIfRegs.h │ │ │ │ │ │ ├── ddr2 │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvDramIf.c │ │ │ │ │ │ ├── mvDramIf.h │ │ │ │ │ │ ├── mvDramIfBasicInit.S │ │ │ │ │ │ ├── mvDramIfConfig.S │ │ │ │ │ │ ├── mvDramIfConfig.h │ │ │ │ │ │ ├── mvDramIfRegs.h │ │ │ │ │ │ ├── mvDramIfStaticInit.h │ │ │ │ │ │ └── spd │ │ │ │ │ │ │ ├── mvSpd.c │ │ │ │ │ │ │ └── mvSpd.h │ │ │ │ │ │ ├── eth │ │ │ │ │ │ ├── gbe │ │ │ │ │ │ │ ├── mvEth.c │ │ │ │ │ │ │ ├── mvEthDebug.c │ │ │ │ │ │ │ ├── mvEthDebug.h │ │ │ │ │ │ │ ├── mvEthGbe.h │ │ │ │ │ │ │ └── mvEthRegs.h │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ └── mvEth.h │ │ │ │ │ │ ├── gpp │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvGpp.c │ │ │ │ │ │ ├── mvGpp.h │ │ │ │ │ │ └── mvGppRegs.h │ │ │ │ │ │ ├── pci-if │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvPciIf.c │ │ │ │ │ │ ├── mvPciIf.h │ │ │ │ │ │ ├── mvPciIfRegs.h │ │ │ │ │ │ └── pci_util │ │ │ │ │ │ │ ├── mvPciUtils.c │ │ │ │ │ │ │ └── mvPciUtils.h │ │ │ │ │ │ ├── pci │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvPci.c │ │ │ │ │ │ ├── mvPci.h │ │ │ │ │ │ └── mvPciRegs.h │ │ │ │ │ │ ├── pex │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvPex.c │ │ │ │ │ │ ├── mvPex.h │ │ │ │ │ │ ├── mvPexRegs.h │ │ │ │ │ │ ├── mvVrtBrgPex.c │ │ │ │ │ │ └── mvVrtBrgPex.h │ │ │ │ │ │ ├── sflash │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvSFlash.c │ │ │ │ │ │ ├── mvSFlash.h │ │ │ │ │ │ └── mvSFlashSpec.h │ │ │ │ │ │ ├── spi │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvSpi.c │ │ │ │ │ │ ├── mvSpi.h │ │ │ │ │ │ ├── mvSpiCmnd.c │ │ │ │ │ │ ├── mvSpiCmnd.h │ │ │ │ │ │ └── mvSpiSpec.h │ │ │ │ │ │ └── twsi │ │ │ │ │ │ ├── mvCompVer.txt │ │ │ │ │ │ ├── mvTwsi.c │ │ │ │ │ │ ├── mvTwsi.h │ │ │ │ │ │ ├── mvTwsiEeprom.S │ │ │ │ │ │ └── mvTwsiSpec.h │ │ │ │ │ ├── ocf-bench.c │ │ │ │ │ ├── ocf-compat.h │ │ │ │ │ ├── ocfnull │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ocfnull.c │ │ │ │ │ ├── pasemi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pasemi.c │ │ │ │ │ └── pasemi_fnu.h │ │ │ │ │ ├── random.c │ │ │ │ │ ├── rndtest.c │ │ │ │ │ ├── rndtest.h │ │ │ │ │ ├── safe │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hmachack.h │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── safe.c │ │ │ │ │ ├── safereg.h │ │ │ │ │ ├── safevar.h │ │ │ │ │ ├── sha1.c │ │ │ │ │ └── sha1.h │ │ │ │ │ ├── talitos │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── talitos.c │ │ │ │ │ ├── talitos_dev.h │ │ │ │ │ └── talitos_soft.h │ │ │ │ │ ├── ubsec_ssb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bsdqueue.h │ │ │ │ │ ├── ubsec_ssb.c │ │ │ │ │ ├── ubsecreg.h │ │ │ │ │ └── ubsecvar.h │ │ │ │ │ └── uio.h │ │ │ ├── drivers │ │ │ │ ├── leds │ │ │ │ │ ├── ledtrig-morse.c │ │ │ │ │ ├── ledtrig-netdev.c │ │ │ │ │ └── ledtrig-usbdev.c │ │ │ │ ├── mtd │ │ │ │ │ ├── mtdsplit │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mtdsplit.c │ │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ │ ├── mtdsplit_fit.c │ │ │ │ │ │ ├── mtdsplit_lzma.c │ │ │ │ │ │ ├── mtdsplit_seama.c │ │ │ │ │ │ ├── mtdsplit_squashfs.c │ │ │ │ │ │ ├── mtdsplit_tplink.c │ │ │ │ │ │ ├── mtdsplit_trx.c │ │ │ │ │ │ └── mtdsplit_uimage.c │ │ │ │ │ └── myloader.c │ │ │ │ └── net │ │ │ │ │ └── phy │ │ │ │ │ ├── adm6996.c │ │ │ │ │ ├── adm6996.h │ │ │ │ │ ├── ar8216.c │ │ │ │ │ ├── ar8216.h │ │ │ │ │ ├── ar8327.c │ │ │ │ │ ├── ar8327.h │ │ │ │ │ ├── b53 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── b53_common.c │ │ │ │ │ ├── b53_mdio.c │ │ │ │ │ ├── b53_mmap.c │ │ │ │ │ ├── b53_phy_fixup.c │ │ │ │ │ ├── b53_priv.h │ │ │ │ │ ├── b53_regs.h │ │ │ │ │ ├── b53_spi.c │ │ │ │ │ └── b53_srab.c │ │ │ │ │ ├── ip17xx.c │ │ │ │ │ ├── mvsw61xx.c │ │ │ │ │ ├── mvsw61xx.h │ │ │ │ │ ├── mvswitch.c │ │ │ │ │ ├── mvswitch.h │ │ │ │ │ ├── psb6970.c │ │ │ │ │ ├── rtl8306.c │ │ │ │ │ ├── rtl8366_smi.c │ │ │ │ │ ├── rtl8366_smi.h │ │ │ │ │ ├── rtl8366rb.c │ │ │ │ │ ├── rtl8366s.c │ │ │ │ │ ├── rtl8367.c │ │ │ │ │ ├── rtl8367b.c │ │ │ │ │ ├── swconfig.c │ │ │ │ │ └── swconfig_leds.c │ │ │ ├── fs │ │ │ │ └── yaffs2 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NOTE.openwrt │ │ │ │ │ ├── yaffs_allocator.c │ │ │ │ │ ├── yaffs_allocator.h │ │ │ │ │ ├── yaffs_attribs.c │ │ │ │ │ ├── yaffs_attribs.h │ │ │ │ │ ├── yaffs_bitmap.c │ │ │ │ │ ├── yaffs_bitmap.h │ │ │ │ │ ├── yaffs_checkptrw.c │ │ │ │ │ ├── yaffs_checkptrw.h │ │ │ │ │ ├── yaffs_ecc.c │ │ │ │ │ ├── yaffs_ecc.h │ │ │ │ │ ├── yaffs_getblockinfo.h │ │ │ │ │ ├── yaffs_guts.c │ │ │ │ │ ├── yaffs_guts.h │ │ │ │ │ ├── yaffs_linux.h │ │ │ │ │ ├── yaffs_mtdif.c │ │ │ │ │ ├── yaffs_mtdif.h │ │ │ │ │ ├── yaffs_nameval.c │ │ │ │ │ ├── yaffs_nameval.h │ │ │ │ │ ├── yaffs_nand.c │ │ │ │ │ ├── yaffs_nand.h │ │ │ │ │ ├── yaffs_packedtags1.c │ │ │ │ │ ├── yaffs_packedtags1.h │ │ │ │ │ ├── yaffs_packedtags2.c │ │ │ │ │ ├── yaffs_packedtags2.h │ │ │ │ │ ├── yaffs_summary.c │ │ │ │ │ ├── yaffs_summary.h │ │ │ │ │ ├── yaffs_tagscompat.c │ │ │ │ │ ├── yaffs_tagscompat.h │ │ │ │ │ ├── yaffs_tagsmarshall.c │ │ │ │ │ ├── yaffs_tagsmarshall.h │ │ │ │ │ ├── yaffs_trace.h │ │ │ │ │ ├── yaffs_verify.c │ │ │ │ │ ├── yaffs_verify.h │ │ │ │ │ ├── yaffs_vfs.c │ │ │ │ │ ├── yaffs_yaffs1.c │ │ │ │ │ ├── yaffs_yaffs1.h │ │ │ │ │ ├── yaffs_yaffs2.c │ │ │ │ │ ├── yaffs_yaffs2.h │ │ │ │ │ └── yportenv.h │ │ │ └── include │ │ │ │ ├── linux │ │ │ │ ├── ar8216_platform.h │ │ │ │ ├── ath5k_platform.h │ │ │ │ ├── ath9k_platform.h │ │ │ │ ├── myloader.h │ │ │ │ ├── platform_data │ │ │ │ │ ├── adm6996-gpio.h │ │ │ │ │ ├── b53.h │ │ │ │ │ └── brcmfmac-sdio.h │ │ │ │ ├── routerboot.h │ │ │ │ ├── rt2x00_platform.h │ │ │ │ ├── rtl8366.h │ │ │ │ ├── rtl8367.h │ │ │ │ └── switch.h │ │ │ │ └── uapi │ │ │ │ └── linux │ │ │ │ └── switch.h │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── initramfs-base-files.txt │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── lzma-copy.lds.in │ │ │ │ │ ├── lzma.lds.in │ │ │ │ │ ├── print.c │ │ │ │ │ ├── print.h │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── start.S │ │ │ │ │ ├── uart16550.c │ │ │ │ │ └── uart16550.h │ │ │ └── relocate │ │ │ │ ├── Makefile │ │ │ │ ├── cacheops.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ └── loader.lds │ │ ├── patches-3.18 │ │ │ ├── 000-keep_initrafs_the_default.patch │ │ │ ├── 020-ssb_update.patch │ │ │ ├── 021-ssb_sprom.patch │ │ │ ├── 025-bcma_backport.patch │ │ │ ├── 026-bcma-from-3.20.patch │ │ │ ├── 027-bcma-from-4.1.patch │ │ │ ├── 028-bcma-from-4.2.patch │ │ │ ├── 030-nl80211-Allow-set-network-namespace-by-fd.patch │ │ │ ├── 040-mtd-bcm47xxpart-backports-from-3.19.patch │ │ │ ├── 041-mtd-bcm47xxpart-backports-from-3.20.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 051-02-bridge-allow-setting-hash_max-multicast_router-if-in.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 070-bgmac-register-napi-before-the-device.patch │ │ │ ├── 071-bgmac-activate-irqs-only-if-there-is-nothing-to-poll.patch │ │ │ ├── 072-bgmac-fix-device-initialization-on-Northstar-SoCs-co.patch │ │ │ ├── 073-bgmac-Clean-warning-messages.patch │ │ │ ├── 074-bgmac-register-fixed-PHY-for-ARM-BCM470X-BCM5301X-ch.patch │ │ │ ├── 075-bgmac-allow-enabling-on-ARCH_BCM_5301X.patch │ │ │ ├── 076-net-phy-export-fixed_phy_register.patch │ │ │ ├── 077-01-bgmac-fix-descriptor-frame-start-end-definitions.patch │ │ │ ├── 077-02-bgmac-implement-GRO-and-use-build_skb.patch │ │ │ ├── 077-03-bgmac-implement-scatter-gather-support.patch │ │ │ ├── 077-04-bgmac-simplify-tx-ring-index-handling.patch │ │ │ ├── 077-05-bgmac-leave-interrupts-disabled-as-long-as-there-is-.patch │ │ │ ├── 077-06-bgmac-set-received-skb-headroom-to-NET_SKB_PAD.patch │ │ │ ├── 077-07-bgmac-simplify-rx-DMA-error-handling.patch │ │ │ ├── 077-08-bgmac-add-check-for-oversized-packets.patch │ │ │ ├── 077-09-bgmac-increase-rx-ring-size-from-511-to-512.patch │ │ │ ├── 077-10-bgmac-simplify-dma-init-cleanup.patch │ │ │ ├── 077-11-bgmac-fix-DMA-rx-corruption.patch │ │ │ ├── 077-12-bgmac-drop-ring-num_slots.patch │ │ │ ├── 077-13-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 077-14-bgmac-reset-all-4-GMAC-cores-on-init.patch │ │ │ ├── 080-00-fib_trie-Fix-proc-net-fib_trie-when-CONFIG_IP_MULTIP.patch │ │ │ ├── 080-01-fib_trie-Fix-trie-balancing-issue-if-new-node-pushes.patch │ │ │ ├── 080-02-fib_trie-Update-usage-stats-to-be-percpu-instead-of-.patch │ │ │ ├── 080-03-fib_trie-Make-leaf-and-tnode-more-uniform.patch │ │ │ ├── 080-04-fib_trie-Merge-tnode_free-and-leaf_free-into-node_fr.patch │ │ │ ├── 080-05-fib_trie-Merge-leaf-into-tnode.patch │ │ │ ├── 080-06-fib_trie-Optimize-fib_table_lookup-to-avoid-wasting-.patch │ │ │ ├── 080-07-fib_trie-Optimize-fib_find_node.patch │ │ │ ├── 080-08-fib_trie-Optimize-fib_table_insert.patch │ │ │ ├── 080-09-fib_trie-Update-meaning-of-pos-to-represent-unchecke.patch │ │ │ ├── 080-10-fib_trie-Use-unsigned-long-for-anything-dealing-with.patch │ │ │ ├── 080-11-fib_trie-Push-rcu_read_lock-unlock-to-callers.patch │ │ │ ├── 080-12-fib_trie-Move-resize-to-after-inflate-halve.patch │ │ │ ├── 080-13-fib_trie-Add-functions-should_inflate-and-should_hal.patch │ │ │ ├── 080-14-fib_trie-Push-assignment-of-child-to-parent-down-int.patch │ │ │ ├── 080-15-fib_trie-Push-tnode-flushing-down-to-inflate-halve.patch │ │ │ ├── 080-16-fib_trie-inflate-halve-nodes-in-a-more-RCU-friendly-.patch │ │ │ ├── 080-17-fib_trie-Remove-checks-for-index-tnode_child_length-.patch │ │ │ ├── 080-18-fib_trie-Add-tracking-value-for-suffix-length.patch │ │ │ ├── 080-19-fib_trie-Use-index-0ul-n-bits-instead-of-index-n-bit.patch │ │ │ ├── 080-20-fib_trie-Fix-RCU-bug-and-merge-similar-bits-of-infla.patch │ │ │ ├── 080-21-fib_trie-Fall-back-to-slen-update-on-inflate-halve-f.patch │ │ │ ├── 080-22-fib_trie-Add-collapse-and-should_collapse-to-resize.patch │ │ │ ├── 080-23-fib_trie-Use-empty_children-instead-of-counting-empt.patch │ │ │ ├── 080-24-fib_trie-Move-fib_find_alias-to-file-where-it-is-use.patch │ │ │ ├── 080-25-fib_trie-Various-clean-ups-for-handling-slen.patch │ │ │ ├── 081-pppoe-Use-workqueue-to-die-properly-when-a-PADT-is-r.patch │ │ │ ├── 090-overlayfs-fallback-to-readonly-when-full.patch │ │ │ ├── 100-pppoe-drop-pppoe-device-in-pppoe_unbind_sock_work.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 110-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 111-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 180-usb-xhci-make-USB_XHCI_PLATFORM-selectable.patch │ │ │ ├── 200-fix_localversion.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 213-x86_vdso_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 252-mv_cesa_depends.patch │ │ │ ├── 253-ssb_b43_default_on.patch │ │ │ ├── 254-textsearch_kconfig_hacks.patch │ │ │ ├── 255-lib80211_kconfig_hacks.patch │ │ │ ├── 256-crypto_add_kconfig_prompts.patch │ │ │ ├── 257-wireless_ext_kconfig_hack.patch │ │ │ ├── 258-netfilter_netlink_kconfig_hack.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 262-compressor_kconfig_hack.patch │ │ │ ├── 270-bridge_header_fix.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.patch │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ ├── 309-mips_fuse_workaround.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 320-ppc4xx_optimization.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 400-mtd-add-rootfs-split-support.patch │ │ │ ├── 401-mtd-add-support-for-different-partition-parser-types.patch │ │ │ ├── 402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch │ │ │ ├── 403-mtd-hook-mtdsplit-to-Kbuild.patch │ │ │ ├── 404-mtd-add-more-helper-functions.patch │ │ │ ├── 405-mtd-old-firmware-uimage-splitter.patch │ │ │ ├── 406-mtd-old-rootfs-squashfs-splitter.patch │ │ │ ├── 410-mtd-move-forward-declaration-of-struct-mtd_info.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-support-for-Xiaomi-specific-board_da.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.patch │ │ │ ├── 450-mtd-nand-allow-to-use-platform-specific-chip-fixup.patch │ │ │ ├── 451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 472-mtd-m25p80-add-support-for-Winbond-W25X05-flash.patch │ │ │ ├── 473-mtd-spi-nor-add-support-for-the-Macronix-MX25L512E-S.patch │ │ │ ├── 474-mtd-spi-nor-add-support-for-the-ISSI-SI25CD512-SPI-f.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch │ │ │ ├── 491-ubi-auto-create-ubiblock-device-for-rootfs.patch │ │ │ ├── 492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch │ │ │ ├── 493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch │ │ │ ├── 494-mtd-ubi-add-EOF-marker-support.patch │ │ │ ├── 500-yaffs-Kbuild-integration.patch │ │ │ ├── 501-yaffs-add-missing-flush-arguments.patch │ │ │ ├── 502-yaffs-fix-compat-tags-handling.patch │ │ │ ├── 503-yaffs-add-tags-9bytes-mount-option.patch │ │ │ ├── 504-yaffs-3.16-new-fops.patch │ │ │ ├── 520-squashfs_update_xz_comp_opts.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 540-crypto-xz-decompression-support.patch │ │ │ ├── 541-ubifs-xz-decompression-support.patch │ │ │ ├── 550-ubifs-symlink-xattr-support.patch │ │ │ ├── 551-ubifs-fix-default-compression-selection.patch │ │ │ ├── 600-netfilter_conntrack_flush.patch │ │ │ ├── 610-netfilter_match_bypass_default_checks.patch │ │ │ ├── 611-netfilter_match_bypass_default_table.patch │ │ │ ├── 612-netfilter_match_reduce_memory_access.patch │ │ │ ├── 613-netfilter_optional_tcp_window_check.patch │ │ │ ├── 615-netfilter_add_xt_id_match.patch │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 620-sched_esfq.patch │ │ │ ├── 621-sched_act_connmark.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 640-bridge_no_eap_forward.patch │ │ │ ├── 641-bridge_always_accept_eap.patch │ │ │ ├── 642-bridge_port_isolate.patch │ │ │ ├── 643-bridge_remove_ipv6_dependency.patch │ │ │ ├── 644-bridge_optimize_netfilter_hooks.patch │ │ │ ├── 645-bridge_multicast_to_unicast.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 652-atm_header_changes.patch │ │ │ ├── 653-disable_netlink_trim.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 656-skb_reduce_truesize-helper.patch │ │ │ ├── 657-qdisc_reduce_truesize.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-fq_codel_keep_dropped_stats.patch │ │ │ ├── 662-use_fq_codel_by_default.patch │ │ │ ├── 663-remove_pfifo_fast.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 667-ipv6-Fixed-source-specific-default-route-handling.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ ├── 681-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 700-swconfig.patch │ │ │ ├── 701-phy_extension.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-phy-no-genphy-soft-reset.patch │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 720-phy_adm6996.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 722-phy_mvswitch.patch │ │ │ ├── 723-phy_ip175c.patch │ │ │ ├── 724-phy_ar8216.patch │ │ │ ├── 725-phy_rtl8306.patch │ │ │ ├── 726-phy_rtl8366.patch │ │ │ ├── 727-phy-rtl8367.patch │ │ │ ├── 728-phy-rtl8367b.patch │ │ │ ├── 729-phy-tantos.patch │ │ │ ├── 730-phy_b53.patch │ │ │ ├── 731-phy_mvswitch_3.10_compilation.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 733-phy_mvsw61xx.patch │ │ │ ├── 750-hostap_txpower.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-igb-Fix-Null-pointer-dereference-in-igb_reset_q_vect.patch │ │ │ ├── 785-hso-support-0af0-9300.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 820-usb_add_usb_find_device_by_name.patch │ │ │ ├── 821-usb-dwc2-dualrole.patch │ │ │ ├── 830-ledtrig_morse.patch │ │ │ ├── 831-ledtrig_netdev.patch │ │ │ ├── 832-ledtrig_usbdev.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 840-rtc7301.patch │ │ │ ├── 841-rtc_pt7c4338.patch │ │ │ ├── 861-04_spi_gpio_implement_spi_delay.patch │ │ │ ├── 862-gpio_spi_driver.patch │ │ │ ├── 863-gpiommc.patch │ │ │ ├── 864-gpiommc_configfs_locking.patch │ │ │ ├── 870-hifn795x_byteswap.patch │ │ │ ├── 880-gateworks_system_controller.patch │ │ │ ├── 890-8250_optional_sysrq.patch │ │ │ ├── 900-slab_maxsize.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 902-debloat_proc.patch │ │ │ ├── 903-debloat_direct_io.patch │ │ │ ├── 910-kobject_uevent.patch │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ ├── 921-use_preinit_as_init.patch │ │ │ ├── 922-always-create-console-node-in-initramfs.patch │ │ │ ├── 930-crashlog.patch │ │ │ ├── 940-ocf_kbuild_integration.patch │ │ │ ├── 941-ocf_20120127.patch │ │ │ ├── 960-decompress_unlzo_fix.patch │ │ │ ├── 970-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 980-arm_openwrt_machtypes.patch │ │ │ ├── 990-gpio_wdt.patch │ │ │ ├── 995-mangle_bootargs.patch │ │ │ ├── 997-device_tree_cmdline.patch │ │ │ ├── 998-enable_wilink_platform_without_drivers.patch │ │ │ └── 999-seccomp_log.patch │ │ └── patches-4.0 │ │ │ └── 180-usb-xhci-make-USB_XHCI_PLATFORM-selectable.patch │ └── sunxi │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ ├── etc │ │ │ ├── inittab │ │ │ └── uci-defaults │ │ │ │ └── 02_network │ │ └── lib │ │ │ ├── preinit │ │ │ ├── 01_preinit_sunxi.sh │ │ │ └── 02_b53_hack.sh │ │ │ └── sunxi.sh │ │ ├── config-3.18 │ │ ├── image │ │ ├── Config.in │ │ ├── Makefile │ │ └── gen_sunxi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ ├── 100-dt-sun7i-add_spi0_pins_a.patch │ │ ├── 101-dt-sun7i-add-uart3_pins.patch │ │ ├── 102-dt-sun7i-add_mmc2_pins.patch │ │ ├── 110-input-add-sun4i-lradc.patch │ │ ├── 111-dt-sun4i-add-lradc.patch │ │ ├── 112-dt-sun5i-add-lradc.patch │ │ ├── 113-dt-sun7i-add-lradc.patch │ │ ├── 115-input-sun4i-ts-update-temp-curve.patch │ │ ├── 116-dt-sunxi-update-compats-for-tempcurves.patch │ │ ├── 130-input-add-axp20x-pek.patch │ │ ├── 150-pwm-add-sunxi-driver.patch │ │ ├── 200-mmc-add-sdio-function-subnode.patch │ │ ├── 201-dt-sun7i-add-oob-irq-to-bcm-sdio-wifi.patch │ │ ├── 202-dt-sun7i-add-bluetooth-to-cubietruck.patch │ │ ├── 270-dt-sun7i-add-ss-to-a20.patch │ │ ├── 271-crypto-add-ss.patch │ │ ├── 900-ds-add-bpi-m1.patch │ │ ├── 901-ds-add-bpi-m1-plus.patch │ │ └── 902-ds-add-bpi-r1.patch │ │ └── profiles │ │ ├── BPI-M1-Plus.mk │ │ ├── BPI-M1.mk │ │ └── BPI-R1.mk ├── sdk │ ├── Config.in │ ├── Makefile │ ├── convert-config.pl │ └── files │ │ ├── Config.in │ │ ├── Makefile │ │ ├── README.SDK │ │ └── include │ │ └── prepare.mk └── toolchain │ ├── Config.in │ ├── Makefile │ └── files │ ├── README.TOOLCHAIN │ └── wrapper.sh ├── toolchain ├── Config.in ├── Makefile ├── binutils │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── linaro │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch ├── gcc │ ├── Config.in │ ├── Config.version │ ├── common.mk │ ├── files │ │ └── alternate-arch-cc.in │ ├── final │ │ └── Makefile │ ├── initial │ │ └── Makefile │ ├── minimal │ │ └── Makefile │ └── patches │ │ ├── 4.6-linaro │ │ ├── 010-documentation.patch │ │ ├── 020-gcc_bug_54295.patch │ │ ├── 030-gcc_bug_48403.patch │ │ ├── 040-gcc_bug_49696.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl.patch │ │ ├── 301-missing-execinfo_h.patch │ │ ├── 302-c99-snprintf.patch │ │ ├── 305-libmudflap-susv3-legacy.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 860-uclibc_use_eh_frame.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 900-bad-mips16-crt │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 940-no-clobber-stamp-bits.patch │ │ └── 999-coldfire.patch │ │ ├── 4.8-linaro │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-weak_data_fix.patch │ │ ├── 003-universal_initializer.patch │ │ ├── 004-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-no-plt-backport.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl_config.patch │ │ ├── 201-musl_arm.patch │ │ ├── 202-musl_mips.patch │ │ ├── 203-musl_powerpc.patch │ │ ├── 204-musl_sh.patch │ │ ├── 205-musl_x86.patch │ │ ├── 206-musl_aarch64.patch │ │ ├── 207-musl_fixincludes.patch │ │ ├── 208-musl_gomp.patch │ │ ├── 209-musl_libstdc++.patch │ │ ├── 210-disable_libsanitizer_off_t_check.patch │ │ ├── 220-musl_mips_softfloat.patch │ │ ├── 221-musl_mips64.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 860-use_eh_frame.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 940-no-clobber-stamp-bits.patch │ │ └── 951-arm_bug_58595.patch │ │ └── 4.9-linaro │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-no-plt-backport.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 200-musl_config.patch │ │ ├── 201-musl_arm.patch │ │ ├── 202-musl_mips.patch │ │ ├── 203-musl_powerpc.patch │ │ ├── 204-musl_sh.patch │ │ ├── 205-musl_x86.patch │ │ ├── 206-musl_aarch64.patch │ │ ├── 207-musl_fixincludes.patch │ │ ├── 208-musl_gomp.patch │ │ ├── 209-musl_libstdc++.patch │ │ ├── 210-disable_libsanitizer_off_t_check.patch │ │ ├── 220-musl_mips_softfloat.patch │ │ ├── 221-musl_mips64.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 860-use_eh_frame.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ └── 940-no-clobber-stamp-bits.patch ├── gdb │ ├── Makefile │ └── patches │ │ ├── 100-ppc_compile_fix.patch │ │ ├── 110-no_extern_inline.patch │ │ └── 600-fix-compile-flag-mismatch.patch ├── glibc │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── config │ │ └── Config.in │ ├── headers │ │ └── Makefile │ ├── include │ │ └── libintl.h │ └── patches │ │ ├── 2.15 │ │ ├── 001-fix_autoconf_macro.patch │ │ ├── 005-versions.patch │ │ ├── 050-all_glibc-2.14-leak-revert-crash.patch │ │ ├── 100-fix_cross_rpcgen.patch │ │ ├── 110-fix_cross_zic.patch │ │ ├── 120-use_host_cflags.patch │ │ └── 200-add-dl-search-paths.patch │ │ ├── 2.19 │ │ ├── 100-fix_cross_rpcgen.patch │ │ ├── 200-add-dl-search-paths.patch │ │ └── 300-require-autoconf-2.69.patch │ │ └── 2.21 │ │ ├── 100-fix_cross_rpcgen.patch │ │ └── 200-add-dl-search-paths.patch ├── info.mk ├── insight │ ├── Makefile │ └── patches │ │ └── 600-fix-compile-flag-mismatch.patch ├── kernel-headers │ └── Makefile ├── musl │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── headers │ │ └── Makefile │ ├── include │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── features.h │ │ ├── sgidefs.h │ │ └── sys │ │ │ ├── cdefs.h │ │ │ ├── glibc-types.h │ │ │ └── queue.h │ └── patches │ │ ├── 001-git-2015-06-04.patch │ │ ├── 100-add_glob_onlydir.patch │ │ └── 900-iconv_size_hack.patch ├── uClibc │ ├── Config.in │ ├── Config.version │ ├── Makefile │ ├── common.mk │ ├── config-0.9.33.2 │ │ ├── arm │ │ ├── armeb │ │ ├── common │ │ ├── debug │ │ ├── i386 │ │ ├── i686 │ │ ├── m68k │ │ ├── mips │ │ ├── mips64 │ │ ├── mips64.32 │ │ ├── mips64.64 │ │ ├── mips64.n32 │ │ ├── mips64el │ │ ├── mips64el.32 │ │ ├── mips64el.64 │ │ ├── mips64el.n32 │ │ ├── mipsel │ │ ├── mipsel.cobalt │ │ ├── powerpc │ │ ├── powerpc.e500 │ │ ├── sparc │ │ ├── sparc.leon │ │ └── x86_64 │ ├── headers │ │ └── Makefile │ ├── patches-0.9.33.2 │ │ ├── 009_backport_mount.h-update.patch │ │ ├── 010-backport_sscanf_alloc.patch │ │ ├── 011-dlsym_rtld_next_fix.patch │ │ ├── 012-elf-Add-STT_GNU_IFUNC-from-glibc.patch │ │ ├── 020-endian.h-add-some-handy-macros-to-be-used-in-syscall.patch │ │ ├── 021-add-posix_madvise.c.patch │ │ ├── 022-libc-add-posix_fallocate.patch │ │ ├── 023-libc-add-fallocate-and-fallocate64.patch │ │ ├── 024-i386-bits-syscalls.h-allow-immediate-values-as-6th-s.patch │ │ ├── 025-libc-sync_file_range.patch │ │ ├── 100-fix_unifdef.patch │ │ ├── 110-compat_macros.patch │ │ ├── 120-adjtimex.patch │ │ ├── 131-inet-fix-__read_etc_hosts_r-segfault.patch │ │ ├── 132-inet_fix_res_init.patch │ │ ├── 133-inet6-scoped-getnameinfo.patch │ │ ├── 135-inet_fix_threaded_use_of_res_functions.patch │ │ ├── 136-inet_make_res_init_thread_safe.patch │ │ ├── 137-inet_fix_threaded_res_init.patch │ │ ├── 150-vasprintf_size_reduce.patch │ │ ├── 170-math_finite.patch │ │ ├── 180-pthread_cleanup_fix.patch │ │ ├── 190-nptl_use_arch_default_stack_limit.patch │ │ ├── 200-no_forced_unwind.patch │ │ ├── 210-mips_use_pic_crt1.patch │ │ ├── 350-use-fputs_unlocked.patch │ │ ├── 410-llvm_workaround.patch │ │ ├── 450-powerpc_copysignl.patch │ │ ├── 460-powerpc_ptrace_h.patch │ │ ├── 470-powerpc_syscall6.patch │ │ ├── 480-powerpc_rel24_support.patch │ │ ├── 500-eventfd.patch │ │ ├── 600-mips64_abi_selection.patch │ │ ├── 610-mips64_syscall_fix.patch │ │ ├── 611-mips_syscall_error_argument.patch │ │ ├── 612-mips64_relocation_fix.patch │ │ ├── 613-mips64_more_relocation_fixes.patch │ │ ├── 614-mips64_fix_setjmp_longjmp.patch │ │ ├── 615-mips_fix_sigev_pad_size.patch │ │ ├── 616-mips_fix_stat_time.patch │ │ ├── 617-mips_fix_setjmp_ptrsize.patch │ │ ├── 618-mips64_fix_syscall_error.patch │ │ ├── 619-mips64_fix_sysdep_cancel.patch │ │ ├── 960-remove_eabi_oabi_selection.patch │ │ ├── 970-add___kernel_long_and___kernel_ulong.patch │ │ ├── 981-fix_setting_arch_native_bit.patch │ │ ├── 990-no-stack-cache.patch │ │ ├── 991-gen_wctype.patch │ │ ├── 995-add-sigsys-to-siginfo_t-union.patch │ │ └── 999-eventfd_use_bits_scheme.patch │ └── utils │ │ └── Makefile └── wrapper │ └── Makefile └── tools ├── Makefile ├── autoconf ├── Makefile └── patches │ ├── 000-relocatable.patch │ ├── 001-no_emacs_lib.patch │ └── 002-musl_host_fixup.patch ├── automake ├── Makefile ├── files │ └── aclocal └── patches │ ├── 000-relocatable.patch │ ├── 100-aclocal-skip-not-existing-directories.patch │ └── 200-do-not-override-silent-rules.patch ├── b43-tools ├── Makefile ├── files │ └── b43-fwsquash.py └── patches │ ├── 001-fw-dirname.patch │ └── 002-no_libfl.patch ├── bc ├── Makefile └── patches │ └── 001-no_doc.patch ├── bison ├── Makefile └── patches │ ├── 010-intl-stub-compat.patch │ └── 100-fix-gets-removal.patch ├── ccache ├── Makefile └── files │ ├── ccache_cc │ └── ccache_cxx ├── cloog └── Makefile ├── cmake ├── Makefile └── patches │ ├── 100-disable_qt_tests.patch │ └── 110-freebsd-compat.patch ├── dosfstools ├── Makefile └── patches │ ├── 0001-Add-tags-and-editor-backup-files-to-.gitignore.patch │ ├── 0002-Fix-indentation-of-fix-power-loss-damage-commit.patch │ ├── 0003-mkfs.fat.c-Use-unsigned-char-for-binary-data.patch │ ├── 0004-Make-all-char-that-may-take-literals-const.patch │ ├── 0005-mkfs.fat-Allow-0xF0-to-be-specified-as-media-byte.patch │ ├── 0006-fsck.fat-Make-r-option-default.patch │ ├── 0007-Makefile-fix-typo-in-uninstall-man.patch │ ├── 0008-Makefile-avoid-using-install-D.patch │ ├── 0009-Improve-.gitignore.patch │ ├── 0010-Remove-non-standard-int-types.patch │ ├── 0011-Remove-linux-msdos_fs.h-includes.patch │ ├── 0012-fsck.fat-Fix-read-beyond-end-of-array-on-FAT12.patch │ ├── 0013-Add-compatible-ioctl-calls-for-OSX-and-FreeBSD.patch │ └── 0014-Add-OSX-and-FreeBSD-support.patch ├── e2fsprogs ├── Makefile └── patches │ ├── 001-exit_0_on_corrected_errors.patch │ ├── 002-dont-build-e4defrag.patch │ ├── 003-openbsd-compat.patch │ └── 004-freebsd-compat.patch ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── findutils ├── Makefile └── patches │ └── 21-Fix-time_t-vs-long-int-mismatches.patch ├── firmware-utils ├── Makefile └── src │ ├── add_header.c │ ├── addpattern.c │ ├── airlink.c │ ├── asustrx.c │ ├── bcm_tag.h │ ├── bcmalgo.c │ ├── bcmalgo.h │ ├── buffalo-enc.c │ ├── buffalo-lib.c │ ├── buffalo-lib.h │ ├── buffalo-tag.c │ ├── buffalo-tftp.c │ ├── csysimg.h │ ├── cyg_crc.h │ ├── cyg_crc16.c │ ├── cyg_crc32.c │ ├── dgfirmware.c │ ├── dgn3500sum.c │ ├── edimax_fw_header.c │ ├── encode_crc.c │ ├── fix-u-media-header.c │ ├── fw.h │ ├── hcsmakeimage.c │ ├── imagetag.c │ ├── imagetag.ggo │ ├── imagetag_cmdline.c │ ├── imagetag_cmdline.h │ ├── lzma2eva.c │ ├── makeamitbin.c │ ├── md5.c │ ├── md5.h │ ├── mkbrncmdline.c │ ├── mkbrnimg.c │ ├── mkcameofw.c │ ├── mkcasfw.c │ ├── mkchkimg.c │ ├── mkcsysimg.c │ ├── mkdapimg.c │ ├── mkdcs932.c │ ├── mkdniimg.c │ ├── mkedimaximg.c │ ├── mkfwimage.c │ ├── mkfwimage2.c │ ├── mkheader_gemtek.c │ ├── mkhilinkfw.c │ ├── mkmylofw.c │ ├── mkplanexfw.c │ ├── mkporayfw.c │ ├── mkrtn56uimg.c │ ├── mksenaofw.c │ ├── mktitanimg.c │ ├── mktitanimg.h │ ├── mktplinkfw.c │ ├── mktplinkfw2.c │ ├── mkwrgimg.c │ ├── mkzcfw.c │ ├── mkzynfw.c │ ├── motorola-bin.c │ ├── myloader.h │ ├── nand_ecc.c │ ├── osbridge-crc.c │ ├── pc1crypt.c │ ├── ptgen.c │ ├── seama.c │ ├── seama.h │ ├── sha1.c │ ├── sha1.h │ ├── spw303v.c │ ├── srec2bin.c │ ├── tplink-safeloader.c │ ├── trx.c │ ├── trx2edips.c │ ├── trx2usr.c │ ├── wrt400n.c │ ├── xorimage.c │ ├── zynos.h │ └── zyxbcm.c ├── flex ├── Makefile └── patches │ └── 100-remove_no_undefined.patch ├── flock ├── Makefile └── src │ └── flock.c ├── gengetopt ├── Makefile └── patches │ ├── 100-dependency_fix.patch │ └── 200-no_docs_tests.patch ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h ├── getline.h └── sys │ └── sysmacros.h ├── libelf └── Makefile ├── libtool ├── Makefile ├── files │ ├── libtool-v1.5.patch │ ├── libtool-v2.2.patch │ └── libtool-v2.4.patch └── patches │ ├── 000-relocatable.patch │ ├── 001-fix-func_append.patch │ ├── 100-libdir-fixes.patch │ ├── 110-dont-use-target-dir-for-relinking.patch │ ├── 120-strip-unsafe-dirs-for-relinking.patch │ ├── 150-trailingslash.patch │ └── 200-openwrt-branding.patch ├── lzma-old ├── Makefile └── patches │ ├── 100-lzma_zlib.patch │ └── 110-ranlib.patch ├── lzma ├── Makefile └── patches │ ├── 001-large_files.patch │ ├── 002-lzmp.patch │ ├── 003-compile_fixes.patch │ └── 100-static_library.patch ├── m4 ├── Makefile └── patches │ └── 100-fix-gets-removal.patch ├── make-ext4fs └── Makefile ├── missing-macros ├── Makefile └── src │ ├── README │ ├── bin │ ├── help2man │ └── makeinfo │ └── m4 │ ├── as-ac-expand.m4 │ ├── as-compiler-flag.m4 │ ├── as-unaligned-access.m4 │ ├── as-version.m4 │ ├── dnet.m4 │ ├── fake-gtk-doc-check.m4 │ ├── fake-intltool.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── intdiv0.m4 │ ├── intmax.m4 │ ├── inttypes-pri.m4 │ ├── inttypes_h.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── mfx_acc.m4 │ ├── mfx_cppflags.m4 │ ├── mfx_limits.m4 │ ├── progtest.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── va_copy.m4 │ └── wint_t.m4 ├── mkimage ├── Makefile └── patches │ ├── 010-freebsd-ulong-fix.patch │ ├── 020-include_compile_fix.patch │ ├── 030-allow-to-use-different-magic.patch │ ├── 040-include_order.patch │ ├── 050-image_h_portability.patch │ ├── 060-remove_kernel_includes.patch │ ├── 070-socfpgaimage_portability.patch │ ├── 080-remove_compiler_check.patch │ ├── 100-freebsd-compat.patch │ └── 200-gcc5_compat.patch ├── mklibs ├── Makefile ├── include │ └── elf.h └── patches │ ├── 001-compile.patch │ ├── 002-disable_symbol_checks.patch │ ├── 003-no_copy.patch │ ├── 004-libpthread_link.patch │ ├── 005-duplicate_syms.patch │ ├── 006-uclibc_init.patch │ ├── 007-gc_sections.patch │ ├── 008-uclibc_libgcc_link.patch │ ├── 009-uclibc_libpthread_symbols.patch │ ├── 010-remove_STT_GNU_IFUNC.patch │ └── 011-remove_multiarch.patch ├── mm-macros └── Makefile ├── mpc └── Makefile ├── mpfr ├── Makefile └── patches │ ├── 001-only_src.patch │ └── 100-freebsd-compat.patch ├── mtd-utils ├── Makefile ├── include │ ├── fls.h │ └── linux │ │ └── types.h └── patches │ ├── 100-sscanf_fix.patch │ ├── 110-portability.patch │ ├── 130-lzma_jffs2.patch │ ├── 134-freebsd_loff_t.patch │ ├── 135-mkubifs_optional_lzo.patch │ ├── 136-mkfs.ubifs-xz-support.patch │ ├── 137-no_extern_inline.patch │ ├── 200-libubigen-add-ubigen_write_terminator-function.patch │ ├── 201-ubinize-add-terminator-support.patch │ └── 300-libfec_use_standard_unsigned_long.patch ├── mtools ├── Makefile └── patches │ └── 100-compile_fix.patch ├── padjffs2 ├── Makefile └── src │ ├── Makefile │ └── padjffs2.c ├── patch-image ├── Makefile └── src │ ├── patch-cmdline.c │ └── patch-dtb.c ├── patch └── Makefile ├── patchelf ├── Makefile └── patches │ └── 100-portability.patch ├── pkg-config ├── Makefile ├── files │ └── pkg-config └── patches │ ├── 001-fix-package-rebuild.patch │ └── 002-musl_host_fixup.patch ├── ppl ├── Makefile └── patches │ └── 001-disable-serial-tests.patch ├── qemu └── Makefile ├── quilt ├── Makefile └── patches │ ├── 000-relocatable.patch │ └── 001-fix_compile.patch ├── scons ├── Makefile ├── files │ └── pywrap.sh └── patches │ └── 001-platform_env.patch ├── sed ├── Makefile └── patches │ └── 001-musl_host_fixup.patch ├── sparse └── Makefile ├── squashfs ├── Makefile └── patches │ ├── 100-lzma.patch │ └── 110-no_nonstatic_inline.patch ├── squashfs4 ├── Makefile └── patches │ ├── 100-portability.patch │ ├── 110-allow_static_liblzma.patch │ ├── 120-cygwin_fixes.patch │ ├── 150-freebsd_fixes.patch │ ├── 160-expose_lzma_xz_options.patch │ ├── 170-add_support_for_LZMA_MAGIC_to_unsqashfs.patch │ ├── 180-openbsd_compat.patch │ └── 190-no_nonstatic_inline.patch ├── sstrip ├── Makefile └── src │ └── sstrip.c ├── upslug2 ├── Makefile └── patches │ ├── 100-libpcap_fix.patch │ └── 110-wrt350nv2_support.patch ├── upx ├── Makefile └── patches │ └── 100-lzmaonly.patch ├── wrt350nv2-builder ├── Makefile └── src │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── md5.c │ ├── md5.h │ ├── upgrade.h │ └── wrt350nv2-builder.c ├── xz ├── Makefile └── patches │ └── 100-freebsd-compat.patch └── yaffs2 ├── Makefile └── patches ├── 100-compile.patch └── 110-openbsd-compat.patch /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/README.md -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/adding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/adding.tex -------------------------------------------------------------------------------- /docs/bugs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/bugs.tex -------------------------------------------------------------------------------- /docs/build.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/build.tex -------------------------------------------------------------------------------- /docs/config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/config.tex -------------------------------------------------------------------------------- /docs/debugging.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/debugging.tex -------------------------------------------------------------------------------- /docs/init-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/init-scripts.tex -------------------------------------------------------------------------------- /docs/network-scripts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/network-scripts.tex -------------------------------------------------------------------------------- /docs/network.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/network.tex -------------------------------------------------------------------------------- /docs/openwrt.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/openwrt.sty -------------------------------------------------------------------------------- /docs/openwrt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/openwrt.tex -------------------------------------------------------------------------------- /docs/submitting-patches.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/submitting-patches.tex -------------------------------------------------------------------------------- /docs/wireless.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/wireless.tex -------------------------------------------------------------------------------- /docs/working.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/docs/working.tex -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/feeds.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/host.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/scons.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/bin/board_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/bin/board_detect -------------------------------------------------------------------------------- /package/base-files/files/bin/config_generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/bin/config_generate -------------------------------------------------------------------------------- /package/base-files/files/bin/ipcalc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/bin/ipcalc.sh -------------------------------------------------------------------------------- /package/base-files/files/bin/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/bin/login.sh -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /package/base-files/files/etc/banner.failsafe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/banner.failsafe -------------------------------------------------------------------------------- /package/base-files/files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/config/network -------------------------------------------------------------------------------- /package/base-files/files/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/config/system -------------------------------------------------------------------------------- /package/base-files/files/etc/device_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/device_info -------------------------------------------------------------------------------- /package/base-files/files/etc/diag.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (C) 2006-2009 OpenWrt.org 3 | 4 | set_state() { :; } 5 | -------------------------------------------------------------------------------- /package/base-files/files/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/init.d/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/init.d/boot -------------------------------------------------------------------------------- /package/base-files/files/etc/init.d/done: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/init.d/done -------------------------------------------------------------------------------- /package/base-files/files/etc/init.d/led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/init.d/led -------------------------------------------------------------------------------- /package/base-files/files/etc/init.d/sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/init.d/sysctl -------------------------------------------------------------------------------- /package/base-files/files/etc/init.d/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/init.d/system -------------------------------------------------------------------------------- /package/base-files/files/etc/init.d/umount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/init.d/umount -------------------------------------------------------------------------------- /package/base-files/files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/inittab -------------------------------------------------------------------------------- /package/base-files/files/etc/openwrt_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/openwrt_release -------------------------------------------------------------------------------- /package/base-files/files/etc/openwrt_version: -------------------------------------------------------------------------------- 1 | %V 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/preinit -------------------------------------------------------------------------------- /package/base-files/files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/profile -------------------------------------------------------------------------------- /package/base-files/files/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/protocols -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.button/power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/rc.button/power -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.button/reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/rc.button/reset -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/rc.common -------------------------------------------------------------------------------- /package/base-files/files/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/rc.local -------------------------------------------------------------------------------- /package/base-files/files/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/services -------------------------------------------------------------------------------- /package/base-files/files/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/shadow -------------------------------------------------------------------------------- /package/base-files/files/etc/shells: -------------------------------------------------------------------------------- 1 | /bin/ash 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/sysctl.conf -------------------------------------------------------------------------------- /package/base-files/files/etc/sysupgrade.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/etc/sysupgrade.conf -------------------------------------------------------------------------------- /package/base-files/files/lib/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/lib/functions.sh -------------------------------------------------------------------------------- /package/base-files/files/rom/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/firstboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/sbin/firstboot -------------------------------------------------------------------------------- /package/base-files/files/sbin/hotplug-call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/sbin/hotplug-call -------------------------------------------------------------------------------- /package/base-files/files/sbin/led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/sbin/led.sh -------------------------------------------------------------------------------- /package/base-files/files/sbin/sysupgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/sbin/sysupgrade -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/apex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/apex/Makefile -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/rbcfg/src/cyg_crc32.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/uboot-sunxi/uEnv.txt -------------------------------------------------------------------------------- /package/boot/yamonenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/boot/yamonenv/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/patches/100-musl_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/gdb/patches/100-musl_fix.patch -------------------------------------------------------------------------------- /package/devel/oprofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/oprofile/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/files/default.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/devel/valgrind/files/default.supp -------------------------------------------------------------------------------- /package/devel/valgrind/src/abort.c: -------------------------------------------------------------------------------- 1 | void abort(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /package/firmware/am33x-cm3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/firmware/am33x-cm3/Makefile -------------------------------------------------------------------------------- /package/firmware/ixp4xx-microcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/firmware/ixp4xx-microcode/Makefile -------------------------------------------------------------------------------- /package/firmware/linux-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/firmware/linux-firmware/Makefile -------------------------------------------------------------------------------- /package/firmware/vsc73x5-ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/firmware/vsc73x5-ucode/Makefile -------------------------------------------------------------------------------- /package/kernel/acx-mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/acx-mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/ar7-atm/Config.in -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/ar7-atm/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/avila-wdt/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := avila-wdt.o 2 | -------------------------------------------------------------------------------- /package/kernel/avila-wdt/src/avila-wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/avila-wdt/src/avila-wdt.c -------------------------------------------------------------------------------- /package/kernel/brcm2708-gpu-fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/brcm2708-gpu-fw/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/broadcom-wl/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/src/glue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/broadcom-wl/src/glue/Makefile -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/src/wlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/broadcom-wl/src/wlc.c -------------------------------------------------------------------------------- /package/kernel/button-hotplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/button-hotplug/Makefile -------------------------------------------------------------------------------- /package/kernel/button-hotplug/src/Kconfig: -------------------------------------------------------------------------------- 1 | config BUTTON_HOTPLUG 2 | tristate "Button Hotplug driver" 3 | -------------------------------------------------------------------------------- /package/kernel/button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_BUTTON_HOTPLUG} += button-hotplug.o -------------------------------------------------------------------------------- /package/kernel/ep80579-drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/ep80579-drivers/Makefile -------------------------------------------------------------------------------- /package/kernel/gpio-button-hotplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/gpio-button-hotplug/Makefile -------------------------------------------------------------------------------- /package/kernel/gpio-button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += gpio-button-hotplug.o 2 | -------------------------------------------------------------------------------- /package/kernel/hostap-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/hostap-driver/Makefile -------------------------------------------------------------------------------- /package/kernel/i2c-gpio-custom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/i2c-gpio-custom/Makefile -------------------------------------------------------------------------------- /package/kernel/i2c-gpio-custom/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/i2c-gpio-custom/src/Kconfig -------------------------------------------------------------------------------- /package/kernel/i2c-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_I2C_GPIO_CUSTOM} += i2c-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-adsl-fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-adsl-fw/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-adsl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-adsl/Config.in -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-adsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-adsl/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-atm/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-deu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-deu/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-hcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-hcd/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-hcd/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-hcd/src/Kconfig -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-ifxos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-ifxos/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-ptm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-ptm/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-tapi/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-tapi/Config.in -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-tapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-tapi/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-vdsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-vdsl/Makefile -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-vmmc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-vmmc/Config.in -------------------------------------------------------------------------------- /package/kernel/lantiq/ltq-vmmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/lantiq/ltq-vmmc/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/block.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/block.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/can.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/crypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/crypto.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/firewire.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/firewire.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/hwmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/hwmon.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/i2c.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/input.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/input.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/leds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/leds.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/lib.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/netfilter.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/nls.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/other.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/other.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/pcmcia.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/pcmcia.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/sound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/sound.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/spi.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/usb.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/video.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/video.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/virtual.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/virtual.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/wireless.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/wireless.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/wpan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/linux/modules/wpan.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mac80211/files/regdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/mac80211/files/regdb.txt -------------------------------------------------------------------------------- /package/kernel/mmc_over_gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/mmc_over_gpio/Makefile -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/om-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/om-watchdog/Makefile -------------------------------------------------------------------------------- /package/kernel/rotary-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_ROTARY_GPIO_CUSTOM} += rotary-gpio-custom.o 2 | -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/rtc-rv5c386a/Makefile -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/rtc-rv5c386a/src/Makefile -------------------------------------------------------------------------------- /package/kernel/rtc-rv5c386a/src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/rtc-rv5c386a/src/rtc.c -------------------------------------------------------------------------------- /package/kernel/spi-gpio-custom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/spi-gpio-custom/Makefile -------------------------------------------------------------------------------- /package/kernel/spi-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_SPI_GPIO_CUSTOM} += spi-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/trelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/trelay/Makefile -------------------------------------------------------------------------------- /package/kernel/trelay/files/trelay.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/trelay/files/trelay.config -------------------------------------------------------------------------------- /package/kernel/trelay/files/trelay.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/trelay/files/trelay.init -------------------------------------------------------------------------------- /package/kernel/trelay/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := trelay.o 2 | -------------------------------------------------------------------------------- /package/kernel/trelay/src/trelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/trelay/src/trelay.c -------------------------------------------------------------------------------- /package/kernel/w1-gpio-custom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/w1-gpio-custom/Makefile -------------------------------------------------------------------------------- /package/kernel/w1-gpio-custom/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/w1-gpio-custom/src/Kconfig -------------------------------------------------------------------------------- /package/kernel/w1-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_W1_MASTER_GPIO_CUSTOM} += w1-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/wrt55agv2-spidevs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/kernel/wrt55agv2-spidevs/Makefile -------------------------------------------------------------------------------- /package/kernel/wrt55agv2-spidevs/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += wrt55agv2_spidevs.o 2 | -------------------------------------------------------------------------------- /package/libs/argp-standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/argp-standalone/Makefile -------------------------------------------------------------------------------- /package/libs/cyassl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/cyassl/Makefile -------------------------------------------------------------------------------- /package/libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/codeset.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/gettext.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/intl.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intldir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/intldir.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intlmacosx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/intlmacosx.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/lcmessage.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv-full/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libiconv/src/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/src/include/iconv.h -------------------------------------------------------------------------------- /package/libs/libiconv/src/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libiconv/src/m4/iconv.m4 -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnetfilter-log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnetfilter-log/Makefile -------------------------------------------------------------------------------- /package/libs/libnetfilter-queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnetfilter-queue/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/attr.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/cache.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/cache_mngt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/cache_mngt.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/error.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/genl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/genl_ctrl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl_family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/genl_family.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl_mngt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/genl_mngt.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/handlers.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/include/unl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/include/unl.h -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/msg.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/nl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/object.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/socket.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/unl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl-tiny/src/unl.c -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libreadline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libreadline/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/librpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/librpc/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/ocf-crypto-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/ocf-crypto-headers/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/polarssl/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/firewall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/firewall/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/gre/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/files/gre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/gre/files/gre.sh -------------------------------------------------------------------------------- /package/network/config/ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/ipip/Makefile -------------------------------------------------------------------------------- /package/network/config/ipip/files/ipip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/ipip/files/ipip.sh -------------------------------------------------------------------------------- /package/network/config/netifd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/netifd/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/qos-scripts/files/usr/bin/qos-start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | qos-stop 3 | /usr/lib/qos/generate.sh all | sh 4 | 5 | -------------------------------------------------------------------------------- /package/network/config/soloscli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/soloscli/Makefile -------------------------------------------------------------------------------- /package/network/config/swconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/swconfig/Makefile -------------------------------------------------------------------------------- /package/network/config/swconfig/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/swconfig/src/cli.c -------------------------------------------------------------------------------- /package/network/config/swconfig/src/uci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/config/swconfig/src/uci.c -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6in4/files/6in4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6in4/files/6in4.sh -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/files/6rd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6rd/files/6rd.sh -------------------------------------------------------------------------------- /package/network/ipv6/6rd/src/6rdcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6rd/src/6rdcalc.c -------------------------------------------------------------------------------- /package/network/ipv6/6rd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6rd/src/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/files/6to4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/6to4/files/6to4.sh -------------------------------------------------------------------------------- /package/network/ipv6/ds-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/ds-lite/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/map/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/files/map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/map/files/map.sh -------------------------------------------------------------------------------- /package/network/ipv6/map/src/mapcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/map/src/mapcalc.c -------------------------------------------------------------------------------- /package/network/ipv6/odhcp6c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/odhcp6c/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/thc-ipv6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/ipv6/thc-ipv6/Makefile -------------------------------------------------------------------------------- /package/network/services/authsae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/authsae/Makefile -------------------------------------------------------------------------------- /package/network/services/dnsmasq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/dnsmasq/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/src/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/aes.c -------------------------------------------------------------------------------- /package/network/services/ead/src/ead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/ead.c -------------------------------------------------------------------------------- /package/network/services/ead/src/ead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/ead.h -------------------------------------------------------------------------------- /package/network/services/ead/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/filter.c -------------------------------------------------------------------------------- /package/network/services/ead/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/list.h -------------------------------------------------------------------------------- /package/network/services/ead/src/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/passwd -------------------------------------------------------------------------------- /package/network/services/ead/src/pfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/pfc.c -------------------------------------------------------------------------------- /package/network/services/ead/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ead/src/sha1.c -------------------------------------------------------------------------------- /package/network/services/ead/src/tinysrp/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /package/network/services/hostapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/hostapd/Makefile -------------------------------------------------------------------------------- /package/network/services/lldpd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/lldpd/Config.in -------------------------------------------------------------------------------- /package/network/services/lldpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/lldpd/Makefile -------------------------------------------------------------------------------- /package/network/services/mdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/mdns/Makefile -------------------------------------------------------------------------------- /package/network/services/mdns/files/mdns.config: -------------------------------------------------------------------------------- 1 | config mdns 2 | option jail 1 3 | list network lan 4 | -------------------------------------------------------------------------------- /package/network/services/odhcpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/odhcpd/Makefile -------------------------------------------------------------------------------- /package/network/services/openvpn-easy-rsa/files/easy-rsa.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/network/services/openvpn-easy-rsa/files/easy-rsa.serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /package/network/services/openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/openvpn/Makefile -------------------------------------------------------------------------------- /package/network/services/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /package/network/services/ppp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ppp/Makefile -------------------------------------------------------------------------------- /package/network/services/ppp/files/etc/ppp/chap-secrets: -------------------------------------------------------------------------------- 1 | #USERNAME PROVIDER PASSWORD IPADDRESS 2 | -------------------------------------------------------------------------------- /package/network/services/ppp/files/etc/ppp/radius/servers: -------------------------------------------------------------------------------- 1 | # SERVER SECRET 2 | localhost secret 3 | -------------------------------------------------------------------------------- /package/network/services/ppp/files/ppp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ppp/files/ppp.sh -------------------------------------------------------------------------------- /package/network/services/ppp/utils/pfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/ppp/utils/pfc.c -------------------------------------------------------------------------------- /package/network/services/relayd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/relayd/Makefile -------------------------------------------------------------------------------- /package/network/services/samba36/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/samba36/Makefile -------------------------------------------------------------------------------- /package/network/services/uhttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/services/uhttpd/Makefile -------------------------------------------------------------------------------- /package/network/utils/arptables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/arptables/Makefile -------------------------------------------------------------------------------- /package/network/utils/comgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/comgt/Makefile -------------------------------------------------------------------------------- /package/network/utils/comgt/files/3g.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/comgt/files/3g.chat -------------------------------------------------------------------------------- /package/network/utils/comgt/files/3g.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/comgt/files/3g.sh -------------------------------------------------------------------------------- /package/network/utils/comgt/files/3g.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/comgt/files/3g.usb -------------------------------------------------------------------------------- /package/network/utils/comgt/files/ncm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/comgt/files/ncm.sh -------------------------------------------------------------------------------- /package/network/utils/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/curl/Config.in -------------------------------------------------------------------------------- /package/network/utils/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/curl/Makefile -------------------------------------------------------------------------------- /package/network/utils/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/dante/Makefile -------------------------------------------------------------------------------- /package/network/utils/ebtables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/ebtables/Makefile -------------------------------------------------------------------------------- /package/network/utils/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iftop/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iperf/Makefile -------------------------------------------------------------------------------- /package/network/utils/iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iperf3/Makefile -------------------------------------------------------------------------------- /package/network/utils/iproute2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iproute2/Makefile -------------------------------------------------------------------------------- /package/network/utils/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/ipset/Makefile -------------------------------------------------------------------------------- /package/network/utils/iptables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iptables/Makefile -------------------------------------------------------------------------------- /package/network/utils/iputils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iputils/Makefile -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iwcap/Makefile -------------------------------------------------------------------------------- /package/network/utils/iwcap/src/iwcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iwcap/src/iwcap.c -------------------------------------------------------------------------------- /package/network/utils/iwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/iwinfo/Makefile -------------------------------------------------------------------------------- /package/network/utils/linux-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/linux-atm/Makefile -------------------------------------------------------------------------------- /package/network/utils/maccalc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/maccalc/Makefile -------------------------------------------------------------------------------- /package/network/utils/maccalc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/maccalc/src/main.c -------------------------------------------------------------------------------- /package/network/utils/nftables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/nftables/Makefile -------------------------------------------------------------------------------- /package/network/utils/owipcalc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/owipcalc/Makefile -------------------------------------------------------------------------------- /package/network/utils/resolveip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/resolveip/Makefile -------------------------------------------------------------------------------- /package/network/utils/rssileds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/rssileds/Makefile -------------------------------------------------------------------------------- /package/network/utils/tcpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/tcpdump/Makefile -------------------------------------------------------------------------------- /package/network/utils/umbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/umbim/Makefile -------------------------------------------------------------------------------- /package/network/utils/uqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/uqmi/Makefile -------------------------------------------------------------------------------- /package/network/utils/wpan-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/wpan-tools/Makefile -------------------------------------------------------------------------------- /package/network/utils/wwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/wwan/Makefile -------------------------------------------------------------------------------- /package/network/utils/wwan/files/wwan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/wwan/files/wwan.sh -------------------------------------------------------------------------------- /package/network/utils/wwan/files/wwan.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/network/utils/wwan/files/wwan.usb -------------------------------------------------------------------------------- /package/system/ca-certificates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/ca-certificates/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fstools/files/fstab.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/fstools/files/fstab.init -------------------------------------------------------------------------------- /package/system/fstools/files/mount.hotplug: -------------------------------------------------------------------------------- 1 | /sbin/block hotplug 2 | -------------------------------------------------------------------------------- /package/system/fstools/files/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/fstools/files/snapshot -------------------------------------------------------------------------------- /package/system/mountd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mountd/Makefile -------------------------------------------------------------------------------- /package/system/mountd/files/mountd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mountd/files/mountd.config -------------------------------------------------------------------------------- /package/system/mountd/files/mountd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mountd/files/mountd.init -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-smime.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/opkg/files/opkg-smime.conf -------------------------------------------------------------------------------- /package/system/opkg/files/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/opkg/files/opkg.conf -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/hotplug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/procd/files/hotplug.json -------------------------------------------------------------------------------- /package/system/procd/files/nand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/procd/files/nand.sh -------------------------------------------------------------------------------- /package/system/procd/files/procd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/procd/files/procd.sh -------------------------------------------------------------------------------- /package/system/procd/files/reload_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/procd/files/reload_config -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/rpcd/files/rpcd.config -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/udev/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/udev/Config.in -------------------------------------------------------------------------------- /package/system/udev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/udev/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/files/zram.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/system/zram-swap/files/zram.init -------------------------------------------------------------------------------- /package/utils/admswconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/admswconfig/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config-defaults.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/Config-defaults.in -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/config/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/config/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/convert_defaults.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/convert_defaults.pl -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/files/cron -------------------------------------------------------------------------------- /package/utils/busybox/files/ntpd-hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/files/ntpd-hotplug -------------------------------------------------------------------------------- /package/utils/busybox/files/sysntpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/files/sysntpd -------------------------------------------------------------------------------- /package/utils/busybox/files/telnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/busybox/files/telnet -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/e2fsprogs/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/files/e2fsck.conf: -------------------------------------------------------------------------------- 1 | [options] 2 | broken_system_clock = true 3 | 4 | -------------------------------------------------------------------------------- /package/utils/e2fsprogs/files/e2fsck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/e2fsprogs/files/e2fsck.sh -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /package/utils/hostap-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/hostap-utils/Makefile -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mkelfimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/mkelfimage/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/files/nvram.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/files/nvram.init -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/nvram/src/sdinitvals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/nvram/src/sdinitvals.h -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g-standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/px5g-standalone/Makefile -------------------------------------------------------------------------------- /package/utils/px5g-standalone/src/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/px5g-standalone/src/px5g.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/robocfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/robocfg/Makefile -------------------------------------------------------------------------------- /package/utils/robocfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/robocfg/src/Makefile -------------------------------------------------------------------------------- /package/utils/robocfg/src/etc53xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/robocfg/src/etc53xx.h -------------------------------------------------------------------------------- /package/utils/robocfg/src/robocfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/robocfg/src/robocfg.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ubi-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/ubi-utils/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/gps.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/ugps/files/gps.config -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/usbmode/Makefile -------------------------------------------------------------------------------- /package/utils/usbmode/data/12d1:1f16: -------------------------------------------------------------------------------- 1 | # Vodafone K5150 2 | MBIM=1 3 | -------------------------------------------------------------------------------- /package/utils/usbmode/files/usbmode.hotplug: -------------------------------------------------------------------------------- 1 | /etc/init.d/usbmode start 2 | -------------------------------------------------------------------------------- /package/utils/usbmode/files/usbmode.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/usbmode/files/usbmode.init -------------------------------------------------------------------------------- /package/utils/usbreset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbreset/src/usbreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/usbreset/src/usbreset.c -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /scripts/config/lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /scripts/config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /scripts/config/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/zconf.l -------------------------------------------------------------------------------- /scripts/config/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/config/zconf.y -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/flashing/adam2flash-502T.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/flashing/adam2flash-502T.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash-fritzbox.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/flashing/adam2flash-fritzbox.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/freebsd.sh -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/metadata.pl -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/openbsd.sh -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /scripts/update-package-md5sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/scripts/update-package-md5sum -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/base-files/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/generic/base-files/init -------------------------------------------------------------------------------- /target/linux/generic/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/generic/config-3.18 -------------------------------------------------------------------------------- /target/linux/generic/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/generic/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/base-files.mk -------------------------------------------------------------------------------- /target/linux/sunxi/base-files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/base-files/etc/inittab -------------------------------------------------------------------------------- /target/linux/sunxi/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/config-3.18 -------------------------------------------------------------------------------- /target/linux/sunxi/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/image/Config.in -------------------------------------------------------------------------------- /target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/sunxi/profiles/BPI-M1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/profiles/BPI-M1.mk -------------------------------------------------------------------------------- /target/linux/sunxi/profiles/BPI-R1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/linux/sunxi/profiles/BPI-R1.mk -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/sdk/files/include/prepare.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/sdk/files/include/prepare.mk -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /target/toolchain/files/README.TOOLCHAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/toolchain/files/README.TOOLCHAIN -------------------------------------------------------------------------------- /target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /toolchain/gcc/files/alternate-arch-cc.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec @CC_BASE@ @EXTRA_ARCH_OPTS@ "$@" 4 | -------------------------------------------------------------------------------- /toolchain/gcc/final/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/Config.in -------------------------------------------------------------------------------- /toolchain/glibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/Config.version -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/config/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/config/Config.in -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/glibc/include/libintl.h -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/insight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/insight/Makefile -------------------------------------------------------------------------------- /toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/Config.in -------------------------------------------------------------------------------- /toolchain/musl/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/Config.version -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/include/sys/cdefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/glibc-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/include/sys/glibc-types.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/musl/include/sys/queue.h -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/Config.version -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/arm -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/armeb -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/common -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/debug -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/i386 -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/i686 -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/m68k -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/mips -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/mips64 -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/mips64el -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/mipsel -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/powerpc -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/sparc -------------------------------------------------------------------------------- /toolchain/uClibc/config-0.9.33.2/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/config-0.9.33.2/x86_64 -------------------------------------------------------------------------------- /toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/automake/Makefile -------------------------------------------------------------------------------- /tools/automake/files/aclocal: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | aclocal.real $ACLOCAL_INCLUDE $@ 3 | -------------------------------------------------------------------------------- /tools/b43-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/b43-tools/files/b43-fwsquash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/b43-tools/files/b43-fwsquash.py -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bc/patches/001-no_doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/bc/patches/001-no_doc.patch -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/ccache/Makefile -------------------------------------------------------------------------------- /tools/ccache/files/ccache_cc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ccache "${TARGET_CC_NOCACHE}" "$@" 3 | -------------------------------------------------------------------------------- /tools/ccache/files/ccache_cxx: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ccache "${TARGET_CXX_NOCACHE}" "$@" 3 | -------------------------------------------------------------------------------- /tools/cloog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/cloog/Makefile -------------------------------------------------------------------------------- /tools/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/elftosb/patches/001-libm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/elftosb/patches/001-libm.patch -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/add_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/add_header.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/addpattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/addpattern.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/airlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/airlink.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/asustrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/asustrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/bcm_tag.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/bcmalgo.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/bcmalgo.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/buffalo-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/buffalo-enc.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/buffalo-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/buffalo-lib.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/buffalo-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/buffalo-lib.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/buffalo-tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/buffalo-tag.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/buffalo-tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/buffalo-tftp.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/csysimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/csysimg.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/cyg_crc.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/cyg_crc16.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/cyg_crc32.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/dgfirmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/dgfirmware.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/dgn3500sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/dgn3500sum.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/encode_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/encode_crc.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/hcsmakeimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/hcsmakeimage.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/imagetag.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/imagetag.ggo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/imagetag.ggo -------------------------------------------------------------------------------- /tools/firmware-utils/src/lzma2eva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/lzma2eva.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/makeamitbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/makeamitbin.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkbrncmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkbrncmdline.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkbrnimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkbrnimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcameofw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkcameofw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcasfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkcasfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkchkimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkchkimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcsysimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkcsysimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkdapimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkdapimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkdcs932.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkdcs932.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkdniimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkdniimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkedimaximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkedimaximg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkfwimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkfwimage.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkfwimage2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkfwimage2.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkhilinkfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkhilinkfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkmylofw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkmylofw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkplanexfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkplanexfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkporayfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkporayfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkrtn56uimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkrtn56uimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mksenaofw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mksenaofw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mktitanimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mktitanimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mktitanimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mktitanimg.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mktplinkfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mktplinkfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mktplinkfw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mktplinkfw2.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkwrgimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkwrgimg.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkzcfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzynfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/mkzynfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/motorola-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/motorola-bin.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/myloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/myloader.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/nand_ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/nand_ecc.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/osbridge-crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/osbridge-crc.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/pc1crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/pc1crypt.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/spw303v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/spw303v.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/srec2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/srec2bin.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx2edips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/trx2edips.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx2usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/trx2usr.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/wrt400n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/wrt400n.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/xorimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/xorimage.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyxbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/firmware-utils/src/zyxbcm.c -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/include/getline.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/libtool/files/libtool-v1.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/libtool/files/libtool-v1.5.patch -------------------------------------------------------------------------------- /tools/libtool/files/libtool-v2.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/libtool/files/libtool-v2.2.patch -------------------------------------------------------------------------------- /tools/libtool/files/libtool-v2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/libtool/files/libtool-v2.4.patch -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/patches/110-ranlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/lzma-old/patches/110-ranlib.patch -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzma/patches/001-large_files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/lzma/patches/001-large_files.patch -------------------------------------------------------------------------------- /tools/lzma/patches/002-lzmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/lzma/patches/002-lzmp.patch -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/missing-macros/src/bin/help2man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/bin/help2man -------------------------------------------------------------------------------- /tools/missing-macros/src/bin/makeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/bin/makeinfo -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/as-version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/as-version.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/dnet.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/dnet.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/glibc2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/glibc2.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/glibc21.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/intdiv0.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/intmax.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/inttypes_h.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/lib-ld.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/lib-link.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/mfx_acc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/mfx_acc.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/mfx_limits.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/mfx_limits.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/progtest.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/stdint_h.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/uintmax_t.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/va_copy.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/va_copy.m4 -------------------------------------------------------------------------------- /tools/missing-macros/src/m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/missing-macros/src/m4/wint_t.m4 -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mklibs/patches/001-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mklibs/patches/001-compile.patch -------------------------------------------------------------------------------- /tools/mklibs/patches/003-no_copy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mklibs/patches/003-no_copy.patch -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mpfr/patches/001-only_src.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mpfr/patches/001-only_src.patch -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mtd-utils/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/include/fls.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define fls local_fls 3 | -------------------------------------------------------------------------------- /tools/mtd-utils/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mtd-utils/include/linux/types.h -------------------------------------------------------------------------------- /tools/mtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch-image/src/patch-cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/patch-image/src/patch-cmdline.c -------------------------------------------------------------------------------- /tools/patch-image/src/patch-dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/patch-image/src/patch-dtb.c -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/pkg-config/files/pkg-config -------------------------------------------------------------------------------- /tools/ppl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/ppl/Makefile -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/quilt/patches/000-relocatable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/quilt/patches/000-relocatable.patch -------------------------------------------------------------------------------- /tools/quilt/patches/001-fix_compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/quilt/patches/001-fix_compile.patch -------------------------------------------------------------------------------- /tools/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/scons/Makefile -------------------------------------------------------------------------------- /tools/scons/files/pywrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/scons/files/pywrap.sh -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfs/patches/100-lzma.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/squashfs/patches/100-lzma.patch -------------------------------------------------------------------------------- /tools/squashfs4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/squashfs4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/upx/Makefile -------------------------------------------------------------------------------- /tools/upx/patches/100-lzmaonly.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/upx/patches/100-lzmaonly.patch -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/src/crypt.h -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/src/ioapi.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/src/ioapi.h -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/src/md5.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/src/md5.h -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/upgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/wrt350nv2-builder/src/upgrade.h -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/xz/patches/100-freebsd-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/xz/patches/100-freebsd-compat.patch -------------------------------------------------------------------------------- /tools/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/yaffs2/Makefile -------------------------------------------------------------------------------- /tools/yaffs2/patches/100-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BPI-SINOVOIP/BPI-OpenWRT/HEAD/tools/yaffs2/patches/100-compile.patch --------------------------------------------------------------------------------