├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── enhancement.md │ ├── feature_request.md │ ├── hardware_support.md │ ├── help.md │ ├── issue.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── stale.yml ├── .gitignore ├── 5.4 ├── include │ ├── kernel-defaults.mk │ ├── kernel-version.mk │ ├── meson.mk │ ├── netfilter.mk.iptables │ └── target.mk.iptables ├── package │ ├── Makefile │ ├── boot │ │ ├── arm-trusted-firmware-rockchip-vendor │ │ │ ├── Makefile │ │ │ ├── pack-firmware.sh │ │ │ └── src │ │ │ │ └── trust.ini │ │ ├── arm-trusted-firmware-rockchip │ │ │ └── Makefile │ │ └── uboot-rockchip │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 001-Revert-rockchip-rk3399-Drop-altbootcmd.patch │ │ │ ├── 002-Revert-rockchip-Disable-DISTRO_DEFAULTS-for-rk3399-b.patch │ │ │ ├── 003-Revert-rockchip-Convert-rockpro64-rk3399-to-use-stan.patch │ │ │ ├── 015-uboot-add-NanoPi-R5S-board.patch │ │ │ ├── 018-driver-Makefile-support-adc-in-SPL.patch │ │ │ ├── 019-rockchip-handle-bootrom-mode-in-spl.patch │ │ │ ├── 020-update-rock-3a-defconfig.patch │ │ │ ├── 106-no-kwbimage.patch │ │ │ ├── 110-force-pylibfdt-build.patch │ │ │ ├── 111-fix-mkimage-host-build.patch │ │ │ ├── 120-clk-scmi-Add-Kconfig-option-for-SPL.patch │ │ │ ├── 121-pinctrl-rockchip-Fix-IO-mux-selection-on.patch │ │ │ ├── 203-rock64pro-disable-CONFIG_USE_PREBOOT.patch │ │ │ ├── 210-rockchip-rk35xx-Fix-boot-with-a-large-fdt-blob.patch │ │ │ ├── 301-arm64-dts-rockchip-Add-GuangMiao-G4C-support.patch │ │ │ ├── 302-rockchip-rk3328-Add-support-for-Orangepi-R1-Plus.patch │ │ │ ├── 303-rockchip-rk3328-Add-support-for-Orangepi-R1-Plus-LTS.patch │ │ │ ├── 304-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 305-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 306-rockchip-rk3399-Add-support-for-Rongpin-king3399.patch │ │ │ ├── 307-rockchip-rk3399-Add-support-for-Rocktech-MPC1903.patch │ │ │ ├── 308-rockchip-rk3399-Add-support-for-sharevdi-h3399pc.patch │ │ │ ├── 309-rockchip-rk3399-Add-support-for-dilusense-dlfr100.patch │ │ │ ├── 311-rockchip-rk3568-Add-support-for-ezpro_mrkaio-m68s.patch │ │ │ ├── 312-rockchip-rk3568-Add-support-for-hinlink-opc-h68k.patch │ │ │ ├── 313-rockchip-rk3568-Add-support-for-fastrhino-r66s.patch │ │ │ ├── 314-rockchip-rk3568-Add-support-for-Station-P2.patch │ │ │ ├── 314-rockchip-rk3568-Add-support-for-photonicat.patch │ │ │ └── 315-rockchip-rk3568-Add-support-for-radxa_e25.patch │ ├── firmware │ │ ├── cypress-firmware │ │ │ └── Makefile │ │ └── ipq-wifi │ │ │ ├── Makefile │ │ │ ├── board-p2w_r619ac.qca4019 │ │ │ └── board-teltonika_rutx.qca4019 │ ├── kernel │ │ ├── bcm27xx-gpu-fw │ │ │ └── Makefile │ │ ├── ksmbd │ │ │ └── patches │ │ │ │ └── 010-fixes-build-on-6.1.patch │ │ ├── linux │ │ │ └── modules │ │ │ │ ├── crypto.mk │ │ │ │ ├── fs.mk │ │ │ │ ├── input.mk │ │ │ │ ├── netfilter.mk │ │ │ │ ├── netsupport.mk │ │ │ │ ├── other.mk │ │ │ │ └── sound.mk │ │ └── r2ec │ │ │ ├── Makefile │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── io.h │ │ │ └── r2ec.c │ └── network │ │ └── services │ │ └── dnsmasq │ │ └── files │ │ └── dnsmasq.init ├── target │ └── linux │ │ ├── bcm27xx │ │ └── Makefile │ │ ├── generic │ │ ├── backport-5.4 │ │ │ ├── 071-bpf-dont-allow-vmlinux-btf-to-be-used-in-map_create-and-prog_load.patch │ │ │ ├── 500-ovl-check-permission-to-open-real-file.patch │ │ │ ├── 501-ovl-switch-to-mounter-creds-in-readdir.patch │ │ │ ├── 502-ovl-verify-permissions-in-ovl_path_open.patch │ │ │ ├── 503-ovl-do-not-fail-because-of_O_NOACTIME.patch │ │ │ └── 700-ignore-pppoe-when-dst-does-not-match-dev-address.patch │ │ ├── config-5.4 │ │ ├── files │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ └── b53 │ │ │ │ └── b53_common.c │ │ ├── hack-5.4 │ │ │ ├── 690-mptcp_v0.96.patch │ │ │ ├── 692-tcp_nanqinlang.patch │ │ │ ├── 693-tcp_bbr2.patch │ │ │ ├── 952-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 998-xhci-workaround-set_deq_pending.patch │ │ │ ├── 999-ndpi.patch │ │ │ └── 999-stop-promiscuous-info.patch │ │ └── pending-5.4 │ │ │ ├── 481-mtd-spi-nor-Add-default-and-support-for-missing-flashes.patch │ │ │ ├── 483-mtd-spinand-add-support-for-xtx-xt26g0xa.patch │ │ │ ├── 640-netfilter-nf_flow_table-add-hardware-offload-support.patch │ │ │ └── 645-netfilter-nf_flow_table-rework-hardware-offload-time.patch │ │ ├── ipq40xx │ │ ├── base-files │ │ │ ├── bin │ │ │ │ ├── board_detect │ │ │ │ ├── board_modem │ │ │ │ ├── board_track │ │ │ │ ├── config_generate │ │ │ │ └── ipcalc.sh │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 1-board_json │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 09_fix_wifi_mac │ │ │ │ ├── init.d │ │ │ │ │ ├── boot │ │ │ │ │ ├── done │ │ │ │ │ ├── gpio_switch │ │ │ │ │ ├── led │ │ │ │ │ ├── modem_tracker │ │ │ │ │ ├── ntpserver │ │ │ │ │ ├── powerctl │ │ │ │ │ ├── sysctl │ │ │ │ │ ├── sysfixtime │ │ │ │ │ ├── system │ │ │ │ │ └── umount │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_mnf-info │ │ │ │ │ └── 04_migrate-vlan │ │ │ ├── lib │ │ │ │ ├── functions │ │ │ │ │ ├── board.sh │ │ │ │ │ ├── migrate.sh │ │ │ │ │ ├── network.sh │ │ │ │ │ ├── teltonika-defaults.sh │ │ │ │ │ ├── teltonika-functions.sh │ │ │ │ │ └── uci-defaults.sh │ │ │ │ ├── preinit │ │ │ │ │ └── 82_modem_power │ │ │ │ └── upgrade │ │ │ │ │ ├── ipq_failsafe.sh │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── stage2 │ │ │ ├── sbin │ │ │ │ ├── mctl │ │ │ │ └── mnf_info │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── art │ │ │ │ └── art_rutx.bin │ │ ├── config-5.4 │ │ ├── dts │ │ │ ├── platform_name.dtsi │ │ │ ├── qcom-ipq4018-rutx-08.dts │ │ │ ├── qcom-ipq4018-rutx-08_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-09.dts │ │ │ ├── qcom-ipq4018-rutx-09_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-10.dts │ │ │ ├── qcom-ipq4018-rutx-10_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-11.dts │ │ │ ├── qcom-ipq4018-rutx-11_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-12.dts │ │ │ ├── qcom-ipq4018-rutx-12_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-14.dts │ │ │ ├── qcom-ipq4018-rutx-14_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-50.dts │ │ │ ├── qcom-ipq4018-rutx-R1.dts │ │ │ ├── qcom-ipq4018-rutx-R1_STM32.dts │ │ │ ├── qcom-ipq4018-rutx-STM32.dtsi │ │ │ ├── qcom-ipq4018-rutx-common.dtsi │ │ │ ├── qcom-ipq4018-rutx-i2c.dtsi │ │ │ └── qcom-ipq4018-rutx-shiftreg.dtsi │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ ├── qcom-ipq4019-r619ac-128m.dts │ │ │ │ │ ├── qcom-ipq4019-r619ac-64m.dts │ │ │ │ │ ├── qcom-ipq4019-r619ac.dts │ │ │ │ │ └── qcom-ipq4019-r619ac.dtsi │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ ├── ethernet │ │ │ │ └── qualcomm │ │ │ │ │ └── essedma │ │ │ │ │ └── edma_ethtool.c │ │ │ │ └── phy │ │ │ │ └── qca807x.c │ │ ├── image │ │ │ ├── generic.mk │ │ │ └── uboot_fw │ │ │ │ ├── appsboardconfig_premium_tlt │ │ │ │ ├── boardconfig_premium_tlt │ │ │ │ ├── norplusnand-apps-flash.conf │ │ │ │ ├── norplusnand-flash.conf │ │ │ │ ├── norplusnand-system-partition-ipq40xx.bin │ │ │ │ └── pack.py │ │ └── patches-5.4 │ │ │ ├── 099.patch │ │ │ ├── 100-GPIO-add-named-gpio-exports.patch │ │ │ ├── 105-mtd-nand-add-Gigadevice-GD5F2GQ4XB-support.patch │ │ │ ├── 106-mtd-nand-add-W25N02KV-support.patch │ │ │ ├── 107-mtd-nand-change-xtx-ooblayout.patch │ │ │ ├── 311-qcom-ipq-add-bootconfig-driver.patch │ │ │ ├── 500-jffs2-Dont-add-summary-entry-when-MTD-write-fails.patch │ │ │ ├── 714-qca8075-report-combo-link-state-to-netdev.patch │ │ │ ├── 716-ar40xx-soft-delay-reset.patch │ │ │ ├── 717-ar40xx-dump-arl-support.patch │ │ │ ├── 718-ar40xx-add-wan-preference-setting.patch │ │ │ ├── 800-xhci-Use-more-event-ring-segment-table-entries.patch │ │ │ ├── 851-spi-qup-revert-fix-PIO-DMA-transfers.patch │ │ │ └── 933-add-new-xtx-nand-rev.patch │ │ ├── ipq60xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── qcom │ │ │ │ ├── ipq6018-hr6001.dts │ │ │ │ └── ipq6018-l6018.dts │ │ ├── generic │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── ipq60xx_32 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── patches-5.4 │ │ │ └── 145-arm64-dts-add-OpenWrt-DTS-files.patch │ │ └── profiles │ │ │ ├── 00-default.mk │ │ │ └── qsdk.mk │ │ ├── ipq807x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 11-ath11k-caldata │ │ │ │ └── init.d │ │ │ │ │ └── bootcount │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ ├── buffalo.sh │ │ │ │ ├── mmc.sh │ │ │ │ └── platform.sh │ │ ├── config-5.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── qcom │ │ │ │ ├── ipq8070-cax1800.dts │ │ │ │ ├── ipq8071-ax3600.dts │ │ │ │ ├── ipq8071-ax3600.dtsi │ │ │ │ ├── ipq8071-ax6.dts │ │ │ │ ├── ipq8071-eap102.dts │ │ │ │ ├── ipq8072-301w.dts │ │ │ │ ├── ipq8072-ax9000.dts │ │ │ │ ├── ipq8072-dl-wrx36.dts │ │ │ │ ├── ipq8074-512m.dtsi │ │ │ │ ├── ipq8074-ac-cpu.dtsi │ │ │ │ ├── ipq8074-cpr-regulator.dtsi │ │ │ │ ├── ipq8074-ess.dtsi │ │ │ │ ├── ipq8074-hk-cpu.dtsi │ │ │ │ ├── ipq8074-nbg7815.dts │ │ │ │ ├── ipq8074-wxr-5950ax12.dts │ │ │ │ └── ipq8074.dtsi │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ └── generic.mk │ │ └── patches-5.4 │ │ │ ├── 0001-v5.16-arm64-dts-qcom-ipq8074-add-SPMI-bus.patch │ │ │ ├── 0002-v5.16-arm64-dts-qcom-Update-BAM-DMA-node-name-per-DT-schem.patch │ │ │ ├── 0003-v5.16-arm64-dts-qcom-ipq8074-Add-QUP5-I2C-node.patch │ │ │ ├── 0004-v5.16-arm64-dts-qcom-msm8996-Move-clock-cells-to-QMP-PHY-c.patch │ │ │ ├── 0006-v5.16-arm64-dts-qcom-Fix-IPQ8074-PCIe-PHY-nodes.patch │ │ │ ├── 0007-v5.17-arm64-dts-qcom-ipq8074-add-MDIO-bus.patch │ │ │ ├── 0008-v5.18-arm64-dts-qcom-ipq8074-add-SMEM-support.patch │ │ │ ├── 0009-v5.18-arm64-dts-qcom-ipq8074-add-the-reserved-memory-node.patch │ │ │ ├── 0010-v5.18-arm64-dts-qcom-ipq8074-enable-the-GICv2m-support.patch │ │ │ ├── 0011-v5.18-arm64-dts-qcom-ipq8074-drop-the-clock-frequency-prop.patch │ │ │ ├── 0012-v5.19-arm64-dts-qcom-align-dmas-in-I2C-SPI-UART-with-DT-sc.patch │ │ │ ├── 0013-v5.19-arm64-dts-qcom-align-clocks-in-I2C-SPI-with-DT-schem.patch │ │ │ ├── 0014-v5.19-arm64-dts-qcom-correct-DWC3-node-names-and-unit-addr.patch │ │ │ ├── 0015-v5.19-arm64-dts-qcom-ipq8074-add-dedicated-qcom-ipq8074-dw.patch │ │ │ ├── 0016-v5.19-arm64-dts-qcom-align-DWC3-USB-clocks-with-DT-schema.patch │ │ │ ├── 0017-v6.0-arm64-dts-qcom-adjust-whitespace-around.patch │ │ │ ├── 0018-v6.0-arm64-dts-qcom-Fix-sdhci-node-names-use-mmc.patch │ │ │ ├── 0019-v6.0-arm64-dts-qcom-Fix-ordering-of-clocks-clock-names-fo.patch │ │ │ ├── 0020-v6.0-dt-bindings-clock-qcom-ipq8074-add-PPE-crypto-clock.patch │ │ │ ├── 0021-v6.0-clk-qcom-ipq8074-add-PPE-crypto-clock.patch │ │ │ ├── 0022-v6.0-dt-bindings-clock-qcom-ipq8074-add-USB-GDSCs.patch │ │ │ ├── 0023-v6.0-clk-qcom-ipq8074-add-USB-GDSCs.patch │ │ │ ├── 0024-v6.0-arm64-dts-qcom-ipq8074-add-USB-power-domains.patch │ │ │ ├── 0025-v6.0-arm64-dts-qcom-ipq8074-move-ARMv8-timer-out-of-SoC-n.patch │ │ │ ├── 0026-v6.0-arm64-dts-qcom-ipq8074-add-reset-to-SDHCI.patch │ │ │ ├── 0027-v6.0-arm64-dts-qcom-ipq8074-drop-USB-PHY-clock-index.patch │ │ │ ├── 0028-v5.16-mailbox-qcom-apcs-ipc-Consolidate-msm8994-type-apcs_.patch │ │ │ ├── 0029-v6.1-mailbox-qcom-apcs-ipc-add-IPQ8074-APSS-clock-support.patch │ │ │ ├── 0030-v6.0-arm64-dts-qcom-ipq8074-add-APCS-node.patch │ │ │ ├── 0031-v6.0-arm64-dts-qcom-ipq8074-add-size-address-cells-to-DTS.patch │ │ │ ├── 0032-v6.0-arm64-dts-qcom-ipq8074-add-interrupt-parent-to-DTSI.patch │ │ │ ├── 0033-v6.1-arm64-dts-qcom-align-SDHCI-reg-names-with-DT-schema.patch │ │ │ ├── 0034-v6.1-arm64-dts-qcom-ipq8074-fix-PCIe-PHY-serdes-size.patch │ │ │ ├── 0035-v6.1-clk-qcom-apss-ipq-pll-use-OF-match-data-for-Alpha-PL.patch │ │ │ ├── 0036-v6.1-clk-qcom-apss-ipq-pll-update-IPQ6018-Alpha-PLL-confi.patch │ │ │ ├── 0037-v6.1-clk-qcom-apss-ipq-pll-add-support-for-IPQ8074.patch │ │ │ ├── 0038-v6.1-clk-qcom-clk-rcg2-add-rcg2-mux-ops.patch │ │ │ ├── 0039-v6.1-clk-qcom-apss-ipq6018-fix-apcs_alias0_clk_src.patch │ │ │ ├── 0040-v6.2-arm64-dts-qcom-ipq8074-add-A53-PLL-node.patch │ │ │ ├── 0041-v6.1-arm64-dts-qcom-ipq8074-correct-APCS-register-space-s.patch │ │ │ ├── 0042-v6.2-thermal-drivers-tsens-Add-support-for-combined-inter.patch │ │ │ ├── 0043-v6.2-thermal-drivers-tsens-Allow-configuring-min-and-max-.patch │ │ │ ├── 0044-v6.2-thermal-drivers-tsens-Add-IPQ8074-support.patch │ │ │ ├── 0045-v6.2-arm64-dts-qcom-ipq8074-add-thermal-nodes.patch │ │ │ ├── 0046-v6.2-arm64-dts-qcom-ipq8074-add-clocks-to-APCS.patch │ │ │ ├── 0047-v6.2-clk-qcom-ipq8074-convert-to-parent-data.patch │ │ │ ├── 0048-v6.1-clk-qcom-reset-Allow-specifying-custom-reset-delay.patch │ │ │ ├── 0049-v6.2-clk-qcom-reset-support-resetting-multiple-bits.patch │ │ │ ├── 0050-v6.2-dt-bindings-clock-qcom-ipq8074-add-missing-networkin.patch │ │ │ ├── 0051-v6.2-clk-qcom-ipq8074-add-missing-networking-resets.patch │ │ │ ├── 0052-v6.2-clk-qcom-ipq8074-populate-fw_name-for-all-parents.patch │ │ │ ├── 0053-v6.2-arm64-dts-qcom-ipq8074-pass-XO-and-sleep-clocks-to-G.patch │ │ │ ├── 0054-v6.1-arm64-dts-qcom-replace-deprecated-perst-gpio-with-pe.patch │ │ │ ├── 0055-v6.0-spmi-add-a-helper-to-look-up-an-SPMI-device-from-a-d.patch │ │ │ ├── 0056-v5.16-mfd-qcom-spmi-pmic-Sort-compatibles-in-the-driver.patch │ │ │ ├── 0057-v5.16-mfd-qcom-spmi-pmic-Add-missing-PMICs-supported-by-so.patch │ │ │ ├── 0058-v6.0-mfd-qcom-spmi-pmic-expose-the-PMIC-revid-information.patch │ │ │ ├── 0059-v6.0-mfd-qcom-spmi-pmic-read-fab-id-on-supported-PMICs.patch │ │ │ ├── 0060-v6.1-mfd-qcom-spmi-pmic-Add-support-for-PMP8074.patch │ │ │ ├── 0061-v6.0-regulator-qcom_spmi-add-support-for-HT_P150.patch │ │ │ ├── 0062-v6.0-regulator-qcom_spmi-add-support-for-HT_P600.patch │ │ │ ├── 0063-v6.0-regulator-qcom_spmi-add-support-for-PMP8074-regulato.patch │ │ │ ├── 0064-v6.0-pinctrl-qcom-pmic-gpio-add-support-for-PMP8074.patch │ │ │ ├── 0065-v6.1-iio-adc-qcom-spmi-adc5-add-ADC5_VREF_VADC-to-rev2-AD.patch │ │ │ ├── 0066-v6.2-arm64-dts-qcom-add-PMP8074-DTSI.patch │ │ │ ├── 0067-v6.2-arm64-dts-qcom-ipq8074-hk01-add-VQMMC-supply.patch │ │ │ ├── 0068-v6.2-arm64-dts-qcom-hk01-use-GPIO-flags-for-tlmm.patch │ │ │ ├── 0069-v6.2-arm64-dts-qcom-ipq8074-Fix-up-comments.patch │ │ │ ├── 0070-v6.2-arm64-dts-qcom-ipq8074-align-TLMM-pin-configuration-.patch │ │ │ ├── 0071-v5.16-soc-qcom-socinfo-Add-IPQ8074-family-ID-s.patch │ │ │ ├── 0072-v6.0-phy-qcom-qmp-pcie-make-pipe-clock-rate-configurable.patch │ │ │ ├── 0073-v6.0-phy-qcom-qmp-pcie-add-IPQ8074-PCIe-Gen3-QMP-PHY-supp.patch │ │ │ ├── 0074-v6.0-PCI-dwc-Move-GEN3_RELATED-DBI-definitions-to-common-.patch │ │ │ ├── 0075-v6.0-PCI-qcom-Define-slot-capabilities-using-PCI_EXP_SLTC.patch │ │ │ ├── 0076-v5.16-PCI-qcom-Replace-ops-with-struct-pcie_cfg-in-pcie-ma.patch │ │ │ ├── 0077-v6.0-PCI-qcom-Add-IPQ60xx-support.patch │ │ │ ├── 0078-v5.19-clk-qcom-rcg2-Cache-CFG-register-updates-for-parked-.patch │ │ │ ├── 0079-v6.2-dt-bindings-arm-qcom-document-qcom-msm-id-and-qcom-b.patch │ │ │ ├── 0100-clk-qcom-clk-rcg2-introduce-support-for-multiple-con.patch │ │ │ ├── 0101-clk-qcom-gcc-ipq8074-rework-nss_port5-6-clock-to-mul.patch │ │ │ ├── 0102-arm64-dts-ipq8074-add-reserved-memory-nodes.patch │ │ │ ├── 0103-arm64-dts-qcom-ipq8074-fix-Gen2-PCIe-QMP-PHY.patch │ │ │ ├── 0104-arm64-dts-qcom-ipq8074-fix-Gen3-PCIe-QMP-PHY.patch │ │ │ ├── 0105-arm64-dts-qcom-ipq8074-correct-Gen2-PCIe-ranges.patch │ │ │ ├── 0106-arm64-dts-qcom-ipq8074-set-Gen2-PCIe-pcie-max-link-s.patch │ │ │ ├── 0107-PCI-qcom-Add-support-for-IPQ8074-Gen3-port.patch │ │ │ ├── 0108-arm64-dts-qcom-ipq8074-fix-Gen3-PCIe-node.patch │ │ │ ├── 0109-arm64-dts-qcom-ipq8074-correct-PCIe-QMP-PHY-output-c.patch │ │ │ ├── 0110-arm64-dts-qcom-ipq8074-pass-QMP-PCI-PHY-PIPE-clocks-.patch │ │ │ ├── 0111-arm64-dts-qcom-ipq8074-use-msi-parent-for-PCIe.patch │ │ │ ├── 0112-remoteproc-qcom-Add-PRNG-proxy-clock.patch │ │ │ ├── 0113-remoteproc-qcom-Add-secure-PIL-support.patch │ │ │ ├── 0114-remoteproc-qcom-Add-support-for-split-q6-m3-wlan-fir.patch │ │ │ ├── 0115-remoteproc-qcom-Add-ssr-subdevice-identifier.patch │ │ │ ├── 0116-remoteproc-qcom-Update-regmap-offsets-for-halt-regis.patch │ │ │ ├── 0117-dt-bindings-clock-qcom-Add-reset-for-WCSSAON.patch │ │ │ ├── 0118-clk-qcom-Add-WCSSAON-reset.patch │ │ │ ├── 0119-remoteproc-wcss-disable-auto-boot-for-IPQ8074.patch │ │ │ ├── 0120-arm64-dts-qcom-Enable-Q6v5-WCSS-for-ipq8074-SoC.patch │ │ │ ├── 0121-arm64-dts-ipq8074-Add-WLAN-node.patch │ │ │ ├── 0122-arm64-dts-ipq8074-add-CPU-clock.patch │ │ │ ├── 0123-arm64-dts-ipq8074-add-cooling-cells-to-CPU-nodes.patch │ │ │ ├── 0124-soc-qcom-socinfo-move-SMEM-item-struct-and-defines-t.patch │ │ │ ├── 0125-cpufreq-qcom-nvmem-reuse-socinfo-SMEM-item-struct.patch │ │ │ ├── 0126-cpufreq-qcom-nvmem-use-SoC-ID-s-from-bindings.patch │ │ │ ├── 0127-cpufreq-qcom-nvmem-make-qcom_cpufreq_get_msm_id-retu.patch │ │ │ ├── 0128-cpufreq-qcom-nvmem-add-support-for-IPQ8074.patch │ │ │ ├── 0129-arm64-dts-qcom-ipq8074-add-QFPROM-fuses.patch │ │ │ ├── 0130-arm64-dts-qcom-ipq8074-add-CPU-OPP-table.patch │ │ │ ├── 0131-clk-qcom-ipq8074-populate-fw_name-for-usb3phy-s.patch │ │ │ ├── 0132-arm64-dts-qcom-ipq8074-correct-USB3-QMP-PHY-s-clock-.patch │ │ │ ├── 0900-power-Add-Qualcomm-APM.patch │ │ │ ├── 0901-regulator-add-Qualcomm-CPR-regulators.patch │ │ │ └── 0902-arm64-dts-ipq8074-add-label-to-clocks.patch │ │ ├── rockchip │ │ ├── Makefile │ │ ├── armv8 │ │ │ ├── base-files │ │ │ │ └── etc │ │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ │ └── hotplug.d │ │ │ │ │ └── net │ │ │ │ │ └── 40-net-smp-affinity │ │ │ ├── config-5.14 │ │ │ ├── config-5.15 │ │ │ └── config-6.1 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── rockchip │ │ │ │ │ ├── rk3328-dram-default-timing.dtsi │ │ │ │ │ ├── rk3328-dram-nanopi2-timing.dtsi │ │ │ │ │ ├── rk3368.dtsi │ │ │ │ │ ├── rk3399-guangmiao-g4c.dts │ │ │ │ │ ├── rk3399-king3399.dts │ │ │ │ │ ├── rk3399-mpc1903.dts │ │ │ │ │ ├── rk3399-nanopi-r4se.dts │ │ │ │ │ ├── rk3568-fastrhino.dtsi │ │ │ │ │ ├── rk3568-hinlink-opc.dtsi │ │ │ │ │ ├── rk3568-mrkaio-m68s.dts │ │ │ │ │ ├── rk3568-nanopi-r5c.dts │ │ │ │ │ ├── rk3568-nanopi-r5s.dts │ │ │ │ │ ├── rk3568-opc-h66k.dts │ │ │ │ │ ├── rk3568-opc-h68k.dts │ │ │ │ │ ├── rk3568-photonicat.dts │ │ │ │ │ ├── rk3568-pinctrl.dtsi │ │ │ │ │ ├── rk3568-r66s.dts │ │ │ │ │ ├── rk3568-r68s.dts │ │ │ │ │ ├── rk3568-radxa-cm3i.dtsi │ │ │ │ │ ├── rk3568-radxa-e25.dts │ │ │ │ │ ├── rk3568-roc-pc.dts │ │ │ │ │ ├── rk3568-rock-3a.dts │ │ │ │ │ ├── rk3568-rock-pi-e25.dts │ │ │ │ │ ├── rk3568.dtsi │ │ │ │ │ ├── rk356x.dtsi │ │ │ │ │ └── rockchip-pinconf.dtsi │ │ │ ├── drivers │ │ │ │ ├── char │ │ │ │ │ └── hw_random │ │ │ │ │ │ └── rockchip-rng.c │ │ │ │ └── devfreq │ │ │ │ │ └── rk3328_dmc.c │ │ │ └── include │ │ │ │ └── dt-bindings │ │ │ │ ├── clock │ │ │ │ ├── rk3568-cru.h │ │ │ │ └── rockchip-ddr.h │ │ │ │ ├── memory │ │ │ │ └── rk3328-dram.h │ │ │ │ └── power │ │ │ │ └── rk3568-power.h │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── armv8.mk │ │ │ ├── nanopi-r4s.bootscript │ │ │ └── nanopi-r5s.bootscript │ │ └── patches-5.4 │ │ │ ├── 007-arm64-dts-rockchip-Add-RK3328-idle-state.patch │ │ │ ├── 008-rockchip-add-hwmon-support-for-SoCs-and-GPUs.patch │ │ │ ├── 009-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 010-arm64-dts-rockchip-add-EEPROM-node-for-NanoPi-R4S.patch │ │ │ ├── 012-resync-rk3566-device-tree-with-mainline.patch │ │ │ ├── 015-v5.16-arm64-dts-rockchip-add-rk3566-dtsi.patch │ │ │ ├── 020-v5.16-arm64-dts-rockchip-add-gmac0-node-to-rk3568.patch │ │ │ ├── 031-v5.17-arm64-dts-rockchip-drop-pclk_xpcs-from-gmac0-on.patch │ │ │ ├── 032-v5.17-phy-rockchip-inno-usb2-support-address-cells.patch │ │ │ ├── 033-v5.17-phy-rockchip-inno-usb2-support-standalone-phy-nodes.patch │ │ │ ├── 034-v5.17-phy-rockchip-inno-usb2-support-muxed-interrupts.patch │ │ │ ├── 035-v5.17-phy-rockchip-inno-usb2-add-rk3568-support.patch │ │ │ ├── 037-v5.18-phy-rockchip-add-naneng-combo-phy-for-RK3568.patch │ │ │ ├── 050-v5.18-mmc-dw_mmc-Support-setting-f_min-from-host-drivers.patch │ │ │ ├── 051-v5.18-mmc-dw-mmc-rockchip-Fix-handling-invalid-clock-rates.patch │ │ │ ├── 054-v5.19-soc-rockchip-set-dwc3-clock-for-rk3566.patch │ │ │ ├── 070-v6.1-phy-rockchip-Support-PCIe-v3.patch │ │ │ ├── 071-v6.1-arm64-dts-rockchip-Add-PCIe-v3-nodes-to-rk3568.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 105-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 106-arm64-rockchip-add-OF-node-for-pcie-eth-on-NanoPi-R4S.patch │ │ │ ├── 107-nanopi-r4s-sd-signalling.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 202-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus.patch │ │ │ ├── 203-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus-LTS.patch │ │ │ ├── 204-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 206-rockchip-rk3399-add-support-for-Rongpin-King3399.patch │ │ │ ├── 210-rockchip-rk356x-add-support-for-new-boards.patch │ │ │ ├── 600-net-phy-Add-driver-for-Motorcomm-YT85xx-PHYs.patch │ │ │ ├── 801-char-add-support-for-rockchip-hardware-random-number.patch │ │ │ ├── 802-arm64-dts-rockchip-add-hardware-random-number-genera.patch │ │ │ ├── 803-PM-devfreq-rockchip-add-devfreq-driver-for-rk3328-dmc.patch │ │ │ ├── 804-clk-rockchip-support-setting-ddr-clock-via-SIP-Version-2-.patch │ │ │ ├── 805-PM-devfreq-rockchip-dfi-add-more-soc-support.patch │ │ │ ├── 806-arm64-dts-rockchip-rk3328-add-dfi-node.patch │ │ │ ├── 807-arm64-dts-nanopi-r2s-add-rk3328-dmc-relate-node.patch │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ └── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ │ └── x86 │ │ ├── config-5.14 │ │ ├── files-5.4 │ │ └── drivers │ │ │ └── net │ │ │ └── ethernet │ │ │ └── intel │ │ │ └── igc │ │ │ ├── Makefile │ │ │ ├── igc.h │ │ │ ├── igc_base.c │ │ │ ├── igc_base.h │ │ │ ├── igc_defines.h │ │ │ ├── igc_diag.c │ │ │ ├── igc_diag.h │ │ │ ├── igc_dump.c │ │ │ ├── igc_ethtool.c │ │ │ ├── igc_hw.h │ │ │ ├── igc_i225.c │ │ │ ├── igc_i225.h │ │ │ ├── igc_mac.c │ │ │ ├── igc_mac.h │ │ │ ├── igc_main.c │ │ │ ├── igc_nvm.c │ │ │ ├── igc_nvm.h │ │ │ ├── igc_phy.c │ │ │ ├── igc_phy.h │ │ │ ├── igc_ptp.c │ │ │ ├── igc_regs.h │ │ │ ├── igc_tsn.c │ │ │ └── igc_tsn.h │ │ ├── image │ │ └── grub-efi.cfg │ │ └── patches-5.4 │ │ └── 990-mptcp-fullmesh-raise-addresses-limit.patch └── tools │ ├── firmware-utils │ └── Makefile │ ├── meson │ ├── Makefile │ ├── files │ │ ├── openwrt-cross.txt.in │ │ └── openwrt-native.txt.in │ └── patches │ │ └── 010-wsl2.patch │ ├── mkimage │ └── patches │ │ └── 900-mkimage-Use-PATH_MAX-for-path-length.patch │ └── ninja │ ├── Makefile │ └── patches │ └── 100-make_jobserver_support.patch ├── 6.1 ├── package │ ├── firmware │ │ └── linux-firmware │ │ │ ├── broadcom.mk │ │ │ └── intel.mk │ ├── kernel │ │ ├── bcm27xx-gpu-fw │ │ │ └── Makefile │ │ ├── linux │ │ │ └── modules │ │ │ │ └── other.mk │ │ ├── r2ec │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── io.h │ │ │ │ └── r2ec.c │ │ └── rtl8812au-ct │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 001-use-kernel-byteorder.patch │ │ │ ├── 002-vendor_command_policy.patch │ │ │ ├── 003-wireless-5.8.patch │ │ │ ├── 004-remove-extern-inline.patch │ │ │ ├── 005-kernel-6.1.patch │ │ │ ├── 006-os_dep-osdep_service-use-new-get_random_u32.patch │ │ │ ├── 007-treewide-fix-always-TRUE-condition-warning.patch │ │ │ ├── 008-treewide-use-correct-type-for-tasklet_init.patch │ │ │ ├── 009-treewide-drop-const-from-dev_addr.patch │ │ │ ├── 010-os_dep-linux-proc-move-to-pde_data-function.patch │ │ │ └── 100-api_update.patch │ ├── libs │ │ └── libnftnl │ │ │ └── Makefile │ └── network │ │ ├── config │ │ └── firewall4 │ │ │ └── patches │ │ │ ├── 990-unconditionally-allow-ct-status-dnat.patch │ │ │ ├── 999-01-firewall4-add-fullcone-support.patch │ │ │ └── 999-10-forward-rules-in-prerouting.patch │ │ ├── services │ │ └── dnsmasq │ │ │ └── files │ │ │ └── dnsmasq.init │ │ └── utils │ │ └── iwinfo │ │ └── Makefile ├── target │ └── linux │ │ ├── bcm27xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ └── diag.sh │ │ ├── bcm2712 │ │ │ ├── config-6.1 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ └── distroconfig.txt │ │ └── patches-6.1 │ │ │ ├── 950-0001-Revert-Revert-xhci-add-quirk-for-host-controllers-th.patch │ │ │ ├── 950-0002-Support-RPi-DPI-interface-in-mode6-for-18-bit-color.patch │ │ │ ├── 950-0003-drm-vc4-Add-FKMS-as-an-acceptable-node-for-dma-range.patch │ │ │ ├── 950-0004-drm-vc4-Add-the-2711-HVS-as-a-suitable-DMA-node.patch │ │ │ ├── 950-0005-drm-vc4-Change-the-default-DPI-format-to-being-18bpp.patch │ │ │ ├── 950-0006-drm-atomic-Don-t-fixup-modes-that-haven-t-been-reset.patch │ │ │ ├── 950-0007-drm-vc4-Fix-timings-for-VEC-modes.patch │ │ │ ├── 950-0008-drm-vc4-Fix-definition-of-PAL-M-mode.patch │ │ │ ├── 950-0009-drm-vc4-Add-support-for-more-analog-TV-standards.patch │ │ │ ├── 950-0010-drm-vc4-Allow-setting-the-TV-norm-via-module-paramet.patch │ │ │ ├── 950-0011-drm-vc4-Refactor-mode-checking-logic.patch │ │ │ ├── 950-0012-drm-vc4-Add-firmware-kms-mode.patch │ │ │ ├── 950-0013-drm-vc4-Add-support-for-gamma-on-BCM2711.patch │ │ │ ├── 950-0014-drm-vc4-Add-debugfs-node-that-dumps-the-vc5-gamma-PW.patch │ │ │ ├── 950-0015-drm-vc4-hvs-Force-modeset-on-gamma-lut-change.patch │ │ │ ├── 950-0016-drm-vc4-Relax-VEC-modeline-requirements-and-add-prog.patch │ │ │ ├── 950-0017-drm-vc4-Make-VEC-progressive-modes-readily-accessibl.patch │ │ │ ├── 950-0018-drm-Check-whether-the-gamma-lut-has-changed-before-u.patch │ │ │ ├── 950-0019-drm-vc4-Enable-gamma-block-only-when-required.patch │ │ │ ├── 950-0020-drm-vc4-Only-add-gamma-properties-once.patch │ │ │ ├── 950-0021-drm-vc4-Validate-the-size-of-the-gamma_lut.patch │ │ │ ├── 950-0022-drm-vc4-Disable-Gamma-control-on-HVS5-due-to-issues-.patch │ │ │ ├── 950-0023-drm-vc4_hdmi-Add-Broadcast-RGB-property-to-allow-ove.patch │ │ │ ├── 950-0024-drm-vc4-Add-DRM-210101010-RGB-formats-for-hvs5.patch │ │ │ ├── 950-0025-drm-vc4-dpi-Support-DPI-interface-in-mode3-for-RGB56.patch │ │ │ ├── 950-0026-drm-panel-Add-and-initialise-an-orientation-field-to.patch │ │ │ ├── 950-0027-drm-dsi-Document-the-meaning-and-spec-references-for.patch │ │ │ ├── 950-0028-drm-bridge-tc358762-Ignore-EPROBE_DEFER-when-logging.patch │ │ │ ├── 950-0029-drm-vc4-Rename-bridge-to-out_bridge.patch │ │ │ ├── 950-0030-drm-vc4-Move-DSI-initialisation-to-encoder_mode_set.patch │ │ │ ├── 950-0031-drm-vc4-Remove-splitting-the-bridge-chain-from-the-d.patch │ │ │ ├── 950-0032-drm-vc4-Convert-vc4_dsi-to-use-atomic-enable-disable.patch │ │ │ ├── 950-0033-drm-vc4-Convert-vc4_dsi-to-using-a-bridge-instead-of.patch │ │ │ ├── 950-0034-drm-vc4-Remove-entry-to-ULPS-from-vc4_dsi-post_disab.patch │ │ │ ├── 950-0035-drm-panel-Add-prepare_upstream_first-flag-to-drm_pan.patch │ │ │ ├── 950-0036-drm-Include-drm_connector.h-from-drm_panel.h.patch │ │ │ ├── 950-0037-drm-tc358762-Set-the-pre_enable_upstream_first-flag-.patch │ │ │ ├── 950-0038-drm-vc4-Support-zpos-on-all-planes.patch │ │ │ ├── 950-0039-drm-vc4-hdmi-Add-CSC-for-BT601-709-2020-limited-and-.patch │ │ │ ├── 950-0040-vc4-drm-vc4_plane-Keep-fractional-source-coords-insi.patch │ │ │ ├── 950-0041-vc4-drm-Handle-fractional-coordinates-using-the-phas.patch │ │ │ ├── 950-0042-drm-Add-chroma-siting-properties.patch │ │ │ ├── 950-0043-vc4-drm-plane-Make-use-of-chroma-siting-parameter.patch │ │ │ ├── 950-0044-drm-vc4-Force-trigger-of-dlist-update-on-margins-cha.patch │ │ │ ├── 950-0045-drm-atomic-helpers-remove-legacy_cursor_update-hacks.patch │ │ │ ├── 950-0046-drm-vc4_hdmi-Force-a-modeset-when-Broadcast-RGB-sett.patch │ │ │ ├── 950-0047-drm-atomic-If-margins-are-updated-update-all-planes.patch │ │ │ ├── 950-0048-drm-vc4-hvs-Ignore-atomic_flush-if-we-re-disabled.patch │ │ │ ├── 950-0049-drm-vc4-0-is-a-valid-value-for-pixel_order_hvs5-so-f.patch │ │ │ ├── 950-0050-drm-vc4-Omit-pixel_order-from-the-hvs_format-for-hvs.patch │ │ │ ├── 950-0051-drm-vc4-Add-3-3-2-and-4-4-4-4-RGB-RGBX-RGBA-formats.patch │ │ │ ├── 950-0052-drm-vc4-Add-comments-for-which-HVS_PIXEL_ORDER_xxx-d.patch │ │ │ ├── 950-0053-drm-vc4-Add-async-update-support-for-cursor-planes.patch │ │ │ ├── 950-0054-drm-vc4-Configure-the-HVS-COB-allocations.patch │ │ │ ├── 950-0055-drm-vc4-Set-AXI-panic-modes-for-the-HVS.patch │ │ │ ├── 950-0056-drm-vc4-hvs-Skip-DebugFS-Registration-for-FKMS.patch │ │ │ ├── 950-0057-media-uapi-Add-some-RGB-bus-formats-for-VC4-DPI-outp.patch │ │ │ ├── 950-0058-raspberrypi-firmware-Update-mailbox-commands.patch │ │ │ ├── 950-0059-clk-bcm-rpi-Create-helper-to-retrieve-private-data.patch │ │ │ ├── 950-0060-arm64-setup-Fix-build-warning.patch │ │ │ ├── 950-0061-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0062-clk-raspberrypi-Add-ISP-to-exported-clocks.patch │ │ │ ├── 950-0063-Register-the-clocks-early-during-the-boot-process-so.patch │ │ │ ├── 950-0064-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0065-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0066-clk-bcm2835-Read-max-core-clock-from-firmware.patch │ │ │ ├── 950-0067-clk-clk-bcm2835-Use-zd-when-printing-size_t.patch │ │ │ ├── 950-0068-clk-bcm2835-Don-t-wait-for-pllh-lock.patch │ │ │ ├── 950-0069-clk-bcm2835-Add-support-for-setting-leaf-clock-rates.patch │ │ │ ├── 950-0070-clk-bcm2835-Allow-reparenting-leaf-clocks-while-they.patch │ │ │ ├── 950-0071-clk-bcm2835-Avoid-null-pointer-exception.patch │ │ │ ├── 950-0072-clk-bcm2835-Disable-v3d-clock.patch │ │ │ ├── 950-0073-clk-bcm2835-Pass-DT-node-to-rpi_firmware_get.patch │ │ │ ├── 950-0074-clk-bcm2835-Remove-VEC-clock-support.patch │ │ │ ├── 950-0075-arm-partially-revert-702b94bff3c50542a6e4ab9a4f4cef0.patch │ │ │ ├── 950-0076-cache-export-clean-and-invalidate.patch │ │ │ ├── 950-0077-Revert-spi-spidev-Fix-CS-polarity-if-GPIO-descriptor.patch │ │ │ ├── 950-0078-Revert-Bluetooth-Always-request-for-user-confirmatio.patch │ │ │ ├── 950-0079-Revert-Bluetooth-Always-request-for-user-confirmatio.patch │ │ │ ├── 950-0080-Revert-net-bcmgenet-Request-APD-DLL-disable-and-IDDQ.patch │ │ │ ├── 950-0081-smsx95xx-fix-crimes-against-truesize.patch │ │ │ ├── 950-0082-smsc95xx-Experimental-Enable-turbo_mode-and-packetsi.patch │ │ │ ├── 950-0083-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0084-cgroup-Disable-cgroup-memory-by-default.patch │ │ │ ├── 950-0085-Protect-__release_resource-against-resources-without.patch │ │ │ ├── 950-0086-irq-bcm2836-Avoid-Invalid-trigger-warning.patch │ │ │ ├── 950-0087-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 950-0088-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 950-0089-spi-spidev-Completely-disable-the-spidev-warning.patch │ │ │ ├── 950-0090-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0091-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0092-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0093-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0094-bcm-Make-RASPBERRYPI_POWER-depend-on-PM.patch │ │ │ ├── 950-0095-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0096-sound-Demote-deferral-errors-to-INFO-level.patch │ │ │ ├── 950-0097-Update-vfpmodule.c.patch │ │ │ ├── 950-0098-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0099-irqchip-irq-bcm2836-Remove-regmap-and-syscon-use.patch │ │ │ ├── 950-0100-lan78xx-Enable-LEDs-and-auto-negotiation.patch │ │ │ ├── 950-0101-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0102-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0103-amba_pl011-Insert-mb-for-correct-FIFO-handling.patch │ │ │ ├── 950-0104-amba_pl011-Add-cts-event-workaround-DT-property.patch │ │ │ ├── 950-0105-tty-amba-pl011-Avoid-rare-write-when-full-error.patch │ │ │ ├── 950-0106-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 950-0107-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0108-Add-dwc_otg-driver.patch │ │ │ ├── 950-0109-bcm2708-framebuffer-driver.patch │ │ │ ├── 950-0110-Pulled-in-the-multi-frame-buffer-support-from-the-Pi.patch │ │ │ ├── 950-0111-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 950-0112-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0113-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0114-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0115-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0116-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 950-0117-Add-SMI-driver.patch │ │ │ ├── 950-0118-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 950-0119-char-broadcom-Add-vcio-module.patch │ │ │ ├── 950-0120-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 950-0121-leds-Add-the-input-trigger-for-pwr_led.patch │ │ │ ├── 950-0122-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 950-0123-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 950-0124-gpio-poweroff-Allow-it-to-work-on-Raspberry-Pi.patch │ │ │ ├── 950-0125-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 950-0127-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0128-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0129-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0130-brcm-adds-support-for-BCM43341-wifi.patch │ │ │ ├── 950-0131-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0132-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0133-ARM64-Force-hardware-emulation-of-deprecated-instruc.patch │ │ │ ├── 950-0134-AXI-performance-monitor-driver-2222.patch │ │ │ ├── 950-0135-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0136-dwc-otg-FIQ-Fix-bad-mode-in-data-abort-handler.patch │ │ │ ├── 950-0137-ARM-Activate-FIQs-to-avoid-__irq_startup-warnings.patch │ │ │ ├── 950-0138-i2c-gpio-Also-set-bus-numbers-from-reg-property.patch │ │ │ ├── 950-0139-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch │ │ │ ├── 950-0140-lan78xx-Read-initial-EEE-status-from-DT.patch │ │ │ ├── 950-0141-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0142-Add-ability-to-export-gpio-used-by-gpio-poweroff.patch │ │ │ ├── 950-0143-firmware-raspberrypi-Notify-firmware-of-a-reboot.patch │ │ │ ├── 950-0144-irqchip-irq-bcm2835-Calc.-FIQ_START-at-boot-time.patch │ │ │ ├── 950-0145-net-lan78xx-Disable-TCP-Segmentation-Offload-TSO.patch │ │ │ ├── 950-0146-brcmfmac-Re-enable-firmware-roaming-support.patch │ │ │ ├── 950-0147-lan78xx-Move-enabling-of-EEE-into-PHY-init-code.patch │ │ │ ├── 950-0148-cxd2880-CXD2880_SPI_DRV-should-select-DVB_CXD2880-wi.patch │ │ │ ├── 950-0149-firmware-raspberrypi-Add-backward-compatible-get_thr.patch │ │ │ ├── 950-0150-sc16is7xx-Don-t-spin-if-no-data-received.patch │ │ │ ├── 950-0151-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 950-0152-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch │ │ │ ├── 950-0153-net-lan78xx-Support-auto-downshift-to-100Mb-s.patch │ │ │ ├── 950-0154-firmware-raspberrypi-Report-the-fw-variant-during-pr.patch │ │ │ ├── 950-0155-lan78xx-Debounce-link-events-to-minimize-poll-storm.patch │ │ │ ├── 950-0156-lan78xx-EEE-support-is-now-a-PHY-property.patch │ │ │ ├── 950-0157-bcm2835-dma-Add-support-for-per-channel-flags.patch │ │ │ ├── 950-0158-rtc-rv3028-Add-backup-switchover-mode-support.patch │ │ │ ├── 950-0159-media-tc358743-Increase-FIFO-level-to-374.patch │ │ │ ├── 950-0160-media-tc358743-Add-support-for-972Mbit-s-link-freq.patch │ │ │ ├── 950-0161-media-tc358743-Check-I2C-succeeded-during-probe.patch │ │ │ ├── 950-0162-media-adv7180-Default-to-the-first-valid-input.patch │ │ │ ├── 950-0163-media-adv7180-Add-YPrPb-support-for-ADV7282M.patch │ │ │ ├── 950-0164-media-videodev2-Add-helper-defines-for-printing-FOUR.patch │ │ │ ├── 950-0165-dt-bindings-Document-BCM283x-CSI2-CCP2-receiver.patch │ │ │ ├── 950-0166-MAINTAINERS-Add-entry-for-BCM2835-Unicam-driver.patch │ │ │ ├── 950-0167-media-tc358743-Return-an-appropriate-colorspace-from.patch │ │ │ ├── 950-0168-staging-mmal-vchiq-Avoid-use-of-bool-in-structures.patch │ │ │ ├── 950-0169-staging-mmal-vchiq-Add-support-for-event-callbacks.patch │ │ │ ├── 950-0170-staging-vc04_services-Support-sending-data-to-MMAL-p.patch │ │ │ ├── 950-0171-media-videobuf2-Allow-exporting-of-a-struct-dmabuf.patch │ │ │ ├── 950-0172-staging-mmal-vchiq-Fix-client_component-for-64-bit-k.patch │ │ │ ├── 950-0173-staging-mmal_vchiq-Add-in-the-Bayer-encoding-formats.patch │ │ │ ├── 950-0174-staging-mmal-vchiq-Update-mmal_parameters.h-with-rec.patch │ │ │ ├── 950-0175-staging-mmal-vchiq-Free-the-event-context-for-contro.patch │ │ │ ├── 950-0176-staging-mmal-vchiq-Fix-memory-leak-in-error-path.patch │ │ │ ├── 950-0177-w1-w1-gpio-Make-GPIO-an-output-for-strong-pullup.patch │ │ │ ├── 950-0178-arm-bcm2835-Fix-FIQ-early-ioremap.patch │ │ │ ├── 950-0179-arm-bcm2835-DMA-can-only-address-1GB.patch │ │ │ ├── 950-0180-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0181-bcmgenet-constrain-max-DMA-burst-length.patch │ │ │ ├── 950-0182-bcmgenet-Better-coalescing-parameter-defaults.patch │ │ │ ├── 950-0183-net-genet-enable-link-energy-detect-powerdown-for-ex.patch │ │ │ ├── 950-0184-usb-add-plumbing-for-updating-interrupt-endpoint-int.patch │ │ │ ├── 950-0185-xhci-implement-xhci_fixup_endpoint-for-interval-adju.patch │ │ │ ├── 950-0186-usbhid-call-usb_fixup_endpoint-after-mangling-interv.patch │ │ │ ├── 950-0187-arm-bcm2835-Add-bcm2838-compatible-string.patch │ │ │ ├── 950-0188-i2c-bcm2835-Set-clock-stretch-timeout-to-35ms.patch │ │ │ ├── 950-0189-drm-v3d-Clock-V3D-down-when-not-in-use.patch │ │ │ ├── 950-0190-drivers-char-add-chardev-for-mmap-ing-the-RPiVid-con.patch │ │ │ ├── 950-0191-hid-usb-Add-device-quirks-for-Freeway-Airmouse-T3-an.patch │ │ │ ├── 950-0192-net-bcmgenet-Workaround-2-for-Pi4-Ethernet-fail.patch │ │ │ ├── 950-0193-xhci-Use-more-event-ring-segment-table-entries.patch │ │ │ ├── 950-0194-arch-arm-Add-model-string-to-cpuinfo.patch │ │ │ ├── 950-0195-arch-arm64-Add-Revision-Serial-Model-to-cpuinfo.patch │ │ │ ├── 950-0196-media-i2c-imx258-Support-for-the-Sony-IMX258-sensor.patch │ │ │ ├── 950-0197-media-i2c-imx290-Support-for-the-Sony-IMX290-sensor.patch │ │ │ ├── 950-0198-media-i2c-imx296-Support-for-the-Sony-IMX296-sensor.patch │ │ │ ├── 950-0199-media-i2c-imx477-Support-for-the-Sony-IMX477-sensor.patch │ │ │ ├── 950-0200-media-i2c-imx519-Support-for-the-Sony-IMX519-sensor.patch │ │ │ ├── 950-0201-Documentation-devicetree-Add-documentation-for-imx37.patch │ │ │ ├── 950-0202-v4l2-Add-a-Greyworld-AWB-mode.patch │ │ │ ├── 950-0203-staging-bcm2835-camera-Add-greyworld-AWB-mode.patch │ │ │ ├── 950-0204-media-v4l2-Add-Greyworld-AWB-control-name.patch │ │ │ ├── 950-0205-staging-bcm2835-camera-Fix-the-cherry-pick-of-AWB-Gr.patch │ │ │ ├── 950-0206-ARM-bcm-Switch-board-clk-and-pinctrl-to-bcm2711-comp.patch │ │ │ ├── 950-0207-dt-bindings-Add-binding-for-the-Infineon-IRS1125-sen.patch │ │ │ ├── 950-0208-media-i2c-Add-a-driver-for-the-Infineon-IRS1125-dept.patch │ │ │ ├── 950-0209-drm-v3d-Suppress-all-but-the-first-MMU-error.patch │ │ │ ├── 950-0210-drm-v3d-Plug-dma_fence-leak.patch │ │ │ ├── 950-0211-staging-vchiq_arm-Register-vcsm-cma-as-a-platform-dr.patch │ │ │ ├── 950-0212-staging-vchiq_arm-Register-bcm2835-codec-as-a-platfo.patch │ │ │ ├── 950-0213-net-phy-2711-Allow-ethernet-LED-mode-to-be-set-via-d.patch │ │ │ ├── 950-0214-v3d_drv-Handle-missing-clock-more-gracefully.patch │ │ │ ├── 950-0215-v3d_gem-Kick-the-clock-so-firmware-knows-we-are-usin.patch │ │ │ ├── 950-0216-clk-raspberrypi-Allow-cpufreq-driver-to-also-adjust-.patch │ │ │ ├── 950-0217-staging-vchiq_arm-Set-up-dma-ranges-on-child-devices.patch │ │ │ ├── 950-0218-staging-vchiq-Use-the-old-dma-controller-for-OF-conf.patch │ │ │ ├── 950-0219-ARM-bcm-Backport-BCM2711-support-from-upstream.patch │ │ │ ├── 950-0220-Initialise-rpi-firmware-before-clk-bcm2835.patch │ │ │ ├── 950-0221-staging-vchiq_arm-Give-vchiq-children-DT-nodes.patch │ │ │ ├── 950-0222-pinctrl-bcm2835-Remove-gpiochip-on-error.patch │ │ │ ├── 950-0223-video-fbdev-bcm2708_fb-Use-common-compat-header.patch │ │ │ ├── 950-0224-of-overlay-Correct-symbol-path-fixups.patch │ │ │ ├── 950-0225-dt-bindings-pci-Add-DT-docs-for-Brcmstb-PCIe-device.patch │ │ │ ├── 950-0226-bcmgenet-Disable-skip_umac_reset-by-default.patch │ │ │ ├── 950-0227-media-videodev2.h-Add-a-format-for-column-YUV4-2-0-m.patch │ │ │ ├── 950-0228-media-dt-bindings-media-Add-binding-for-the-Raspberr.patch │ │ │ ├── 950-0229-RFC-media-Add-media_request_-pin-unpin-API.patch │ │ │ ├── 950-0230-staging-media-rpivid-Add-Raspberry-Pi-V4L2-H265-deco.patch │ │ │ ├── 950-0231-spi-Force-CS_HIGH-if-GPIO-descriptors-are-used.patch │ │ │ ├── 950-0232-media-uapi-v4l2-core-Add-sensor-ancillary-data-V4L2-.patch │ │ │ ├── 950-0233-media-uapi-Add-MEDIA_BUS_FMT_SENSOR_DATA-media-bus-f.patch │ │ │ ├── 950-0234-media-uapi-v4l2-core-Add-ISP-statistics-output-V4L2-.patch │ │ │ ├── 950-0235-media-uapi-v4l-ctrls-Add-CID-base-for-the-bcm2835-is.patch │ │ │ ├── 950-0236-staging-vchiq-Load-bcm2835_isp-driver-from-vchiq.patch │ │ │ ├── 950-0237-bcm2835-dma-Add-proper-40-bit-DMA-support.patch │ │ │ ├── 950-0238-media-i2c-tc358743-Fix-fallthrough-warning.patch │ │ │ ├── 950-0239-video-bcm2708_fb-Disable-FB-if-no-displays-found.patch │ │ │ ├── 950-0240-staging-vc04_services-mmal-vchiq-Update-parameters-l.patch │ │ │ ├── 950-0241-staging-vc04_services-bcm2835-camera-Request-headers.patch │ │ │ ├── 950-0242-zswap-Defer-zswap-initialisation.patch │ │ │ ├── 950-0243-gpiolib-Don-t-prevent-IRQ-usage-of-output-GPIOs.patch │ │ │ ├── 950-0244-PCI-brcmstb-Add-DT-property-to-control-L1SS.patch │ │ │ ├── 950-0245-media-irs1125-Using-i2c_transfer-for-ic2-reads.patch │ │ │ ├── 950-0246-media-irs1125-Refactoring-and-debug-messages.patch │ │ │ ├── 950-0247-media-irs1125-Atomic-access-to-imager-reconfiguratio.patch │ │ │ ├── 950-0248-media-irs1125-Keep-HW-in-sync-after-imager-reset.patch │ │ │ ├── 950-0249-brcmfmac-Prefer-a-ccode-from-OTP-over-nvram-file.patch │ │ │ ├── 950-0250-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0251-media-bcm2835-unicam-Kconfig-Makefile-for-CCP2-CSI2-.patch │ │ │ ├── 950-0252-media-bcm2835-unicam-Add-support-for-get_mbus_config.patch │ │ │ ├── 950-0253-media-bcm2835-unicam-Avoid-gcc-warning-over-0-on-end.patch │ │ │ ├── 950-0254-serial-8250-bcm2835aux-defer-if-clock-is-zero.patch │ │ │ ├── 950-0255-media-Add-a-pixel-format-for-MIPI-packed-12bit-luma-.patch │ │ │ ├── 950-0256-media-Add-a-pixel-format-for-MIPI-packed-14bit-luma-.patch │ │ │ ├── 950-0257-media-bcm2835-unicam-Add-support-for-12bit-mono-pack.patch │ │ │ ├── 950-0258-media-bcm2835-unicam-Add-support-for-14bit-mono-sour.patch │ │ │ ├── 950-0259-media-bcm2835-unicam-Add-support-for-unpacked-14bit-.patch │ │ │ ├── 950-0260-bcm2835-dma-Add-NO_WAIT_RESP-flag.patch │ │ │ ├── 950-0261-media-bcm2835-unicam-Reinstate-V4L2_CAP_READWRITE-in.patch │ │ │ ├── 950-0262-media-bcm2835-unicam-Ensure-type-is-VIDEO_CAPTURE-in.patch │ │ │ ├── 950-0263-media-bcm2835-unicam-Set-VPU-min-clock-freq-to-250Mh.patch │ │ │ ├── 950-0264-dt-bindings-bcm2835-unicam-Update-documentation-with.patch │ │ │ ├── 950-0265-leds-Add-the-actpwr-trigger.patch │ │ │ ├── 950-0266-bcm2835-dma-Advertise-the-full-DMA-range.patch │ │ │ ├── 950-0267-media-bcm2835-unicam-Drop-WARN-on-uing-direct-cache-.patch │ │ │ ├── 950-0268-media-i2c-tc358743-Only-allow-supported-pixel-fmts-i.patch │ │ │ ├── 950-0269-media-bcm2835-unicam-Always-service-interrupts.patch │ │ │ ├── 950-0270-media-bcm2835-unicam-Fix-uninitialized-warning.patch │ │ │ ├── 950-0271-media-bcm2835-unicam-Fixup-review-comments-from-Hans.patch │ │ │ ├── 950-0272-media-bcm2835-unicam-Retain-packing-information-on-G.patch │ │ │ ├── 950-0273-media-bcm2835-unicam-change-minimum-number-of-vb2_qu.patch │ │ │ ├── 950-0274-staging-fbtft-Add-support-for-display-variants.patch │ │ │ ├── 950-0275-brcmfmac-Increase-power-saving-delay-to-2s.patch │ │ │ ├── 950-0276-net-bcmgenet-Reset-RBUF-on-first-open.patch │ │ │ ├── 950-0277-char-Add-broadcom-char-drivers-back-to-build-files.patch │ │ │ ├── 950-0278-staging-bcm2835-camera-Replace-deprecated-V4L2_PIX_F.patch │ │ │ ├── 950-0279-staging-vc04_services-Add-new-vc-sm-cma-driver.patch │ │ │ ├── 950-0280-staging-vchiq-mmal-Add-support-for-14bit-Bayer.patch │ │ │ ├── 950-0281-staging-mmal-vchiq-Add-monochrome-image-formats.patch │ │ │ ├── 950-0282-staging-mmal-vchiq-Use-vc-sm-cma-to-support-zero-cop.patch │ │ │ ├── 950-0283-staging-vc04_services-Add-a-V4L2-M2M-codec-driver.patch │ │ │ ├── 950-0284-bcm2835-dma-only-reserve-channel-0-if-legacy-dma-dri.patch │ │ │ ├── 950-0285-uapi-bcm2835-isp-Add-bcm2835-isp-uapi-header-file.patch │ │ │ ├── 950-0286-staging-vc04_services-ISP-Add-a-more-complex-ISP-pro.patch │ │ │ ├── 950-0287-gpio-Add-gpio-fsm-driver.patch │ │ │ ├── 950-0288-rpisense-fb-Set-pseudo_pallete-to-prevent-crash-on-f.patch │ │ │ ├── 950-0289-bcm2708_fb-Fix-a-build-warning.patch │ │ │ ├── 950-0290-watchdog-bcm2835-Ignore-params-after-the-partition-n.patch │ │ │ ├── 950-0291-firmware-raspberrypi-Add-support-for-tryonce-reboot-.patch │ │ │ ├── 950-0292-phy-broadcom-split-out-the-BCM54213PE-from-the-BCM54.patch │ │ │ ├── 950-0293-phy-broadcom-Add-bcm54213pe-configuration.patch │ │ │ ├── 950-0294-PCI-brcmstb-Restore-initial-fundamental-reset.patch │ │ │ ├── 950-0295-Input-edt-ft5x06-Poll-the-device-if-no-interrupt-is-.patch │ │ │ ├── 950-0296-drm-panel-raspberrypi-touchscreen-Use-independent-I2.patch │ │ │ ├── 950-0297-drm-panel-raspberrypi-ts-Insert-delay-before-polling.patch │ │ │ ├── 950-0298-dt-bindings-Add-compatible-for-BCM2711-DSI1.patch │ │ │ ├── 950-0299-media-bcm2835-unicam-Correctly-handle-error-propagat.patch │ │ │ ├── 950-0300-media-bcm2835-unicam-Return-early-from-stop_streamin.patch │ │ │ ├── 950-0301-media-bcm2835-unicam-Clear-clock-state-when-stopping.patch │ │ │ ├── 950-0302-PCI-brcmstb-Advertise-MSI-X-support.patch │ │ │ ├── 950-0303-net-lan78xx-Ack-pending-PHY-ints-when-resetting.patch │ │ │ ├── 950-0304-vc-sm-cma-fixed-kbuild-problem.patch │ │ │ ├── 950-0305-staging-vc04_services-Add-additional-unpacked-raw-fo.patch │ │ │ ├── 950-0306-staging-bcm2835-isp-Add-the-unpacked-16bpp-raw-forma.patch │ │ │ ├── 950-0307-staging-bcm2835-isp-Log-the-number-of-excess-support.patch │ │ │ ├── 950-0308-bcm2835-dma-Avoid-losing-CS-flags-after-interrupt.patch │ │ │ ├── 950-0309-bcm2835-dma-Add-bcm2835-dma-Add-DMA_WIDE_SOURCE-and-.patch │ │ │ ├── 950-0310-uapi-bcm2835-isp-Add-colour-denoise-configuration.patch │ │ │ ├── 950-0311-staging-vc04_services-ISP-Add-colour-denoise-control.patch │ │ │ ├── 950-0312-spi-bcm2835-Workaround-fix-for-zero-length-transfers.patch │ │ │ ├── 950-0313-kbuild-Silence-unavoidable-dtc-overlay-warnings.patch │ │ │ ├── 950-0314-bcm2835-isp-Allow-formats-with-different-colour-spac.patch │ │ │ ├── 950-0315-media-bcm2835-unicam-Fix-bug-in-buffer-swapping-logi.patch │ │ │ ├── 950-0316-Assign-crypto-aliases-to-different-AES-implementatio.patch │ │ │ ├── 950-0317-media-v4l2_m2m-In-buffered-mode-run-jobs-if-either-p.patch │ │ │ ├── 950-0318-media-i2c-add-ov9281-driver.patch │ │ │ ├── 950-0319-media-ov5647-Fix-return-codes-from-ov5647_write-ov56.patch │ │ │ ├── 950-0320-media-i2c-ov5647-Parse-and-register-properties.patch │ │ │ ├── 950-0321-staging-bcm2835-camera-Add-support-for-DMABUFs.patch │ │ │ ├── 950-0322-staging-fbtft-Add-minipitft13-variant.patch │ │ │ ├── 950-0323-drm-panel-jdi-lt070me05000-Use-gpiod_set_value_cansl.patch │ │ │ ├── 950-0324-staging-bcm2835-camera-Add-support-for-H264-levels-4.patch │ │ │ ├── 950-0325-staging-bcm2835-isp-Fix-compiler-warning.patch │ │ │ ├── 950-0326-gpio-poweroff-Remember-the-old-poweroff-handler.patch │ │ │ ├── 950-0327-media-i2c-ov5647-Correct-pixel-array-offset.patch │ │ │ ├── 950-0328-media-i2c-ov5647-Correct-minimum-VBLANK-value.patch │ │ │ ├── 950-0329-media-i2c-ov5647-Fix-v4l2-compliance-failure-subscri.patch │ │ │ ├── 950-0330-staging-vc04_services-isp-Set-the-YUV420-YVU420-form.patch │ │ │ ├── 950-0331-media-bcm2835-unicam-Forward-input-status-from-subde.patch │ │ │ ├── 950-0332-media-i2c-ov7251-Add-fwnode-properties-controls.patch │ │ │ ├── 950-0333-usb-xhci-workaround-for-bogus-SET_DEQ_PENDING-endpoi.patch │ │ │ ├── 950-0334-staging-vchiq_arm-Add-36-bit-address-support.patch │ │ │ ├── 950-0335-staging-vchiq_arm-children-inherit-DMA-config.patch │ │ │ ├── 950-0336-staging-vchiq_arm-Usa-a-DMA-pool-for-small-bulks.patch │ │ │ ├── 950-0337-drm-panel-raspberrypi-touchscreen-Handle-I2C-errors.patch │ │ │ ├── 950-0338-drm-panel-simple-Add-a-timing-for-the-Raspberry-Pi-7.patch │ │ │ ├── 950-0339-Input-edt-ft54x6-Clean-up-timer-and-workqueue-on-rem.patch │ │ │ ├── 950-0340-staging-vchiq-mmal-Add-buffer-flags-for-interlaced-v.patch │ │ │ ├── 950-0341-staging-vchiq-mmal-Add-parameters-for-interlaced-vid.patch │ │ │ ├── 950-0342-staging-vchiq-mmal-Add-the-deinterlace-image-effects.patch │ │ │ ├── 950-0343-Add-Raspberry-Pi-PoE-HAT-support.patch │ │ │ ├── 950-0344-staging-mmal-vchiq-Rationalise-included-headers.patch │ │ │ ├── 950-0345-staging-mmal-vchiq-Add-module-parameter-to-enable-lo.patch │ │ │ ├── 950-0346-staging-mmal-vchiq-Reset-buffers_with_vpu-on-port_en.patch │ │ │ ├── 950-0347-drivers-gpio-Add-a-driver-that-wraps-the-PWM-API-as-.patch │ │ │ ├── 950-0348-media-i2c-ov5647-Sensor-should-report-RAW-color-spac.patch │ │ │ ├── 950-0349-vc04_services-isp-Report-input-node-as-wanting-full-.patch │ │ │ ├── 950-0350-media-bcm2835-unicam-Parse-pad-numbers-correctly.patch │ │ │ ├── 950-0351-media-bcm2835-unicam-Add-support-for-configuration-v.patch │ │ │ ├── 950-0352-staging-bcm2835-camera-Add-support-for-H264_MIN_QP-H.patch │ │ │ ├── 950-0353-staging-bcm2835-camera-Add-support-for-MPEG_VIDEO_FO.patch │ │ │ ├── 950-0354-brcmfmac-Don-t-promote-INFO-logging-to-ERR.patch │ │ │ ├── 950-0355-media-i2c-ov5647-Support-HFLIP-and-VFLIP.patch │ │ │ ├── 950-0356-drivers-bcm2835_isp-Allow-multiple-users-for-the-ISP.patch │ │ │ ├── 950-0357-drivers-bcm2835_isp-Fix-div-by-0-bug.patch │ │ │ ├── 950-0358-spi-spidev-Restore-loading-from-Device-Tree.patch │ │ │ ├── 950-0359-input-edt-ft5x06-Handle-unreliable-TOUCH_UP-events.patch │ │ │ ├── 950-0360-drivers-bcm2835_unicam-Add-logging-message-when-a-fr.patch │ │ │ ├── 950-0361-regulator-rpi-panel-attiny-Don-t-read-the-LCD-power-.patch │ │ │ ├── 950-0362-input-edt-ft5x06-Only-look-at-the-number-of-points-r.patch │ │ │ ├── 950-0363-rtc-pcf8523-Fix-oscillator-stop-bit-handling.patch │ │ │ ├── 950-0364-drm-panel-simple-Populate-bpc-when-using-panel-dpi.patch │ │ │ ├── 950-0365-drm-panel-simple-Allow-the-bus-format-to-be-read-fro.patch │ │ │ ├── 950-0366-xhci-quirks-add-link-TRB-quirk-for-VL805.patch │ │ │ ├── 950-0367-xhci-correct-room_on_ring-for-cases-where-there-is-a.patch │ │ │ ├── 950-0368-xhci-refactor-out-TRBS_PER_SEGMENT-define-in-runtime.patch │ │ │ ├── 950-0369-usb-xhci-add-VLI_TRB_CACHE_BUG-quirk.patch │ │ │ ├── 950-0370-media-i2c-ov5647-Add-support-for-regulator-control.patch │ │ │ ├── 950-0371-media-i2c-ov7251-Make-the-enable-GPIO-optional.patch │ │ │ ├── 950-0372-staging-bcm2835-isp-Fix-cleanup-after-init-fail.patch │ │ │ ├── 950-0373-uapi-v4l2-controls-Reset-V4L2_CID_USER_BCM2835_ISP_B.patch │ │ │ ├── 950-0374-media-i2c-ov9281-Increase-diff-between-VTS-and-max-e.patch │ │ │ ├── 950-0375-bcm2835-v4l2-isp-Add-missing-lock-initialization.patch │ │ │ ├── 950-0376-mfd-simple-mfd-i2c-Add-configuration-for-RPi-POE-HAT.patch │ │ │ ├── 950-0377-pwm-raspberrypi-poe-Add-option-of-being-created-by-M.patch │ │ │ ├── 950-0378-power-rpi-poe-Drop-CURRENT_AVG-as-it-is-not-hardware.patch │ │ │ ├── 950-0379-power-rpi-poe-Add-option-of-being-created-by-MFD-or-.patch │ │ │ ├── 950-0380-drivers-bcm2835_unicam-Disable-trigger-mode-operatio.patch │ │ │ ├── 950-0381-Extending-ili9881c-driver-support-for-nwe080-panel.patch │ │ │ ├── 950-0382-media-bcm2835-unicam-Set-ret-on-error-path-in-unicam.patch │ │ │ ├── 950-0383-media-i2c-ov9281-Initialize-id_msb-to-zero-in-ov9281.patch │ │ │ ├── 950-0384-i2c-bcm2835-Make-clock-stretch-timeout-configurable.patch │ │ │ ├── 950-0385-Patching-lan78xx-for-SOF_TIMESTAMPING_TX_SOFTWARE-su.patch │ │ │ ├── 950-0386-media-uapi-Document-format-MEDIA_BUS_FMT_RGB565_1X24.patch │ │ │ ├── 950-0387-dt-bindings-vendor-prefixes-Add-Geekworm.patch │ │ │ ├── 950-0388-dt-bindings-display-simple-add-Geekworm-MZP280-Panel.patch │ │ │ ├── 950-0389-drm-panel-simple-add-Geekworm-MZP280-Panel.patch │ │ │ ├── 950-0390-drm-panel-simple-Remove-custom-handling-of-orientati.patch │ │ │ ├── 950-0391-drm-panel-Add-panel-driver-for-Ilitek-ILI9806E-panel.patch │ │ │ ├── 950-0392-drm-panel-Add-panel-driver-for-TDO-Y17B-based-panels.patch │ │ │ ├── 950-0393-bindings-Add-sck-idle-input-to-spi-gpio.patch │ │ │ ├── 950-0394-spi-gpio-Add-sck-idle-input-property.patch │ │ │ ├── 950-0395-media-bcm2835-unicam-Handle-a-repeated-frame-start-w.patch │ │ │ ├── 950-0396-usb-xhci-add-a-quirk-for-Superspeed-bulk-OUT-transfe.patch │ │ │ ├── 950-0397-media-i2c-ov7251-Reinstate-setting-ov7251_global_ini.patch │ │ │ ├── 950-0398-usb-xhci-rework-XHCI_VLI_SS_BULK_OUT_BUG-quirk.patch │ │ │ ├── 950-0399-media-i2c-Add-driver-for-Omnivision-OV2311.patch │ │ │ ├── 950-0400-staging-vc04_services-isp-Permit-all-sRGB-colour-spa.patch │ │ │ ├── 950-0401-drivers-staging-bcm2835-isp-Do-not-cleanup-mmal-vcsm.patch │ │ │ ├── 950-0402-dt-bindings-media-i2c-Add-binding-for-ad5398-VCM.patch │ │ │ ├── 950-0403-media-i2c-Add-driver-for-AD5398-VCM-lens-driver.patch │ │ │ ├── 950-0404-media-i2c-ov5647-Use-v4l2_async_register_subdev_sens.patch │ │ │ ├── 950-0405-media-i2c-Rename-ad5398-to-ad5398_vcm.patch │ │ │ ├── 950-0406-drivers-staging-bcm2835-isp-Clear-LS-table-handle-in.patch │ │ │ ├── 950-0407-mm-page_alloc-cma-introduce-a-customisable-threshold.patch │ │ │ ├── 950-0408-pinctrl-bcm2835-Only-return-non-GPIOs-to-inputs.patch │ │ │ ├── 950-0409-drm-panel-ilitek-ili9881c-Clean-up-on-mipi_dsi_attac.patch │ │ │ ├── 950-0410-drm-panel-panel-ilitek9881c-Add-prepare_upstream_fir.patch │ │ │ ├── 950-0411-clk-bcm2835-use-subsys_initcall-for-the-clock-driver.patch │ │ │ ├── 950-0412-tpm_tis_spi_main-Force-probe-routine-to-run-synchron.patch │ │ │ ├── 950-0413-staging-vchiq_arm-Add-log_level-module-params.patch │ │ │ ├── 950-0414-dt-bindings-vendor-prefixes-Add-Arducam.patch │ │ │ ├── 950-0415-media-dt-bindings-media-i2c-Add-Arducam-Pivariety-Se.patch │ │ │ ├── 950-0416-media-i2c-Add-driver-of-Arducam-Pivariety-series-cam.patch │ │ │ ├── 950-0417-thermal-broadcom-Use-dev_err_probe-to-suppress-defer.patch │ │ │ ├── 950-0418-dt-bindings-hwmon-add-microchip-emc2305.yaml-dt-bind.patch │ │ │ ├── 950-0419-dtbindings-Fixup-microchip-emc2305.yaml-bindings.patch │ │ │ ├── 950-0420-media-i2c-Update-ov2311-Kconfig-entry.patch │ │ │ ├── 950-0421-media-i2c-Update-ov9281-Kconfig-entry.patch │ │ │ ├── 950-0422-media-i2c-Update-irs1125-Kconfig-entry.patch │ │ │ ├── 950-0423-media-i2c-arducam-pivariety-Fixup-for-mainline-API-c.patch │ │ │ ├── 950-0424-mmc-block-Don-t-do-single-sector-reads-during-recove.patch │ │ │ ├── 950-0425-vc04_services-vchiq-mmal-Add-defines-for-mmal_es_for.patch │ │ │ ├── 950-0426-random-do-not-use-jump-labels-before-they-are-initia.patch │ │ │ ├── 950-0427-drm-v3d-Switch-clock-setting-to-new-api.patch │ │ │ ├── 950-0428-clk-raspberrypi-Enable-minimize-for-all-firmware-clo.patch │ │ │ ├── 950-0429-media-dt-bindings-media-i2c-Add-Arducam-64MP-CMOS-se.patch │ │ │ ├── 950-0430-media-i2c-Add-driver-of-Arducam-64MP-camera.patch │ │ │ ├── 950-0431-media-i2c-arducam_64mp-Advertise-embedded-data-node-.patch │ │ │ ├── 950-0432-Add-HDMI1-facility-to-the-driver.patch │ │ │ ├── 950-0433-Populate-phy-driver-block-for-BCM54213PE.patch │ │ │ ├── 950-0434-clk-bcm-rpi-Add-the-BCM283x-pixel-clock.patch │ │ │ ├── 950-0435-media-i2c-ov9281-Correct-min-def-vts-for-640x400.patch │ │ │ ├── 950-0436-media-i2c-ov9281-Change-exposure-default-value-with-.patch │ │ │ ├── 950-0437-media-bcm2835-unicam-Correctly-handle-FS-FE-ISR-cond.patch │ │ │ ├── 950-0438-drm-panel-simple-hack-ignore-orientation.patch │ │ │ ├── 950-0439-vc04_services-vc-sm-cma-Handle-upstream-require-vchi.patch │ │ │ ├── 950-0440-media-video-mux-Read-CSI2-config-from-FW-and-pass-to.patch │ │ │ ├── 950-0441-media-i2c-arducam-pivariety-Add-custom-controls.patch │ │ │ ├── 950-0442-media-bcm2835-unicam-Fix-for-possible-dummy-buffer-o.patch │ │ │ ├── 950-0443-usb-xhci-expand-mitigations-for-VLI_SS_BULK_OUT_BUG-.patch │ │ │ ├── 950-0444-usb-xhci-account-for-num_trbs_free-when-invalidating.patch │ │ │ ├── 950-0445-brcmfmac-Read-alternative-firmware-names-from-DT.patch │ │ │ ├── 950-0446-drm-panel-Rename-GEM-CMA-helpers-GEM-DMA-helpers.patch │ │ │ ├── 950-0447-hwmon-emc2305-fixups-for-driver-submitted-to-mailing.patch │ │ │ ├── 950-0448-media-bcm2835-unicam-Fix-up-start-stop-api-change.patch │ │ │ ├── 950-0449-drivers-usb-dwc_otg-fix-reference-passing-when-check.patch │ │ │ ├── 950-0450-drivers-gpu-drm-vc4-Add-missing-32-bit-RGB-formats.patch │ │ │ ├── 950-0451-overlays-Add-i2c-sensor-support-for-AHT10.patch │ │ │ ├── 950-0452-overlays-Add-README-entry-for-i2c-rtc-rv3032.patch │ │ │ ├── 950-0453-drivers-dwc_otg-stop-GCC-from-patching-FIQ-functions.patch │ │ │ ├── 950-0454-overlays-i2c-sensor-Add-mcp980x-support.patch │ │ │ ├── 950-0455-overlays-pisound-Make-button-pins-owned-by-card.patch │ │ │ ├── 950-0456-firmware-raspberrypi-Introduce-rpi_firmware_find_nod.patch │ │ │ ├── 950-0457-firmware-raspberrypi-Move-the-clock-IDs-to-the-firmw.patch │ │ │ ├── 950-0458-firmware-raspberrypi-Provide-a-helper-to-query-a-clo.patch │ │ │ ├── 950-0459-drm-vc4-hdmi-Fix-hdmi_enable_4kp60-detection.patch │ │ │ ├── 950-0460-drm-vc4-hdmi-Rework-hdmi_enable_4kp60-detection-code.patch │ │ │ ├── 950-0461-drm-vc4-hdmi-Add-more-checks-for-4k-resolutions.patch │ │ │ ├── 950-0462-drm-vc4-Make-sure-we-don-t-end-up-with-a-core-clock-.patch │ │ │ ├── 950-0463-net-phy-BCM54210PE-does-not-support-PTP.patch │ │ │ ├── 950-0464-drm-vc4_hdmi-Allow-hotplug-detect-to-be-forced.patch │ │ │ ├── 950-0465-overlays-i2c-sensor-Add-the-jc42-class-of-sensor.patch │ │ │ ├── 950-0466-overlays-Extend-audremap-to-supports-other-pins.patch │ │ │ ├── 950-0467-media-adv7180-Nasty-hack-to-allow-input-selection.patch │ │ │ ├── 950-0468-vc04_services-bcm2835_codec-Allow-larger-images-thro.patch │ │ │ ├── 950-0469-imx296-overlay-clock-frequency-defaults-to-54MHz-but.patch │ │ │ ├── 950-0471-overlays-Add-overlay-pwm1.patch │ │ │ ├── 950-0472-overlays-audremap-Include-the-fsels-values.patch │ │ │ ├── 950-0473-overlays-i2c-sensor-Make-smbus-timeout-disable-optio.patch │ │ │ ├── 950-0474-overlays-Mention-Digi2-Pro-audio-card-in-README.patch │ │ │ ├── 950-0475-usb-xhci-add-XHCI_VLI_HUB_TT_QUIRK.patch │ │ │ ├── 950-0476-media-i2c-ov7251-Add-module-param-to-select-ext-trig.patch │ │ │ ├── 950-0477-vc4_hdmi-Avoid-log-spam-for-audio-start-failure.patch │ │ │ ├── 950-0478-drm-tests-Order-Kunit-tests-in-Makefile.patch │ │ │ ├── 950-0479-drm-tests-Add-Kunit-Helpers.patch │ │ │ ├── 950-0480-drm-tests-Include-helpers-header.patch │ │ │ ├── 950-0481-drm-tests-helpers-Add-module-infos.patch │ │ │ ├── 950-0482-drm-tests-helpers-Add-SPDX-header.patch │ │ │ ├── 950-0483-drm-atomic-Constify-the-old-new-state-accessors.patch │ │ │ ├── 950-0484-drm-vc4-Constify-container_of-wrappers.patch │ │ │ ├── 950-0485-drm-vc4-kms-Constify-the-HVS-old-new-state-helpers.patch │ │ │ ├── 950-0486-drm-vc4-kms-Sort-the-CRTCs-by-output-before-assignin.patch │ │ │ ├── 950-0487-drm-vc4-txp-Reorder-the-variable-assignments.patch │ │ │ ├── 950-0488-drm-vc4-Add-TXP-encoder-type.patch │ │ │ ├── 950-0489-drm-vc4-txp-Initialise-the-CRTC-before-the-encoder-a.patch │ │ │ ├── 950-0490-drm-vc4-crtc-Pass-the-device-and-data-in-vc4_crtc_in.patch │ │ │ ├── 950-0491-drm-vc4-crtc-Provide-a-CRTC-name.patch │ │ │ ├── 950-0492-drm-tests-helpers-Add-missing-export.patch │ │ │ ├── 950-0493-drm-tests-helpers-Move-the-helper-header-to-include-.patch │ │ │ ├── 950-0494-drm-tests-Introduce-a-config-option-for-the-KUnit-he.patch │ │ │ ├── 950-0495-drm-tests-helpers-Document-drm_kunit_device_init.patch │ │ │ ├── 950-0496-drm-tests-helpers-Switch-to-EXPORT_SYMBOL_GPL.patch │ │ │ ├── 950-0497-drm-tests-helpers-Rename-the-device-init-helper.patch │ │ │ ├── 950-0498-drm-tests-helpers-Remove-the-name-parameter.patch │ │ │ ├── 950-0499-drm-tests-helpers-Create-the-device-in-another-funct.patch │ │ │ ├── 950-0500-drm-tests-helpers-Switch-to-a-platform_device.patch │ │ │ ├── 950-0501-drm-tests-helpers-Make-sure-the-device-is-bound.patch │ │ │ ├── 950-0502-drm-tests-helpers-Allow-for-a-custom-device-struct-t.patch │ │ │ ├── 950-0503-drm-tests-helpers-Allow-to-pass-a-custom-drm_driver.patch │ │ │ ├── 950-0504-drm-vc4-Move-HVS-state-to-main-header.patch │ │ │ ├── 950-0505-drm-vc4-crtc-Introduce-a-lower-level-crtc-init-helpe.patch │ │ │ ├── 950-0506-drm-vc4-crtc-Make-encoder-lookup-helper-public.patch │ │ │ ├── 950-0507-drm-vc4-hvs-Provide-a-function-to-initialize-the-HVS.patch │ │ │ ├── 950-0508-drm-vc4-tests-Introduce-a-mocking-infrastructure.patch │ │ │ ├── 950-0509-drm-vc4-tests-Fail-the-current-test-if-we-access-a-r.patch │ │ │ ├── 950-0510-drm-vc4-tests-Add-unit-test-suite-for-the-PV-muxing.patch │ │ │ ├── 950-0511-Documentation-gpu-vc4-Add-KUnit-Tests-Section.patch │ │ │ ├── 950-0512-drm-panel-panel-ilitek9881c-Use-cansleep-methods.patch │ │ │ ├── 950-0513-drm-panel-panel-ilitek9881c-Crystalfontz-support.patch │ │ │ ├── 950-0514-overlays-Add-crystalfontz-cfa050_pi_m.patch │ │ │ ├── 950-0515-net-bcmgenet-Add-eee-module-parameter.patch │ │ │ ├── 950-0516-dts-bcm2711-Add-eee-dtparam.patch │ │ │ ├── 950-0517-dtoverlays-Add-overlay-cm-swap-i2c0-to-swap-buses-on.patch │ │ │ ├── 950-0518-dt-Correct-cam_reg-GPIO-assignments-for-CM1-3.patch │ │ │ ├── 950-0519-dt-Add-camX_reg_gpio-to-CM4.patch │ │ │ ├── 950-0520-dt-Add-camX_reg-and-camX_reg_gpio-overrides-to-CM4S.patch │ │ │ ├── 950-0521-overlays-Add-disable-emmc2.patch │ │ │ ├── 950-0522-xhci-constrain-XHCI_VLI_HUB_TT_QUIRK-to-old-firmware.patch │ │ │ ├── 950-0523-drm-panel-simple-Add-Innolux-AT056tN53V1-5.6-VGA.patch │ │ │ ├── 950-0524-overlays-audremap-Fix-setting-of-the-pin-function.patch │ │ │ ├── 950-0525-media-dt-bindings-Add-DW9817-to-DW9807-binding.patch │ │ │ ├── 950-0526-media-dw9807-vcm-Add-support-for-DW9817-bidirectiona.patch │ │ │ ├── 950-0527-media-dt-bindings-Add-regulator-to-dw9807-vcm.patch │ │ │ ├── 950-0528-media-dw9807-vcm-Add-regulator-support-to-the-driver.patch │ │ │ ├── 950-0529-media-dw9807-vcm-Smooth-the-first-user-movement-of-t.patch │ │ │ ├── 950-0530-dtbindings-media-i2c-Add-IMX708-CMOS-sensor-binding.patch │ │ │ ├── 950-0531-media-i2c-Add-a-driver-for-the-Sony-IMX708-image-sen.patch │ │ │ ├── 950-0532-dtoverlays-Add-overlays-for-the-IMX708-image-sensor.patch │ │ │ ├── 950-0533-net-phy-broadcom-Make-LEDs-3-4-shadow-LEDs-1-2.patch │ │ │ ├── 950-0534-overlays-i2c-sensor-MS-temp-pressure-sensors.patch │ │ │ ├── 950-0535-drivers-media-imx708-Enable-long-exposure-mode.patch │ │ │ ├── 950-0536-drivers-media-i2c-imx708-Fix-crop-information.patch │ │ │ ├── 950-0537-drm-vc4-hdmi-Correct-CSC-setup-for-YCbCr4-4-4.patch │ │ │ ├── 950-0538-drm-vc4-hdmi-Add-property-to-allow-manual-config-of-.patch │ │ │ ├── 950-0539-bcm2835-mmc-Honor-return-value-of-mmc_of_parse.patch │ │ │ ├── 950-0540-overlays-i2c-sensor-Add-mpu6050-and-mpu9250.patch │ │ │ ├── 950-0541-overlays-i2c-sensor-Use-TABs-for-indentation.patch │ │ │ ├── 950-0542-overlays-i2c-sensor-Add-BNO055-IMU-sensor.patch │ │ │ ├── 950-0543-dtoverlay-Update-vc4-kms-dpi-generic-for-changed-med.patch │ │ │ ├── 950-0544-drm-vc4-hvs-Defer-dlist-slots-deallocation.patch │ │ │ ├── 950-0545-vc4-hdmi-Always-enable-GCP-with-AVMUTE-cleared.patch │ │ │ ├── 950-0546-media-bcm2835-v4l2-codec-Enable-selection-ioctl-for-.patch │ │ │ ├── 950-0547-overlays-i2c-sensor-Add-SHT4X-support.patch │ │ │ ├── 950-0548-kunit-Provide-a-static-key-to-check-if-KUnit-is-acti.patch │ │ │ ├── 950-0549-kunit-Use-the-static-key-when-retrieving-the-current.patch │ │ │ ├── 950-0550-drm-vc4-hvs-Initialize-the-dlist-allocation-list-ent.patch │ │ │ ├── 950-0551-drm-vc4-hvs-Move-the-dlist-allocation-destruction-to.patch │ │ │ ├── 950-0552-drm-vc4-hvs-Destroy-dlist-allocations-immediately-wh.patch │ │ │ ├── 950-0553-ARM-dts-Set-the-LED-default-state-to-off.patch │ │ │ ├── 950-0554-media-bcm2835-v4l2-codec-Add-profile-level-ctrls-to-.patch │ │ │ ├── 950-0555-drm-vc4_plane-Add-support-for-YUV444-formats.patch │ │ │ ├── 950-0556-drm-vc4-Calculate-bpc-based-on-max_requested_bpc.patch │ │ │ ├── 950-0557-media-dt-bindings-ak7375-Convert-to-DT-schema.patch │ │ │ ├── 950-0558-media-dt-bindings-ak7375-Add-supplies.patch │ │ │ ├── 950-0559-media-i2c-ak7375-Add-regulator-management.patch │ │ │ ├── 950-0560-dtoverlays-Add-VCM-option-to-imx519.patch │ │ │ ├── 950-0561-dtoverlays-Add-IMX519-support-to-camera-mux-overlays.patch │ │ │ ├── 950-0562-vc04_services-bcm2835_codec-Ignore-READ_ONLY-ctrls-i.patch │ │ │ ├── 950-0564-dtoverlays-Add-VCM-option-to-Arducam64MP.patch │ │ │ ├── 950-0565-dtoverlays-Add-Arducam64MP-support-to-camera-mux-ove.patch │ │ │ ├── 950-0566-drm-panel-panel-sitronix-st7701-Support-SPI-config-a.patch │ │ │ ├── 950-0567-overlays-Remove-lirc-rpi-from-media-center.patch │ │ │ ├── 950-0568-overlays-pca953x-Fix-a-typos-in-the-pcal-variants.patch │ │ │ ├── 950-0569-iio-adc-mcp3422-Add-correct-compatible-strings.patch │ │ │ ├── 950-0570-ASoC-adau1977-Add-correct-compatible-strings.patch │ │ │ ├── 950-0571-overlays-Use-vendor-qualified-compatible-strings.patch │ │ │ ├── 950-0572-mfd-arizona-i2c-Declare-of-MODULE_DEVICE_TABLE.patch │ │ │ ├── 950-0573-gpio-pca953x-Add-ti-tca9554-compatible-string.patch │ │ │ ├── 950-0574-hwmon-aht10-Add-DT-compatible-string.patch │ │ │ ├── 950-0575-hwmon-ds1621-Add-DT-compatible-strings.patch │ │ │ ├── 950-0576-rtc-ds3232-Add-DT-compatible-string-for-ds3234.patch │ │ │ ├── 950-0577-hwmon-sht3x-Add-DT-compatible-string.patch │ │ │ ├── 950-0578-iio-light-tsl4531-Add-DT-compatible-string.patch │ │ │ ├── 950-0579-iio-light-veml6070-Add-DT-compatible-string.patch │ │ │ ├── 950-0580-ARM-dts-Standardise-on-the-upstream-LED-names.patch │ │ │ ├── 950-0581-ARM-dts-bcm2711-rpi-400-Restore-the-ACT-LED.patch │ │ │ ├── 950-0582-ARM-dts-bcm2711-rpi-400-Add-dummy-cam1-regulator.patch │ │ │ ├── 950-0583-overlays-vc4-kms-fkms-v3d-Raise-CMA-to-512MB.patch │ │ │ ├── 950-0584-media-i2c-imx219-Sensor-should-report-RAW-color-spac.patch │ │ │ ├── 950-0585-media-i2c-imx219-Correct-the-minimum-vblanking-value.patch │ │ │ ├── 950-0586-media-i2c-imx219-make-HBLANK-r-w-to-allow-longer-exp.patch │ │ │ ├── 950-0587-media-imx219-Advertise-embedded-data-node-on-media-p.patch │ │ │ ├── 950-0588-drm-vc4-drop-unnecessary-and-harmful-HDMI-RGB-format.patch │ │ │ ├── 950-0589-Revert-media-i2c-imx296-Support-for-the-Sony-IMX296-.patch │ │ │ ├── 950-0590-dt-bindings-media-i2c-Add-IMX296-CMOS-sensor-binding.patch │ │ │ ├── 950-0591-media-i2c-IMX296-camera-sensor-driver.patch │ │ │ ├── 950-0592-media-i2c-imx296-Get-sensor-crop-working.patch │ │ │ ├── 950-0593-media-i2c-imx296-Disable-binning-for-colour-variant.patch │ │ │ ├── 950-0594-media-i2c-imx296-Add-helper-for-hblank-control.patch │ │ │ ├── 950-0595-media-i2c-imx296-Set-a-1-frame-gain-delay.patch │ │ │ ├── 950-0596-media-i2c-imx296-Add-horizontal-vertical-flip-suppor.patch │ │ │ ├── 950-0597-media-i2c-imx296-Adjust-cropping-limits.patch │ │ │ ├── 950-0598-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0600-media-i2c-Add-PDAF-support-for-IMX519.patch │ │ │ ├── 950-0601-dtoverlays-Reduce-the-link-frequencies-of-IMX519.patch │ │ │ ├── 950-0602-drivers-media-i2c-imx708-Fix-WIDE_DYNAMIC_RANGE-cont.patch │ │ │ ├── 950-0603-rpisense-fb-Flush-any-deferred-updates-on-release.patch │ │ │ ├── 950-0604-rpisense-fb-Add-explicit-fb_deferred_io_mmap-hook.patch │ │ │ ├── 950-0607-vc04_services-bcm2835_codec-Set-MPEG2_LEVEL-control-.patch │ │ │ ├── 950-0608-staging-bcm2835-codec-Add-V4L2_CID_MPEG_VIDEO_B_FRAM.patch │ │ │ ├── 950-0609-staging-bcm2835-codec-Add-support-for-V4L2_CID_MPEG_.patch │ │ │ ├── 950-0610-dtoverlays-Add-inverted-override-property-to-ssd1306.patch │ │ │ ├── 950-0611-media-i2c-imx290-Reset-to-upstream.patch │ │ │ ├── 950-0612-media-i2c-imx290-Use-device-lock-for-the-control-han.patch │ │ │ ├── 950-0613-media-i2c-imx290-Print-error-code-when-I2C-transfer-.patch │ │ │ ├── 950-0614-media-i2c-imx290-Replace-macro-with-explicit-ARRAY_S.patch │ │ │ ├── 950-0615-media-i2c-imx290-Drop-imx290_write_buffered_reg.patch │ │ │ ├── 950-0616-media-i2c-imx290-Drop-regmap-cache.patch │ │ │ ├── 950-0617-media-i2c-imx290-Specify-HMAX-values-in-decimal.patch │ │ │ ├── 950-0618-media-i2c-imx290-Support-variable-sized-registers.patch │ │ │ ├── 950-0619-media-i2c-imx290-Correct-register-sizes.patch │ │ │ ├── 950-0620-media-i2c-imx290-Simplify-error-handling-when-writin.patch │ │ │ ├── 950-0621-media-i2c-imx290-Define-more-register-macros.patch │ │ │ ├── 950-0622-media-i2c-imx290-Add-exposure-time-control.patch │ │ │ ├── 950-0623-media-i2c-imx290-Fix-max-gain-value.patch │ │ │ ├── 950-0624-media-i2c-imx290-Split-control-initialization-to-sep.patch │ │ │ ├── 950-0625-media-i2c-imx290-Implement-HBLANK-and-VBLANK-control.patch │ │ │ ├── 950-0626-media-i2c-imx290-Create-controls-for-fwnode-properti.patch │ │ │ ├── 950-0627-media-i2c-imx290-Move-registers-with-fixed-value-to-.patch │ │ │ ├── 950-0628-media-i2c-imx290-Factor-out-format-retrieval-to-sepa.patch │ │ │ ├── 950-0629-media-i2c-imx290-Add-crop-selection-targets-support.patch │ │ │ ├── 950-0630-media-i2c-imx290-Replace-GAIN-control-with-ANALOGUE_.patch │ │ │ ├── 950-0631-media-i2c-imx290-Group-functions-in-sections.patch │ │ │ ├── 950-0632-media-i2c-imx290-Factor-out-subdev-init-and-cleanup-.patch │ │ │ ├── 950-0633-media-i2c-imx290-Factor-out-control-update-code-to-a.patch │ │ │ ├── 950-0634-media-i2c-imx290-Access-link_freq_index-directly.patch │ │ │ ├── 950-0635-media-i2c-imx290-Pass-format-and-mode-to-imx290_calc.patch │ │ │ ├── 950-0636-media-i2c-imx290-Compute-pixel-rate-and-blanking-in-.patch │ │ │ ├── 950-0637-media-i2c-imx290-Factor-out-black-level-setting-to-a.patch │ │ │ ├── 950-0638-media-i2c-imx290-Factor-out-DT-parsing-to-separate-f.patch │ │ │ ├── 950-0639-media-i2c-imx290-Use-dev_err_probe.patch │ │ │ ├── 950-0640-media-i2c-imx290-Factor-out-clock-initialization-to-.patch │ │ │ ├── 950-0641-media-i2c-imx290-Use-V4L2-subdev-active-state.patch │ │ │ ├── 950-0642-media-i2c-imx290-Rename-extend-and-expand-usage-of-i.patch │ │ │ ├── 950-0643-media-i2c-imx290-Use-runtime-PM-autosuspend.patch │ │ │ ├── 950-0644-media-i2c-imx290-Initialize-runtime-PM-before-subdev.patch │ │ │ ├── 950-0645-media-i2c-imx290-Configure-data-lanes-at-start-time.patch │ │ │ ├── 950-0646-media-i2c-imx290-Simplify-imx290_set_data_lanes.patch │ │ │ ├── 950-0647-media-i2c-imx290-Handle-error-from-imx290_set_data_l.patch │ │ │ ├── 950-0648-dtbindings-Reset-imx290.txt-to-upstream.patch │ │ │ ├── 950-0649-media-dt-bindings-Convert-imx290.txt-to-YAML.patch │ │ │ ├── 950-0650-media-dt-bindings-media-i2c-Add-mono-version-to-IMX2.patch │ │ │ ├── 950-0651-media-dt-bindings-media-i2c-Add-imx327-version-to-IM.patch │ │ │ ├── 950-0652-media-i2c-imx290-Make-use-of-get_unaligned_le24-put_.patch │ │ │ ├── 950-0653-media-i2c-imx290-Use-device_property_read_u32-direct.patch │ │ │ ├── 950-0654-media-i2c-imx290-Add-support-for-the-mono-sensor-var.patch │ │ │ ├── 950-0655-media-i2c-imx290-Match-kernel-coding-style-on-whites.patch │ │ │ ├── 950-0656-media-i2c-imx290-Set-the-colorspace-fields-in-the-fo.patch │ │ │ ├── 950-0657-media-i2c-imx290-Add-V4L2_SUBDEV_FL_HAS_EVENTS-and-s.patch │ │ │ ├── 950-0658-media-i2c-imx290-Fix-the-pixel-rate-at-148.5Mpix-s.patch │ │ │ ├── 950-0659-media-i2c-imx290-Support-60fps-in-2-lane-operation.patch │ │ │ ├── 950-0660-media-i2c-imx290-Use-CSI-timings-as-per-datasheet.patch │ │ │ ├── 950-0661-media-i2c-imx290-Convert-V4L2_CID_HBLANK-to-read-wri.patch │ │ │ ├── 950-0662-media-i2c-imx290-Convert-V4L2_CID_VBLANK-to-read-wri.patch │ │ │ ├── 950-0663-media-i2c-imx290-VMAX-is-mode-dependent.patch │ │ │ ├── 950-0664-media-i2c-imx290-Remove-duplicated-write-to-IMX290_C.patch │ │ │ ├── 950-0665-media-i2c-imx290-Add-support-for-74.25MHz-external-c.patch │ │ │ ├── 950-0666-media-i2c-imx290-Add-support-for-H-V-Flips.patch │ │ │ ├── 950-0667-media-i2c-imx290-Add-the-error-code-to-logs-in-start.patch │ │ │ ├── 950-0668-media-i2c-imx290-Add-support-for-imx327-variant.patch │ │ │ ├── 950-0669-dtoverlays-Update-compatible-strings-for-imx290-327-.patch │ │ │ ├── 950-0670-Revert-rpisense-fb-Flush-any-deferred-updates-on-rel.patch │ │ │ ├── 950-0671-fbdev-Don-t-cancel-deferred-work-if-pagelist-empty.patch │ │ │ ├── 950-0672-usb-xhci-drop-and-add-the-endpoint-context-in-xhci_f.patch │ │ │ ├── 950-0673-drivers-media-imx708-Increase-usable-link-frequencie.patch │ │ │ ├── 950-0674-dtoverlays-Add-link-frequency-parameter-for-the-Sony.patch │ │ │ ├── 950-0675-drivers-media-imx708-Remove-unused-control-fields.patch │ │ │ ├── 950-0676-drivers-media-imx708-Tidy-ups-to-address-upstream-re.patch │ │ │ ├── 950-0677-dt-bindings-media-i2c-Replace-IMX708-sensor-binding-.patch │ │ │ ├── 950-0678-dtoverlays-Follow-the-standard-devicetree-labels-for.patch │ │ │ ├── 950-0679-drivers-media-imx708-Follow-the-standard-devicetree-.patch │ │ │ ├── 950-0680-drives-media-imx708-Put-HFLIP-and-VFLIP-controls-in-.patch │ │ │ ├── 950-0681-media-bcm2835-unicam-Start-and-stop-media_pipeline-w.patch │ │ │ ├── 950-0682-fixup-gpio-fsm-Avoid-truncation-of-delay-jiffies.patch │ │ │ ├── 950-0683-staging-bcm2835-codec-Add-missing-alignment-for-V4L2.patch │ │ │ ├── 950-0684-ARM-dts-bcm27xx-Add-i2c_arm-vc-and-friends.patch │ │ │ ├── 950-0685-overlays-Add-pcf857x-support.patch │ │ │ ├── 950-0686-overlays-Add-gpio-charger-support.patch │ │ │ ├── 950-0687-Revert-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0688-media-i2c-imx219-Scale-the-pixel-clock-rate-for-the-.patch │ │ │ ├── 950-0689-hwmon-emc2305-Add-calls-to-initialise-of-cooling-map.patch │ │ │ ├── 950-0690-drm-panel-Add-panel-driver-for-Waveshare-DSI-touchsc.patch │ │ │ ├── 950-0691-input-goodix-Add-option-to-poll-instead-of-relying-o.patch │ │ │ ├── 950-0692-dtoverlays-Add-an-overlay-for-the-Waveshare-DSI-scre.patch │ │ │ ├── 950-0693-arm-boot-dts-overlays-mipi-dbi-spi-fix-default-brigh.patch │ │ │ ├── 950-0694-dtoverlays-Add-overrides-for-alternate-i2c-buses-to-.patch │ │ │ ├── 950-0695-dtoverlays-Add-overrides-for-alternate-i2c-buses-to-.patch │ │ │ ├── 950-0696-fixup-Export-optimised-__memcpy.patch │ │ │ ├── 950-0697-hwmon-emc2305-Change-OF-properties-pwm-min-pwm-max-t.patch │ │ │ ├── 950-0698-dtoverlays-Change-i2c-fan-pwm-max-min-overrides-to-u.patch │ │ │ ├── 950-0699-drm-vc4-Limit-max_bpc-to-8-on-Pi0-3.patch │ │ │ ├── 950-0700-serial-8250-Add-NOMSI-bug-for-bcm2835aux.patch │ │ │ ├── 950-0701-Bluetooth-hci_bcm-Add-more-invalid-BDADDRs.patch │ │ │ ├── 950-0702-ARM-dts-bcm27xx-Enable-kernel-Bluetooth.patch │ │ │ ├── 950-0703-overlays-Update-miniuart-bt-now-krnbt-is-default.patch │ │ │ ├── 950-0704-Revert-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0705-ARM-dts-bcm2711-Add-extra-serial-aliases.patch │ │ │ ├── 950-0706-pinctrl-bcm2835-Workaround-for-edge-IRQ-loss.patch │ │ │ ├── 950-0707-drm-v3d-New-debugfs-end-points-to-query-GPU-usage-st.patch │ │ │ ├── 950-0708-ARM-dts-bcm2711-rpi-ds-Group-the-common-pins.patch │ │ │ ├── 950-0709-ARM-dts-bcm2711-rpi-ds-Set-default-I-O-pins.patch │ │ │ ├── 950-0710-overlays-bcm2711-Remove-I-O-pinctrl-references.patch │ │ │ ├── 950-0711-ARM-dts-bcm27xx-Correct-the-dma-ranges.patch │ │ │ ├── 950-0712-bcm2835-dma-Derive-slave-DMA-addresses-correctly.patch │ │ │ ├── 950-0713-ASoC-bcm2835-i2s-Use-phys-addresses-for-DAI-DMA.patch │ │ │ ├── 950-0714-drm-vc4-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0715-bcm2835-smi-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0716-bcm2835-mmc-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0717-ARM-dts-bcm2709-10-Retain-the-system-timer-node.patch │ │ │ ├── 950-0718-bcm2835-sdhost-Use-DT-to-configure-logging.patch │ │ │ ├── 950-0719-bcm2835-sdhost-Use-phys-addresses-for-slave-DMA-conf.patch │ │ │ ├── 950-0720-mmc-bcm2835-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0721-spi-bcm2835-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0722-ARM-dts-bcm2711-rpi-Add-i2s_dma4.patch │ │ │ ├── 950-0723-fixup-bcm2835-mmc-Really-use-phys-addresses.patch │ │ │ ├── 950-0724-dmaengine-bcm2835-Fix-position-reporting-for-40-bits.patch │ │ │ ├── 950-0725-dmaengine-bcm2835-Use-to_bcm2711_cbaddr-where-releva.patch │ │ │ ├── 950-0726-dmaengine-bcm2835-Fix-descriptors-usage-for-40-bits-.patch │ │ │ ├── 950-0727-bcm2835-dma-Fix-WAIT_RESP-on-memcpy.patch │ │ │ ├── 950-0728-bcm2835-dma-Fix-dma_abort-for-40-bit-channels.patch │ │ │ ├── 950-0729-bcm2835-dma-Fix-dma_abort-for-non-40bit-channels.patch │ │ │ ├── 950-0730-bcm2835-dma-Support-dma-flags-for-multi-beat-burst.patch │ │ │ ├── 950-0731-bcm2835-dma-Need-to-keep-PROT-bits-set-in-CS-on-40bi.patch │ │ │ ├── 950-0732-bcm2711-rpi-ds-Switch-to-dma40-channel-for-hdmi-audi.patch │ │ │ ├── 950-0733-drm-vc4-hdmi-Increase-MAI-fifo-dreq-threshold.patch │ │ │ ├── 950-0734-ARM-dts-bcm2711-rpi-Set-a-1GB-ZONE_DMA-limit.patch │ │ │ ├── 950-0735-ARM-dts-bcm27xx-Add-stdout-path-to-serial0.patch │ │ │ ├── 950-0736-input-edt-ft5x06-Only-read-data-for-number-of-points.patch │ │ │ ├── 950-0737-i2c-bcm2835-Flush-FIFOs-cleanly-on-error.patch │ │ │ ├── 950-0738-i2c-bcm2835-Do-not-abort-transfers-on-ERR-if-still-a.patch │ │ │ ├── 950-0739-i2c-bcm2835-Implement-I2C_M_IGNORE_NAK.patch │ │ │ ├── 950-0740-pps-Compatibility-hack-should-be-X86-specific.patch │ │ │ ├── 950-0741-bcm2835-dma-Fixes-for-dma_abort.patch │ │ │ ├── 950-0742-bcm2835-dma-Move-definition-of-PROT-bits-to-expected.patch │ │ │ ├── 950-0743-drivers-media-imx296-Disable-2x2-binned-mode.patch │ │ │ ├── 950-0744-panel-sitronix-st7701-Fix-panel-prepare-over-SPI.patch │ │ │ ├── 950-0745-media-i2c-imx219-fix-binning-and-rate_factor-for-480.patch │ │ │ ├── 950-0746-serial-sc16is7xx-Read-modem-line-state-at-startup.patch │ │ │ ├── 950-0747-drivers-media-bcm2835_unicam-Improve-frame-sequence-.patch │ │ │ ├── 950-0748-dtoverlays-Fix-pitft-28-35-overlays-for-6.1-driver-c.patch │ │ │ ├── 950-0749-driver-media-i2c-imx477-Re-enable-temperature-sensor.patch │ │ │ ├── 950-0750-overlays-allo-katana-dac-audio-Reduce-I2C-clock.patch │ │ │ ├── 950-0751-overlays-jedec-spi-nor-Add-speed-parameter.patch │ │ │ ├── 950-0752-ALSA-pcm-fix-ELD-constraints-for-E-AC3-DTS-HD-and-ML.patch │ │ │ ├── 950-0753-ASoC-hdmi-codec-fix-channel-info-for-compressed-form.patch │ │ │ ├── 950-0754-media-i2c-arducam_64mp-Modify-the-line-length-of-128.patch │ │ │ ├── 950-0755-media-i2c-arducam_64mp-Add-8000x6000-resolution.patch │ │ │ ├── 950-0756-media-i2c-arducam_64mp-Add-PDAF-support.patch │ │ │ ├── 950-0757-overlays-audremap-Document-CM4-40-41-restriction.patch │ │ │ ├── 950-0758-fixup-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0759-cfg80211-ship-debian-certificates-as-hex-files.patch │ │ │ ├── 950-0761-fixup-drm-panel-Add-prepare_upstream_first-flag-to-d.patch │ │ │ ├── 950-0762-fixup-drm-tc358762-Set-the-pre_enable_upstream_first.patch │ │ │ ├── 950-0764-overlays-Add-trickle-voltage-mv-parameter-to-RTCs.patch │ │ │ ├── 950-0765-drivers-media-imx296-Add-standby-delay-during-probe.patch │ │ │ ├── 950-0766-overlays-Add-bmp380-to-i2c-sensor-overlay.patch │ │ │ ├── 950-0767-can-isotp-add-module-parameter-for-maximum-pdu-size.patch │ │ │ ├── 950-0768-drivers-media-imx296-Updated-imx296-driver-for-exter.patch │ │ │ ├── 950-0769-media-dt-bindings-imx258-Fix-alternate-compatible-st.patch │ │ │ ├── 950-0770-char-broadcom-vc_mem-Fix-preprocessor-conditional.patch │ │ │ ├── 950-0771-drivers-dwc_otg-Fix-fallthrough-warnings.patch │ │ │ ├── 950-0772-vc04_services-vc-sm-cma-Switch-one-bit-bitfields-to-.patch │ │ │ ├── 950-0773-media-i2c-ov2311-Fix-uninitialized-variable-usage.patch │ │ │ ├── 950-0774-drm-panel-Fix-default-values-for-Waveshare-7.9-inch-.patch │ │ │ ├── 950-0775-dtoverlays-Add-i2c-bus-overrides-to-edt-ft5406-overl.patch │ │ │ ├── 950-0776-dtoverlays-Fix-README-text-for-i2c-fan.patch │ │ │ ├── 950-0777-drivers-irqchip-irq-bcm2835-Concurrency-fix.patch │ │ │ ├── 950-0778-dtoverlays-Add-drm-option-to-piscreen-overlay.patch │ │ │ ├── 950-0779-drm-ili9486-Resolve-clash-in-spi_device_id-names.patch │ │ │ ├── 950-0780-input-ads7846-Add-missing-spi_device_id-strings.patch │ │ │ ├── 950-0781-staging-bcm2835-codec-Downgrade-the-level-for-a-debu.patch │ │ │ ├── 950-0782-gpio-fsm-Sort-functions-into-a-more-logical-order.patch │ │ │ ├── 950-0783-gpio_fsm-Rework-the-atomic-vs-non-atomic-split.patch │ │ │ ├── 950-0784-f2fs-fix-to-avoid-NULL-pointer-dereference-in-f2fs_i.patch │ │ │ ├── 950-0785-ASoC-hdmi-codec-Fix-broken-channel-map-reporting.patch │ │ │ ├── 950-0786-Revert-ASoC-cs43130-Fix-numerator-denominator-mixup.patch │ │ │ ├── 950-0787-Revert-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0788-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0789-PCI-brcmstb-Wait-for-100ms-following-PERST-deassert.patch │ │ │ ├── 950-0790-drm-edid-Add-option-to-report-basic-audio-support-wi.patch │ │ │ ├── 950-0791-Revert-drm-edid-Add-option-to-report-basic-audio-sup.patch │ │ │ ├── 950-0792-overlays-Add-a-sample-hat_map.patch │ │ │ ├── 950-0793-Revert-usb-phy-generic-Get-the-vbus-supply.patch │ │ │ ├── 950-0794-dts-2712-Update-for-device-tree.patch │ │ │ ├── 950-0795-bcm2708_fb-Hack-out-dma-support.patch │ │ │ ├── 950-0796-gpio_brcmstb-Allow-to-build-for-ARCH_BCM2835.patch │ │ │ ├── 950-0797-Allow-RESET_BRCMSTB-on-ARCH_BCM2835.patch │ │ │ ├── 950-0798-pinctrl-bcm2712-pinctrl-pinconf-driver.patch │ │ │ ├── 950-0799-vc4-fkms-Remove-use-of-SMI-peripheral.patch │ │ │ ├── 950-0800-mmc-brcmstb-add-support-for-BCM2712.patch │ │ │ ├── 950-0801-sdhci-Add-SD-Express-hook.patch │ │ │ ├── 950-0802-Add-new-pispbe-driver-though-not-yet-the-Makesfiles-.patch │ │ │ ├── 950-0803-irqchip-irq-bcm2712-mip-Support-for-2712-s-MIP.patch │ │ │ ├── 950-0804-reset-reset-brcmstb-rescal-Support-shared-use.patch │ │ │ ├── 950-0805-net-macb-Also-set-DMA-coherent-mask.patch │ │ │ ├── 950-0807-drm-panel-raspberrypi-touchscreen-Insert-more-delays.patch │ │ │ ├── 950-0808-PCI-brcmstb-Add-BCM2712-support.patch │ │ │ ├── 950-0809-V4L2-Add-PiSP-opaque-formats-to-V4L2.patch │ │ │ ├── 950-0810-V4L2-Add-PiSP-compressed-formats-to-V4L2.patch │ │ │ ├── 950-0811-bcm2708_fb-Fix-more-build-warnings.patch │ │ │ ├── 950-0812-dt-binding-mfd-Add-binding-for-Raspberry-Pi-RP1.patch │ │ │ ├── 950-0813-mfd-Add-rp1-driver.patch │ │ │ ├── 950-0814-dt-bindings-clock-Add-bindings-for-Raspberry-Pi-RP1.patch │ │ │ ├── 950-0815-clk-Add-rp1-clock-driver.patch │ │ │ ├── 950-0816-dt-bindings-pinctrl-Add-bindings-for-Raspberry-Pi-RP.patch │ │ │ ├── 950-0817-pinctrl-Add-rp1-driver.patch │ │ │ ├── 950-0818-serial-pl011-rp1-uart-support.patch │ │ │ ├── 950-0819-mmc-sdhci-of-dwcmshc-define-sdio-timeout-clocks.patch │ │ │ ├── 950-0820-mmc-sdhci-of-dwcmshc-rp1-sdio-changes.patch │ │ │ ├── 950-0821-clk-rp1-Add-sdio-clk-driver.patch │ │ │ ├── 950-0822-i2c-designware-Add-SMBUS-quick-command-support.patch │ │ │ ├── 950-0823-dmaengine-dw-axi-dmac-Fixes-for-RP1.patch │ │ │ ├── 950-0824-spi-dw-Handle-combined-tx-and-rx-messages.patch │ │ │ ├── 950-0825-pwm-Add-support-for-RP1-PWM.patch │ │ │ ├── 950-0826-drm-Add-RP1-DSI-driver.patch │ │ │ ├── 950-0827-drm-Add-RP1-DPI-driver.patch │ │ │ ├── 950-0828-drm-Add-RP1-VEC-driver.patch │ │ │ ├── 950-0829-v4l2-Add-pisp-compression-format-support-to-v4l2.patch │ │ │ ├── 950-0830-media-rp1-Add-CFE-Camera-Front-End-support.patch │ │ │ ├── 950-0831-dt-bindings-net-cdns-macb-AXI-tuning-properties.patch │ │ │ ├── 950-0832-ASoC-dwc-list-all-supported-sample-sizes.patch │ │ │ ├── 950-0833-ASoC-dwc-Support-set_bclk_ratio.patch │ │ │ ├── 950-0834-ASoC-dwc-Add-DMACR-handling.patch │ │ │ ├── 950-0835-ASOC-dwc-Improve-DMA-shutdown.patch │ │ │ ├── 950-0836-ASOC-dwc-Fix-16-bit-audio-handling.patch │ │ │ ├── 950-0838-hwmon-Add-RP1-ADC-and-temperature-driver.patch │ │ │ ├── 950-0839-mfd-bcm2835-pm-Add-support-for-BCM2712.patch │ │ │ ├── 950-0840-soc-bcm-bcm2835-power-Add-support-for-BCM2712.patch │ │ │ ├── 950-0841-drivers-spi-Fix-spi-gpio-to-correctly-implement-sck-.patch │ │ │ ├── 950-0842-spi-spi-gpio-Implement-spidelay-when-requested-bit-r.patch │ │ │ ├── 950-0843-drm-v3d-fix-up-register-addresses-for-V3D-7.x.patch │ │ │ ├── 950-0844-drm-v3d-update-UAPI-to-match-user-space-for-V3D-7.x.patch │ │ │ ├── 950-0845-drm-v3d-add-brcm-2712-v3d-as-a-compatible-V3D-device.patch │ │ │ ├── 950-0846-drm-v3d-Improve-MMU-support-for-larger-pages.patch │ │ │ ├── 950-0847-dt-bindings-gpu-v3d-Add-BCM2712-to-compatibility-lis.patch │ │ │ ├── 950-0848-drivers-char-add-generic-gpiomem-driver.patch │ │ │ ├── 950-0849-drivers-char-delete-bcm2835-gpiomem.patch │ │ │ ├── 950-0850-drivers-hwmon-rp1-adc-check-conversion-validity-befo.patch │ │ │ ├── 950-0851-dmaengine-bcm2835-Add-BCM2712-support.patch │ │ │ ├── 950-0852-dmaengine-bcm2835-HACK-Support-DMA-Lite-channels.patch │ │ │ ├── 950-0853-clk-bcm-rpi-Add-disp-clock.patch │ │ │ ├── 950-0854-net-phy-broadcom-optionally-enable-link-down-powersa.patch │ │ │ ├── 950-0855-dmaengine-bcm2835-Rename-to_bcm2711_cbaddr-to-to_40b.patch │ │ │ ├── 950-0856-dmaengine-bcm2835-Fix-dma-driver-for-BCM2835-38.patch │ │ │ ├── 950-0857-drivers-iommu-Add-BCM2712-IOMMU.patch │ │ │ ├── 950-0858-irqchip-irq-brcmstb-l2-Add-config-for-2711-controlle.patch │ │ │ ├── 950-0859-rtc-rtc-rpi-Add-simple-RTC-driver-for-Raspberry-Pi.patch │ │ │ ├── 950-0860-dt-bindings-rtc-new-binding-for-Raspberry-Pi-RTC-dri.patch │ │ │ ├── 950-0861-hwmon-pwm-fan-Add-fan-speed-register-support.patch │ │ │ ├── 950-0863-dt-bindings-input-Add-bindings-for-raspberrypi-butto.patch │ │ │ ├── 950-0864-dt-bindings-input-Add-bindings-for-raspberrypi-butto.patch │ │ │ ├── 950-0865-Input-Add-raspberrypi-button-firmware-driver.patch │ │ │ ├── 950-0866-dt-bindings-update-rpi-rtc-binding.patch │ │ │ ├── 950-0867-drivers-rtc-rpi-add-battery-charge-circuit-control-a.patch │ │ │ ├── 950-0868-vc4_drv-Avoid-panic-when-booted-with-no-kms.patch │ │ │ ├── 950-0869-drm-vc4-Treat-zero-sized-destination-as-full-screen.patch │ │ │ ├── 950-0870-drm-vc4-Fix-FKMS-for-when-the-YUV-chroma-planes-are-.patch │ │ │ ├── 950-0871-drm-vc4-hdmi-Enable-the-audio-clock.patch │ │ │ ├── 950-0872-drm-vc4-hdmi-Warn-if-writing-to-an-unknown-HDMI-regi.patch │ │ │ ├── 950-0873-drm-vc4-hvs-More-logging-for-dlist-generation.patch │ │ │ ├── 950-0874-drm-vc4-hvs-Print-error-if-we-fail-an-allocation.patch │ │ │ ├── 950-0875-drm-vc4-plane-Add-more-debugging-for-LBM-allocation.patch │ │ │ ├── 950-0876-drm-vc4-plane-Use-return-variable-in-atomic_check.patch │ │ │ ├── 950-0877-drm-vc4-crtc-Move-assigned_channel-to-a-variable.patch │ │ │ ├── 950-0878-drm-vc4-Introduce-generation-number-enum.patch │ │ │ ├── 950-0879-drm-vc4-Make-v3d-paths-unavailable-on-any-generation.patch │ │ │ ├── 950-0880-drm-vc4-hvs-Use-switch-statement-to-simplify-vc4_hvs.patch │ │ │ ├── 950-0881-drm-vc4-hvs-Use-switch-statement-to-simplify-enablin.patch │ │ │ ├── 950-0882-drm-vc4-hvs-Test-if-the-EOF-interrupts-are-enabled.patch │ │ │ ├── 950-0883-drm-vc4-hvs-Create-hw_init-function.patch │ │ │ ├── 950-0884-drm-vc4-hvs-Create-cob_init-function.patch │ │ │ ├── 950-0885-drm-vc4-hvs-Rename-hvs_regs-list.patch │ │ │ ├── 950-0886-drm-vc4-plane-Change-ptr0_offset-to-an-array.patch │ │ │ ├── 950-0887-drm-vc4-hvs-Rework-LBM-alignment.patch │ │ │ ├── 950-0888-drm-vc4-hvs-Change-prototype-of-__vc4_hvs_alloc-to-p.patch │ │ │ ├── 950-0889-drm-vc4-UV-planes-vertical-scaling-must-always-be-en.patch │ │ │ ├── 950-0890-drm-vc4-hdmi-Avoid-hang-with-debug-registers-when-su.patch │ │ │ ├── 950-0891-drm-vc4-Move-the-buffer-offset-out-of-the-vc4_plane_.patch │ │ │ ├── 950-0892-drm-vc4-Fix-dlist-debug-not-resetting-the-next-entry.patch │ │ │ ├── 950-0893-drm-vc4-Remove-incorrect-limit-from-hvs_dlist-debugf.patch │ │ │ ├── 950-0894-drm-vc4-hvs-Remove-ABORT_ON_EMPTY-flag.patch │ │ │ ├── 950-0895-drm-vc4-Enable-SCALER_CONTROL-early-in-HVS-init.patch │ │ │ ├── 950-0896-dt-bindings-display-Add-BCM2712-HDMI-bindings.patch │ │ │ ├── 950-0897-dt-bindings-display-Add-BCM2712-HVS-bindings.patch │ │ │ ├── 950-0898-dt-bindings-display-Add-BCM2712-PixelValve-bindings.patch │ │ │ ├── 950-0899-dt-bindings-display-Add-BCM2712-MOP-bindings.patch │ │ │ ├── 950-0900-dt-bindings-display-Add-BCM2712-MOPLET-bindings.patch │ │ │ ├── 950-0901-dt-bindings-display-Add-BCM2712-KMS-driver-bindings.patch │ │ │ ├── 950-0902-drm-vc4-drv-Support-BCM2712.patch │ │ │ ├── 950-0903-drm-vc4-hvs-Support-BCM2712-HVS.patch │ │ │ ├── 950-0904-drm-vc4-crtc-Add-support-for-BCM2712-PixelValves.patch │ │ │ ├── 950-0905-drm-vc4-hdmi-Add-support-for-BCM2712-HDMI-controller.patch │ │ │ ├── 950-0906-drm-vc4-txp-Introduce-structure-to-deal-with-revisio.patch │ │ │ ├── 950-0907-drm-vc4-txp-Rename-TXP-data-structure.patch │ │ │ ├── 950-0908-drm-vc4-txp-Add-byte-enable-toggle-bit.patch │ │ │ ├── 950-0909-drm-vc4-txp-Add-horizontal-and-vertical-size-offset-.patch │ │ │ ├── 950-0910-drm-vc4-txp-Handle-40-bits-DMA-Addresses.patch │ │ │ ├── 950-0911-drm-vc4-txp-Move-the-encoder-type-in-the-variant-str.patch │ │ │ ├── 950-0912-drm-vc4-txp-Add-a-new-TXP-encoder-type.patch │ │ │ ├── 950-0913-drm-vc4-txp-Add-support-for-BCM2712-MOP.patch │ │ │ ├── 950-0914-drm-vc4-txp-Add-BCM2712-MOPLET-support.patch │ │ │ ├── 950-0915-drm-vc4-Add-additional-warn_on.patch │ │ │ ├── 950-0916-drm-vc4-tests-Switch-generation-mockup-to-a-switch.patch │ │ │ ├── 950-0917-drm-vc4-tests-Drop-drm-parameter-for-vc4_find_crtc_f.patch │ │ │ ├── 950-0918-drm-vc4-tests-Return-the-allocated-output.patch │ │ │ ├── 950-0919-drm-vc4-tests-Add-BCM2712-mock-driver.patch │ │ │ ├── 950-0920-drm-vc4-tests-Add-tests-for-BCM2712-PixelValve-Muxin.patch │ │ │ ├── 950-0921-drm-vc4-fkms-Rename-plane-related-functions.patch │ │ │ ├── 950-0922-drm-vc4-tests-Use-custom-plane-state-for-mock.patch │ │ │ ├── 950-0923-drm-vc4-tests-Add-function-to-lookup-a-plane-for-a-C.patch │ │ │ ├── 950-0924-drm-vc4-tests-Add-helper-to-add-a-new-plane-to-a-sta.patch │ │ │ ├── 950-0925-drm-vc4-tests-Support-a-few-more-plane-formats.patch │ │ │ ├── 950-0926-drm-vc4-tests-Introduce-a-test-for-LBM-buffer-size.patch │ │ │ ├── 950-0927-drm-vc4-kms-Avoid-setting-core-and-disp-clocks-for-h.patch │ │ │ ├── 950-0928-drm-vc4-Assign-LBM-memory-during-atomic_flush.patch │ │ │ ├── 950-0929-drm-panel-simple-Alter-the-timing-for-the-Pi-7-DSI-d.patch │ │ │ ├── 950-0930-drm-panel-waveshare-Fix-up-timings-for-10.1-panel.patch │ │ │ ├── 950-0931-media-i2c-imx477-Fix-locking-in-imx477_init_controls.patch │ │ │ ├── 950-0932-overlays-Fix-vc4-kms-dsi-7inch.patch │ │ │ ├── 950-0933-Revert-ASoC-hdmi-codec-Fix-broken-channel-map-report.patch │ │ │ ├── 950-0934-ASoC-hdmi-codec-Fix-broken-channel-map-reporting.patch │ │ │ ├── 950-0935-media-rp1-cfe-Fix-use-of-freed-memory-on-errors.patch │ │ │ ├── 950-0936-media-rp1-cfe-Fix-width-height-in-cfe_start_channel.patch │ │ │ ├── 950-0937-media-rp1-csi2-Fix-missing-reg-writes.patch │ │ │ ├── 950-0938-media-rp1-fe-Use-0-not-1-when-working-with-unsigned-.patch │ │ │ ├── 950-0939-media-rp1-cfe-Fix-verbose-debug-print.patch │ │ │ ├── 950-0940-media-rp1-cfe-Rename-xxx_dbg_irq-to-xxx_dbg_verbose.patch │ │ │ ├── 950-0941-media-rp1-Add-back-reg-write-debug-prints.patch │ │ │ ├── 950-0942-media-rp1-cfe-Add-verbose-debug-module-parameter.patch │ │ │ ├── 950-0943-media-rp1-csi2-Track-CSI-2-errors.patch │ │ │ ├── 950-0944-media-rp1-cfe-Drop-unused-field.patch │ │ │ ├── 950-0945-media-rp1-csi2-Set-values-for-enum-csi2_mode.patch │ │ │ ├── 950-0946-media-rp1-fe-Fix-default-mbus-code.patch │ │ │ ├── 950-0947-media-rp1-cfe-Fix-default-meta-format-s-field.patch │ │ │ ├── 950-0948-media-rp1-cfe-Fail-streaming-if-FE_CONFIG-node-is-no.patch │ │ │ ├── 950-0949-media-i2c-Move-Kconfig-entry-for-IMX477-to-the-camer.patch │ │ │ ├── 950-0950-drm-Look-for-an-alias-for-the-displays-to-use-as-the.patch │ │ │ ├── 950-0951-dt-Add-DSI1-and-DSI2-aliases-to-2712.patch │ │ │ ├── 950-0952-vc4-drm-Remove-the-clear-of-SCALER_DISPBKGND_FILL.patch │ │ │ ├── 950-0953-gpio-brcmstb-Use-dynamic-GPIO-base-numbers.patch │ │ │ ├── 950-0954-media-rpivid-Allow-use-of-iommu-in-rpivid.patch │ │ │ ├── 950-0955-dts-bcm2712-Add-iommu-to-rpivid.patch │ │ │ ├── 950-0956-drivers-media-rp1_cfe-Remove-PISP-specific-MBUS-form.patch │ │ │ ├── 950-0957-vc04_services-bcm2835-codec-Correct-alignment-requir.patch │ │ │ ├── 950-0958-input-touchscreen-edt-ft5x06-Suppress-bogus-data-on-.patch │ │ │ ├── 950-0959-Revert-bcm2708_fb-Fix-more-build-warnings.patch │ │ │ ├── 950-0960-Revert-bcm2708_fb-Hack-out-dma-support.patch │ │ │ ├── 950-0961-overlays-mcp23017-allow-specification-of-the-i2c-bus.patch │ │ │ ├── 950-0962-dts-bcm2712-Set-default-I2C-baudrates-to-100kHz.patch │ │ │ ├── 950-0963-vc_mem-Add-the-DMA-memcpy-support-from-bcm2708_fb.patch │ │ │ ├── 950-0964-drm-vc4-Correct-address-offset-for-planes-with-src_-.patch │ │ │ ├── 950-0965-drivers-media-rp1_cfe-Fix-link-validate-test-for-pix.patch │ │ │ ├── 950-0966-dts-bcm2712-Use-the-new-model-name.patch │ │ │ ├── 950-0967-fbdev-Allow-client-to-request-a-particular-dev-fbN-n.patch │ │ │ ├── 950-0968-drm-fb-helper-Look-up-preferred-fbdev-node-number-fr.patch │ │ │ ├── 950-0969-dt-Add-overrides-for-drm-framebuffer-allocations-on-.patch │ │ │ ├── 950-0970-overlays-Add-Pi-5-version-of-dwc2.patch │ │ │ ├── 950-0971-drm-connector-Change-DRM-card-alias-from-underscore-.patch │ │ │ ├── 950-0972-dt-Alter-alias-names-from-_-to-for-drm_dsiN.patch │ │ │ ├── 950-0973-drm-fb_helper-Change-query-for-FB-designation-from-d.patch │ │ │ ├── 950-0974-dt-Alter-alias-names-from-_-to-for-drm_fbN_-override.patch │ │ │ ├── 950-0975-fixup-overlays-Add-Pi-5-version-of-dwc2.patch │ │ │ ├── 950-0976-Typo-in-overlays-README.patch │ │ │ ├── 950-0977-dts-bcm2712-Add-the-krnbt-parameter.patch │ │ │ ├── 950-0978-Revert-vc4-fkms-Remove-use-of-SMI-peripheral.patch │ │ │ ├── 950-0979-drm-vc4_fkms-Fix-up-interrupt-handler-for-both-2835-.patch │ │ │ ├── 950-0980-dt-Switch-bcm2712-firmware-kms-node-to-using-the-271.patch │ │ │ ├── 950-0981-drivers-media-imx477-Disable-the-scaler.patch │ │ │ ├── 950-0982-dt-Add-drm_fbN_vc4-overrides-for-Pi0-4.patch │ │ │ ├── 950-0983-fixup-overlays-mcp23017-allow-specification-of-the-i.patch │ │ │ ├── 950-0984-drivers-media-pisp_be-Add-back-V4L2_PIX_FMT_RPI_BE-f.patch │ │ │ ├── 950-0985-dt-bindings-PCI-brcmstb-add-optional-property-brcm-t.patch │ │ │ ├── 950-0986-drivers-pci-brcmstb-optionally-extend-Tperst_clk-tim.patch │ │ │ ├── 950-0987-arm-dt-add-dtparams-for-PCIe-reset-timing-override.patch │ │ │ ├── 950-0988-arm-dt-bcm2712-don-t-unconditionally-enable-MPS-read.patch │ │ │ ├── 950-0989-drivers-media-imx477-Set-horizontal-binning-when-dis.patch │ │ │ ├── 950-0990-fixup-arch-arm64-Add-Revision-Serial-Model-to-cpuinf.patch │ │ │ ├── 950-0991-Revert-brcmfmac-Read-alternative-firmware-names-from.patch │ │ │ ├── 950-0992-dts-bcm2710-rpi-zero-2-w-Remove-WLAN-firmwares.patch │ │ │ ├── 950-0993-drivers-media-cfe-Set-the-CSI-2-link-frequency-corre.patch │ │ │ ├── 950-0994-dts-bcm2712-rpi-5-b-Create-some-dummy-nodes.patch │ │ │ ├── 950-0995-dts-rp1-Add-spi6-fix-spi1-address-cells.patch │ │ │ ├── 950-0996-overlays-uart-n-pi5-Add-the-pinctrl-0-property.patch │ │ │ ├── 950-0997-drivers-media-imx477-Add-V4L2_CID_LINK_FREQ-control.patch │ │ │ ├── 950-0998-drivers-media-imx477-Correctly-set-IMX477_PIXEL_RATE.patch │ │ │ ├── 950-0999-drm-vc4-Correct-logic-on-stopping-an-HVS-channel.patch │ │ │ ├── 950-1000-drm-vc4-Drop-WARN-for-HVS-FIFOs-not-being-empty.patch │ │ │ ├── 950-1001-drm-vc4-Free-all-stale-dlists-if-channel-is-disabled.patch │ │ │ ├── 950-1002-drm-vc4-Add-hvs_dlist_allocs-debugfs-function.patch │ │ │ ├── 950-1003-drm-vc4-Log-the-size-of-the-dlist-allocation-that-wa.patch │ │ │ ├── 950-1004-drm-vc4-crtc-Support-odd-horizontal-timings-on-BCM27.patch │ │ │ ├── 950-1005-spi-dw-dma-Get-the-last-DMA-scoop-out-of-the-FIFO.patch │ │ │ ├── 950-1006-drivers-mmc-sdhci-add-SPURIOUS_INT_RESP-quirk.patch │ │ │ ├── 950-1007-dt-bindings-mmc-sdhci-of-dwcmhsc-Add-Raspberry-Pi-RP.patch │ │ │ ├── 950-1008-drivers-mmc-sdhci-of-dwcmshc-add-RP1-dt-ID-and-quirk.patch │ │ │ ├── 950-1009-arm-dts-change-RP1-SDHCI-controller-compatible-strin.patch │ │ │ ├── 950-1011-drivers-media-imx708-Adjust-broken-line-correction-p.patch │ │ │ └── 960-hwrng-iproc-set-quality-to-1000.patch │ │ ├── generic │ │ ├── backport-6.1 │ │ │ ├── 100-net-add-netdev_sw_irq_coalesce_default_on.patch │ │ │ ├── 101-net-Remove-the-obsolte-u64_stats_fetch_-_irq-users-d.patch │ │ │ ├── 102-drivers-net-convert-to-boolean-for-the-mac_managed_p.patch │ │ │ └── 104-r8169-enable-GRO-software-interrupt-coalescing-per-d.patch │ │ ├── config-6.1 │ │ ├── config-6.1.old │ │ ├── files │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ └── swconfig_leds.c │ │ └── hack-6.1 │ │ │ ├── 997-BBRv3.patch │ │ │ ├── 998-ndpi-hook.patch │ │ │ └── 999-BBRv1.patch │ │ ├── ipq40xx │ │ ├── base-files │ │ │ ├── bin │ │ │ │ ├── board_detect │ │ │ │ ├── board_modem │ │ │ │ ├── board_track │ │ │ │ ├── config_generate │ │ │ │ └── ipcalc.sh │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 1-board_json │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 09_fix_wifi_mac │ │ │ │ ├── init.d │ │ │ │ │ ├── boot │ │ │ │ │ ├── done │ │ │ │ │ ├── gpio_switch │ │ │ │ │ ├── led │ │ │ │ │ ├── modem_tracker │ │ │ │ │ ├── ntpserver │ │ │ │ │ ├── powerctl │ │ │ │ │ ├── sysctl │ │ │ │ │ ├── sysfixtime │ │ │ │ │ ├── system │ │ │ │ │ └── umount │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_mnf-info │ │ │ │ │ └── 04_migrate-vlan │ │ │ ├── lib │ │ │ │ ├── functions │ │ │ │ │ ├── board.sh │ │ │ │ │ ├── teltonika-defaults.sh │ │ │ │ │ └── teltonika-functions.sh │ │ │ │ ├── preinit │ │ │ │ │ └── 82_modem_power │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── sbin │ │ │ │ ├── mctl │ │ │ │ └── mnf_info │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── art │ │ │ │ └── art_rutx.bin │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq4018-rutx-shiftreg.dtsi │ │ │ │ ├── qcom-ipq4018-rutx-stm32.dtsi │ │ │ │ ├── qcom-ipq4018-rutx.dtsi │ │ │ │ ├── qcom-ipq4018-rutx10.dts │ │ │ │ ├── qcom-ipq4018-rutx10_STM32.dts │ │ │ │ ├── qcom-ipq4018-rutx12.dts │ │ │ │ └── qcom-ipq4018-rutx12_STM32.dts │ │ └── image │ │ │ └── generic.mk │ │ ├── mediatek │ │ ├── dts │ │ │ ├── mt7981b-zbt-z8102ax-128m.dts │ │ │ ├── mt7981b-zbt-z8102ax-64m.dts │ │ │ └── mt7981b-zbt-z8102ax.dtsi │ │ ├── filogic │ │ │ └── base-files │ │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ ├── 01_leds │ │ │ │ └── 03_gpio_switches │ │ │ │ └── hotplug.d │ │ │ │ └── ieee80211 │ │ │ │ └── 11_fix_wifi_mac │ │ ├── image │ │ │ └── filogic.mk │ │ └── patches-6.1 │ │ │ ├── 961-net-ethernet-mediatek-split-tx-and-rx-fields-in-mtk_.patch │ │ │ └── 962-net-ethernet-mediatek-use-QDMA-instead-of-ADMAv2-on-.patch │ │ ├── qualcommax │ │ └── patches-6.1 │ │ │ ├── 0170-clk-qcom-ipq8074-Support-added-for-necessary-clocks-and-reset.patch │ │ │ ├── 0171-1-clk-qcom-ipq8074-Fix-gcc_snoc_bus_timeout_ahb_clk-offset.patch │ │ │ ├── 0171-2-clk-qcom-ipq8074-Fix-gcc_blsp1_ahb_clk-properties.patch │ │ │ ├── 0600-1-qca-nss-ecm-support-CORE.patch │ │ │ ├── 0600-2-qca-nss-ecm-support-PPPOE-offload.patch │ │ │ ├── 0600-3-qca-nss-ecm-support-net-bonding.patch │ │ │ ├── 0600-4-qca-nss-ecm-support-net-bonding-over-LAG-interface.patch │ │ │ ├── 0600-5-qca-nss-ecm-support-macvlan.patch │ │ │ ├── 0600-7-qca-nss-ecm-fix-IPv6-user-route-change-event-calls.patch │ │ │ ├── 0601-1-qca-add-nss-bridge-mgr-support.patch │ │ │ ├── 0602-1-qca-nss-drv-add-qdisc-support.patch │ │ │ ├── 0603-1-qca-nss-clients-add-qdisc-support.patch │ │ │ ├── 0603-2-qca-nss-clients-add-l2tp-support.patch │ │ │ ├── 0603-3-qca-nss-clients-add-PPTP-support.patch │ │ │ ├── 0603-4-qca-nss-clients-add-iptunnel-support.patch │ │ │ ├── 0603-5-qca-nss-clients-add-vxlan-support.patch │ │ │ ├── 0603-6-qca-nss-clients-add-l2tp-offloading-support.patch │ │ │ ├── 0603-7-qca-nss-clients-iptunnel-lock-this-cpu.patch │ │ │ ├── 0603-8-qca-nss-clients-add-tls-mgr-support.patch │ │ │ ├── 0604-1-qca-add-mcs-support.patch │ │ │ ├── 0605-1-qca-nss-cfi-support.patch │ │ │ ├── 0611-ipv6-Fix-null-pointer-dereference-in-ipv6-output.patch │ │ │ ├── 0905-ipq8074-add-blsp1-i2c4.patch │ │ │ └── 9999-silence-UBI-NAND-warnings.patch │ │ ├── ramips │ │ ├── mt7621 │ │ │ └── config-6.1 │ │ └── patches-6.1 │ │ │ ├── 110-reset_controller_driver.patch │ │ │ ├── 200-add-ralink-eth.patch │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ ├── 311-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ ├── 312-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ ├── 314-MIPS-add-bootargs-override-property.patch │ │ │ ├── 315-owrt-hack-fix-mt7688-cache-issue.patch │ │ │ ├── 316-arch-mips-do-not-select-illegal-access-driver-by-def.patch │ │ │ ├── 324-mt7621-perfctr-fix.patch │ │ │ ├── 400-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ ├── 411-dt-bindings-add-documentation-for-mt7621-nand-driver.patch │ │ │ ├── 700-net-ethernet-mediatek-support-net-labels.patch │ │ │ ├── 720-Revert-net-phy-simplify-phy_link_change-arguments.patch │ │ │ ├── 721-NET-no-auto-carrier-off-support.patch │ │ │ ├── 801-DT-Add-documentation-for-gpio-ralink.patch │ │ │ ├── 802-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ ├── 803-gpio-ralink-Add-support-for-GPIO-as-interrupt-contro.patch │ │ │ ├── 810-uvc-add-iPassion-iP2970-support.patch │ │ │ ├── 820-DT-Add-documentation-for-spi-rt2880.patch │ │ │ ├── 821-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ ├── 835-asoc-add-mt7620-support.patch │ │ │ ├── 840-serial-add-ugly-custom-baud-rate-hack.patch │ │ │ ├── 845-pwm-add-mediatek-support.patch │ │ │ ├── 850-awake-rt305x-dwc2-controller.patch │ │ │ └── 855-linkit_bootstrap.patch │ │ └── x86 │ │ ├── 64 │ │ └── config-6.1 │ │ ├── config-6.1 │ │ ├── generic │ │ └── config-6.1 │ │ ├── geode │ │ └── config-6.1 │ │ ├── legacy │ │ └── config-6.1 │ │ └── patches-6.1 │ │ ├── 100-fix_cs5535_clockevt.patch │ │ ├── 992-enable-intel-guc.patch │ │ ├── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ └── 996-intel-igc-i225-i226-disable-eee.patch └── toolchain │ └── kernel-headers │ └── Makefile ├── 6.10 ├── include │ ├── kernel-6.10 │ └── kernel-defaults.mk ├── package │ ├── boot │ │ ├── uboot-envtools │ │ │ └── files │ │ │ │ └── mediatek_filogic │ │ └── uboot-mediatek │ │ │ └── patches │ │ │ └── 900-add-z8102ax.patch │ ├── kernel │ │ ├── linux │ │ │ └── modules │ │ │ │ ├── fs.mk │ │ │ │ └── video.mk │ │ └── mac80211 │ │ │ └── patches │ │ │ ├── ath10k │ │ │ └── 999-ath10k-napi_reschedule-to-napi_schedule.patch │ │ │ ├── brcm │ │ │ ├── 999-brcmfmac-remove-drvwrap.patch │ │ │ └── 999-brcmfmac-remove-node.patch │ │ │ ├── build │ │ │ ├── 999-fix-compilation.patch │ │ │ └── 999-intel-fix.patch │ │ │ └── rt2x00 │ │ │ └── 999-rt2x00-fix-compilation.patch │ ├── libs │ │ ├── libnftnl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 999-01-libnftnl-add-fullcone-expression-support.patch │ │ └── mbedtls │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 100-x509-crt-verify-SAN-iPAddress.patch │ │ │ └── 101-remove-test.patch │ └── network │ │ ├── config │ │ └── firewall4 │ │ │ └── patches │ │ │ ├── 990-unconditionally-allow-ct-status-dnat.patch │ │ │ ├── 999-01-firewall4-add-fullcone-support.patch │ │ │ └── 999-10-forward-rules-in-prerouting.patch │ │ ├── services │ │ └── dnsmasq │ │ │ └── files │ │ │ └── dnsmasq.init │ │ └── utils │ │ ├── iwinfo │ │ └── Makefile │ │ └── nftables │ │ ├── Makefile │ │ └── patches │ │ └── 002-nftables-add-fullcone-expression-support.patch ├── target │ └── linux │ │ ├── generic │ │ ├── config-6.10 │ │ ├── hack-6.10 │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-kconfig-abort-configuration-on-unset-symbol.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-darwin-uuid-typedef-clash.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-arm-gc_sections.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-kconfig.patch │ │ │ ├── 253-ksmbd-config.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 261-lib-arc4-unhide.patch │ │ │ ├── 280-rfkill-stubs.patch │ │ │ ├── 300-MIPS-r4k_cache-use-more-efficient-cache-blast.patch │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.patch │ │ │ ├── 421-drivers-mtd-parsers-add-nvmem-support-to-cmdlinepart.patch │ │ │ ├── 430-mtk-bmt-support.patch │ │ │ ├── 600-net-enable-fraglist-GRO-by-default.patch │ │ │ ├── 645-netfilter-connmark-introduce-set-dscpmark.patch │ │ │ ├── 650-netfilter-add-xt_FLOWOFFLOAD-target.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-kernel-ct-size-the-hashtable-more-adequately.patch │ │ │ ├── 711-net-dsa-mv88e6xxx-disable-ATU-violation.patch │ │ │ ├── 722-net-phy-aquantia-enable-AQR112-and-AQR412.patch │ │ │ ├── 723-net-phy-aquantia-fix-system-side-protocol-mi.patch │ │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 766-net-phy-mediatek-ge-add-LED-configuration-interface.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ ├── 781-usb-net-rndis-support-asr.patch │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ ├── 920-device_tree_cmdline.patch │ │ │ └── 998-ndpi-hook.patch │ │ └── pending-6.10 │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-kbuild-export-SUBARCH.patch │ │ │ ├── 111-watchdog-max63xx_wdt-Add-support-for-specifying-WDI-.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 141-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 142-jffs2-add-splice-ops.patch │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 151-net-bridge-do-not-send-arp-replies-if-src-and-target.patch │ │ │ ├── 190-rtc-rs5c372-support_alarms_up_to_1_week.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-MIPS-Add-barriers-between-dcache-icache-flushes.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 308-mips32r2_tune.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 332-arc-add-OWRTDTB-section.patch │ │ │ ├── 333-arc-enable-unaligned-access-in-kernel-mode.patch │ │ │ ├── 342-powerpc-Enable-kernel-XZ-compression-option-on-PPC_8.patch │ │ │ ├── 350-mips-kernel-fix-detect_memory_region-function.patch │ │ │ ├── 360-selftests-bpf-portability-of-unprivileged-tests.patch │ │ │ ├── 400-mtd-mtdsplit-support.patch │ │ │ ├── 401-mtd-don-t-register-NVMEM-devices-for-partitions-with.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 435-mtd-add-routerbootpart-parser-config.patch │ │ │ ├── 450-dt-bindings-block-add-basic-bindings-for-block-devic.patch │ │ │ ├── 452-block-add-support-for-notifications.patch │ │ │ ├── 453-block-add-new-genhd-flag-GENHD_FL_NVMEM.patch │ │ │ ├── 454-nvmem-implement-block-NVMEM-provider.patch │ │ │ ├── 455-dt-bindings-mmc-mmc-card-add-block-device-nodes.patch │ │ │ ├── 456-mmc-core-set-card-fwnode_handle.patch │ │ │ ├── 457-mmc-block-set-fwnode-of-disk-devices.patch │ │ │ ├── 458-mmc-block-set-GENHD_FL_NVMEM.patch │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 465-m25p80-mx-disable-software-protection.patch │ │ │ ├── 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 │ │ │ ├── 496-dt-bindings-add-bindings-for-mtd-concat-devices.patch │ │ │ ├── 497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch │ │ │ ├── 499-mtd-spi-nor-disable-16-bit-sr-for-macronix.patch │ │ │ ├── 500-fs_cdrom_dependencies.patch │ │ │ ├── 510-block-add-uImage.FIT-subimage-block-driver.patch │ │ │ ├── 511-init-bypass-device-lookup-for-dev-fit-rootfs.patch │ │ │ ├── 532-jffs2_eofdetect.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 │ │ │ ├── 620-net_sched-codel-do-not-defer-queue-length-update.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 683-of_net-add-mac-address-to-of-tree.patch │ │ │ ├── 700-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 701-netfilter-nf_tables-ignore-EOPNOTSUPP-on-flowtable-d.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ ├── 711-01-net-dsa-qca8k-implement-lag_fdb_add-del-ops.patch │ │ │ ├── 711-02-net-dsa-qca8k-enable-flooding-to-both-CPU-port.patch │ │ │ ├── 712-net-dsa-qca8k-enable-assisted-learning-on-CPU-port.patch │ │ │ ├── 713-03-arm64-dts-qcom-ipq8074-add-clock-frequency-to-MDIO-n.patch │ │ │ ├── 721-net-phy-realtek-rtl8221-allow-to-configure-SERDES-mo.patch │ │ │ ├── 724-net-phy-realtek-use-genphy_soft_reset-for-2.5G-PHYs.patch │ │ │ ├── 725-net-phy-realtek-disable-SGMII-in-band-AN-for-2-5G-PHYs.patch │ │ │ ├── 726-net-phy-realtek-make-sure-paged-read-is-protected-by.patch │ │ │ ├── 731-net-permit-ieee80211_ptr-even-with-no-CFG82111-suppo.patch │ │ │ ├── 732-00-net-ethernet-mtk_eth_soc-compile-out-netsys-v2-code-.patch │ │ │ ├── 732-01-net-ethernet-mtk_eth_soc-work-around-issue-with-send.patch │ │ │ ├── 732-02-net-ethernet-mtk_eth_soc-set-NETIF_F_ALL_TSO.patch │ │ │ ├── 733-01-net-ethernet-mtk_eth_soc-use-napi_build_skb.patch │ │ │ ├── 739-01-dt-bindings-phy-mediatek-xfi-tphy-add-new-bindings.patch │ │ │ ├── 739-04-dt-bindings-net-pcs-add-bindings-for-MediaTek-USXGMI.patch │ │ │ ├── 739-05-net-pcs-add-driver-for-MediaTek-USXGMII-PCS.patch │ │ │ ├── 740-net-phy-motorcomm-Add-missing-include.patch │ │ │ ├── 742-net-phy-air_en8811h-reset-netdev-rules-when-LED-is-s.patch │ │ │ ├── 768-net-dsa-mv88e6xxx-Request-assisted-learning-on-CPU-port.patch │ │ │ ├── 779-net-vxlan-don-t-learn-non-unicast-L2-destinations.patch │ │ │ ├── 780-ARM-kirkwood-add-missing-linux-if_ether.h-for-ETH_AL.patch │ │ │ ├── 790-bus-mhi-core-add-SBL-state-callback.patch │ │ │ ├── 800-bcma-get-SoC-device-struct-copy-its-DMA-params-to-th.patch │ │ │ ├── 801-gpio-gpio-cascade-add-generic-GPIO-cascade.patch │ │ │ ├── 802-OPP-Provide-old-opp-to-config_clks-on-_set_opp.patch │ │ │ ├── 802-nvmem-u-boot-env-align-endianness-of-crc32-values.patch │ │ │ ├── 804-nvmem-core-support-mac-base-fixed-layout-cells.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 840-hwrng-bcm2835-set-quality-to-1000.patch │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ ├── 870-ARM-dts-nxp-imx7d-pico-add-cpu-supply-nodes.patch │ │ │ └── 920-mangle_bootargs.patch │ │ ├── mediatek │ │ ├── dts │ │ │ ├── mt7981b-zbt-z8102ax-128m.dts │ │ │ ├── mt7981b-zbt-z8102ax-64m.dts │ │ │ └── mt7981b-zbt-z8102ax.dtsi │ │ ├── files-6.10 │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-eth1.dtso │ │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-swp5.dtso │ │ │ │ │ ├── mt7981-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7981-rfb.dts │ │ │ │ │ ├── mt7981.dtsi │ │ │ │ │ ├── mt7986a-rfb-spim-nand.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nor.dts │ │ │ │ │ ├── mt7986a-rfb.dtsi │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-emmc.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-poe.dts │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-rtc.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-sd.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-wifi-mt7996a.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4.dts │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4.dtsi │ │ │ │ │ ├── mt7988a-rfb-emmc.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-i2p5g-phy.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-sd.dtso │ │ │ │ │ ├── mt7988a-rfb-snfi-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nand-factory.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nor.dtso │ │ │ │ │ ├── mt7988a-rfb.dts │ │ │ │ │ └── mt7988a.dtsi │ │ │ ├── block │ │ │ │ └── partitions │ │ │ │ │ └── fit.c │ │ │ └── drivers │ │ │ │ ├── net │ │ │ │ └── phy │ │ │ │ │ └── mediatek-2p5ge.c │ │ │ │ └── pinctrl │ │ │ │ └── mediatek │ │ │ │ └── pinctrl-mt7988.c │ │ ├── filogic │ │ │ ├── base-files │ │ │ │ └── etc │ │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ └── hotplug.d │ │ │ │ │ └── ieee80211 │ │ │ │ │ └── 11_fix_wifi_mac │ │ │ └── config-6.10 │ │ ├── image │ │ │ └── filogic.mk │ │ └── patches-6.10 │ │ │ ├── 100-dts-update-mt7622-rfb1.patch │ │ │ ├── 101-dts-update-mt7629-rfb.patch │ │ │ ├── 103-mt7623-enable-arch-timer.patch │ │ │ ├── 104-mt7622-add-snor-irq.patch │ │ │ ├── 105-dts-mt7622-enable-pstore.patch │ │ │ ├── 106-dts-mt7622-disable_btif.patch │ │ │ ├── 110-dts-fix-bpi2-console.patch │ │ │ ├── 111-dts-fix-bpi64-console.patch │ │ │ ├── 112-dts-fix-bpi64-lan-names.patch │ │ │ ├── 113-dts-fix-bpi64-leds-and-buttons.patch │ │ │ ├── 114-dts-bpi64-disable-rtc.patch │ │ │ ├── 121-hack-spi-nand-1b-bbm.patch │ │ │ ├── 130-dts-mt7629-add-snand-support.patch │ │ │ ├── 131-dts-mt7622-add-snand-support.patch │ │ │ ├── 140-dts-fix-wmac-support-for-mt7622-rfb1.patch │ │ │ ├── 150-dts-mt7623-eip97-inside-secure-support.patch │ │ │ ├── 160-dts-mt7623-bpi-r2-earlycon.patch │ │ │ ├── 161-dts-mt7623-bpi-r2-mmc-device-order.patch │ │ │ ├── 162-dts-mt7623-bpi-r2-led-aliases.patch │ │ │ ├── 163-dts-mt7623-bpi-r2-ethernet-alias.patch │ │ │ ├── 164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch │ │ │ ├── 190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch │ │ │ ├── 193-dts-mt7623-thermal_zone_fix.patch │ │ │ ├── 194-dts-mt7968a-add-ramoops.patch │ │ │ ├── 200-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch │ │ │ ├── 330-snand-mtk-bmt-support.patch │ │ │ ├── 331-mt7622-rfb1-enable-bmt.patch │ │ │ ├── 351-pinctrl-add-mt7988-pd-pulltype-support.patch │ │ │ ├── 400-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 401-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 410-bt-mtk-serial-fix.patch │ │ │ ├── 432-drivers-spi-Add-support-for-dynamic-calibration.patch │ │ │ ├── 433-drivers-spi-mem-Add-spi-calibration-hook.patch │ │ │ ├── 500-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch │ │ │ ├── 602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch │ │ │ ├── 610-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 611-pcie-mediatek-gen3-PERST-for-100ms.patch │ │ │ ├── 615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch │ │ │ ├── 710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch │ │ │ ├── 721-dts-mt7622-mediatek-fix-300mhz.patch │ │ │ ├── 722-remove-300Hz-to-prevent-freeze.patch │ │ │ ├── 732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch │ │ │ ├── 733-net-phy-add-driver-for-MediaTek-2.5G-PHY.patch │ │ │ ├── 734-net-phy-add-Airoha-EN8801SC-PHY.patch │ │ │ ├── 830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch │ │ │ ├── 830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch │ │ │ ├── 862-arm64-dts-mt7986-add-afe.patch │ │ │ ├── 863-arm64-dts-mt7986-add-sound-wm8960.patch │ │ │ ├── 864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch │ │ │ ├── 900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch │ │ │ ├── 910-dts-mt7622-bpi-r64-wifi-eeprom.patch │ │ │ ├── 911-dts-mt7622-bpi-r64-add-rootdisk.patch │ │ │ ├── 930-spi-mt65xx-enable-sel-clk.patch │ │ │ ├── 940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch │ │ │ ├── 941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch │ │ │ ├── 942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch │ │ │ ├── 943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch │ │ │ ├── 944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch │ │ │ ├── 945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch │ │ │ └── 946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch │ │ ├── qualcommax │ │ └── patches-6.6 │ │ │ ├── 0170-clk-qcom-ipq8074-Support-added-for-necessary-clocks-and-reset.patch │ │ │ ├── 0171-1-clk-qcom-ipq8074-Fix-gcc_snoc_bus_timeout_ahb_clk-offset.patch │ │ │ ├── 0171-2-clk-qcom-ipq8074-Fix-gcc_blsp1_ahb_clk-properties.patch │ │ │ ├── 0600-1-qca-nss-ecm-support-CORE.patch │ │ │ ├── 0600-2-qca-nss-ecm-support-PPPOE-offload.patch │ │ │ ├── 0600-3-qca-nss-ecm-support-net-bonding.patch │ │ │ ├── 0600-4-qca-nss-ecm-support-net-bonding-over-LAG-interface.patch │ │ │ ├── 0600-5-qca-nss-ecm-support-macvlan.patch │ │ │ ├── 0600-7-qca-nss-ecm-fix-IPv6-user-route-change-event-calls.patch │ │ │ ├── 0601-1-qca-add-nss-bridge-mgr-support.patch │ │ │ ├── 0602-1-qca-nss-drv-add-qdisc-support.patch │ │ │ ├── 0603-1-qca-nss-clients-add-qdisc-support.patch │ │ │ ├── 0603-2-qca-nss-clients-add-l2tp-support.patch │ │ │ ├── 0603-3-qca-nss-clients-add-PPTP-support.patch │ │ │ ├── 0603-4-qca-nss-clients-add-iptunnel-support.patch │ │ │ ├── 0603-5-qca-nss-clients-add-vxlan-support.patch │ │ │ ├── 0603-6-qca-nss-clients-add-l2tp-offloading-support.patch │ │ │ ├── 0603-7-qca-nss-clients-iptunnel-lock-this-cpu.patch │ │ │ ├── 0603-8-qca-nss-clients-add-tls-mgr-support.patch │ │ │ ├── 0605-1-qca-nss-cfi-support.patch │ │ │ ├── 0611-ipv6-Fix-null-pointer-dereference-in-ipv6-output.patch │ │ │ ├── 9991-arm64-dts-qcom-disable-swiotlb-for-64mb-savings.patch │ │ │ ├── 9999-revert-crypto-api-disallow-identical-driver-names.patch │ │ │ └── 9999-silence-UBI-NAND-warnings.patch │ │ ├── rockchip │ │ ├── armv8 │ │ │ └── config-6.6 │ │ ├── modules.mk │ │ └── patches-6.6 │ │ │ ├── 023-v6.8-arm64-dts-rockchip-Add-ethernet0-alias-to-the-dts-for-RK3566-boards.patch │ │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 105-nanopi-r4s-sd-signalling.patch │ │ │ ├── 106-r4s-openwrt-leds.patch │ │ │ ├── 107-arm64-dts-rockchip-Update-LED-properties-for-Orange-.patch │ │ │ ├── 108-arm64-dts-rockchip-add-LED-configuration-to-Orange-P.patch │ │ │ ├── 109-nanopc-t4-add-led-aliases.patch │ │ │ ├── 110-arm64-dts-rockchip-Update-LED-properties-for-NanoPi-.patch │ │ │ ├── 111-radxa-cm3-io-add-led-aliases.patch │ │ │ └── 112-radxa-e25-add-led-aliases.patch │ │ └── x86 │ │ ├── 64 │ │ └── config-6.10 │ │ ├── config-6.10 │ │ ├── generic │ │ └── config-6.10 │ │ ├── geode │ │ └── config-6.10 │ │ └── legacy │ │ └── config-6.10 └── toolchain │ └── kernel-headers │ └── Makefile ├── 6.12 ├── package │ ├── kernel │ │ ├── mt76 │ │ │ └── patches │ │ │ │ └── 001-Add-tx_power-check.patch │ │ └── nat46 │ │ │ └── Makefile │ ├── network │ │ └── services │ │ │ └── dnsmasq │ │ │ └── files │ │ │ └── dnsmasq.init │ └── system │ │ └── apk │ │ ├── files │ │ └── customfeeds.list │ │ └── patches │ │ └── 0090-remove-test.patch └── target │ └── linux │ ├── generic │ ├── config-6.12 │ ├── files │ │ └── drivers │ │ │ ├── mtd │ │ │ └── nand │ │ │ │ └── mtk_bmt_v2.c │ │ │ └── net │ │ │ └── phy │ │ │ └── rtl8261n │ │ │ ├── phy_rtl826xb_patch.c │ │ │ └── rtk_osal.c │ ├── hack-6.12 │ │ ├── 0002-bbr3.patch │ │ ├── 499-LEGACY-block-partitions-populate-fwnode.patch │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ ├── 735-net-phy-realtek-rtl8261n.patch │ │ ├── 999-mptcp-bpf.patch │ │ └── 999-mptcp-increase-subflows-limits.patch │ └── pending-6.12 │ │ └── 510-block-add-uImage.FIT-subimage-block-driver.patch │ ├── ipq40xx │ ├── base-files │ │ └── etc │ │ │ └── hotplug.d │ │ │ └── ieee80211 │ │ │ └── 05-wifi-migrate │ ├── config-6.12 │ ├── files-6.12 │ │ └── arch │ │ │ └── arm │ │ │ └── boot │ │ │ └── dts │ │ │ └── qcom │ │ │ ├── qcom-ipq4018-a42.dts │ │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ │ ├── qcom-ipq4018-cap-ac.dts │ │ │ ├── qcom-ipq4018-cs-w3-wd1200g-eup.dts │ │ │ ├── qcom-ipq4018-dap-2610.dts │ │ │ ├── qcom-ipq4018-ea6350v3.dts │ │ │ ├── qcom-ipq4018-eap1300.dts │ │ │ ├── qcom-ipq4018-ecw5211.dts │ │ │ ├── qcom-ipq4018-emd1.dts │ │ │ ├── qcom-ipq4018-emr3500.dts │ │ │ ├── qcom-ipq4018-ens620ext.dts │ │ │ ├── qcom-ipq4018-ex6100v2.dts │ │ │ ├── qcom-ipq4018-ex6150v2.dts │ │ │ ├── qcom-ipq4018-ex61x0v2.dtsi │ │ │ ├── qcom-ipq4018-fritzbox-4040.dts │ │ │ ├── qcom-ipq4018-gl-a1300.dts │ │ │ ├── qcom-ipq4018-gl-ap1300.dts │ │ │ ├── qcom-ipq4018-hap-ac2.dts │ │ │ ├── qcom-ipq4018-jalapeno.dts │ │ │ ├── qcom-ipq4018-jalapeno.dtsi │ │ │ ├── qcom-ipq4018-magic-2-wifi-next.dts │ │ │ ├── qcom-ipq4018-meshpoint-one.dts │ │ │ ├── qcom-ipq4018-mf287.dts │ │ │ ├── qcom-ipq4018-mf287_common.dtsi │ │ │ ├── qcom-ipq4018-mf287plus.dts │ │ │ ├── qcom-ipq4018-mf287pro.dts │ │ │ ├── qcom-ipq4018-nbg6617.dts │ │ │ ├── qcom-ipq4018-pa1200.dts │ │ │ ├── qcom-ipq4018-rt-ac58u.dts │ │ │ ├── qcom-ipq4018-rutx.dtsi │ │ │ ├── qcom-ipq4018-rutx10.dts │ │ │ ├── qcom-ipq4018-rutx50.dts │ │ │ ├── qcom-ipq4018-sxtsq-5-ac.dts │ │ │ ├── qcom-ipq4018-wac510.dts │ │ │ ├── qcom-ipq4018-wap-ac-lte.dts │ │ │ ├── qcom-ipq4018-wap-ac.dts │ │ │ ├── qcom-ipq4018-wap-ac.dtsi │ │ │ ├── qcom-ipq4018-wap-r-ac.dts │ │ │ ├── qcom-ipq4018-whw01.dts │ │ │ ├── qcom-ipq4018-wr-1.dts │ │ │ ├── qcom-ipq4018-wre6606.dts │ │ │ ├── qcom-ipq4018-wrtq-329acn.dts │ │ │ ├── qcom-ipq4019-a62.dts │ │ │ ├── qcom-ipq4019-cm520-79f.dts │ │ │ ├── qcom-ipq4019-e2600ac-c1.dts │ │ │ ├── qcom-ipq4019-e2600ac-c2.dts │ │ │ ├── qcom-ipq4019-e2600ac.dtsi │ │ │ ├── qcom-ipq4019-ea8300.dts │ │ │ ├── qcom-ipq4019-eap2200.dts │ │ │ ├── qcom-ipq4019-fritzbox-7530.dts │ │ │ ├── qcom-ipq4019-fritzrepeater-1200.dts │ │ │ ├── qcom-ipq4019-fritzrepeater-3000.dts │ │ │ ├── qcom-ipq4019-gl-b2200.dts │ │ │ ├── qcom-ipq4019-habanero-dvk.dts │ │ │ ├── qcom-ipq4019-hap-ac3-lte6-kit.dts │ │ │ ├── qcom-ipq4019-hap-ac3.dts │ │ │ ├── qcom-ipq4019-lbr20.dts │ │ │ ├── qcom-ipq4019-le1.dts │ │ │ ├── qcom-ipq4019-lhgg-60ad.dts │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ ├── qcom-ipq4019-mf18a.dts │ │ │ ├── qcom-ipq4019-mf282plus.dts │ │ │ ├── qcom-ipq4019-mf286d.dts │ │ │ ├── qcom-ipq4019-mf289f.dts │ │ │ ├── qcom-ipq4019-mr8300.dts │ │ │ ├── qcom-ipq4019-ncp-hg100-cellular.dts │ │ │ ├── qcom-ipq4019-oap100.dts │ │ │ ├── qcom-ipq4019-orbi.dtsi │ │ │ ├── qcom-ipq4019-pa2200.dts │ │ │ ├── qcom-ipq4019-r619ac-128m.dts │ │ │ ├── qcom-ipq4019-r619ac-64m.dts │ │ │ ├── qcom-ipq4019-r619ac.dtsi │ │ │ ├── qcom-ipq4019-rbr40.dts │ │ │ ├── qcom-ipq4019-rbr50.dts │ │ │ ├── qcom-ipq4019-rbs40.dts │ │ │ ├── qcom-ipq4019-rbs50.dts │ │ │ ├── qcom-ipq4019-rt-ac42u.dts │ │ │ ├── qcom-ipq4019-rtl30vw.dts │ │ │ ├── qcom-ipq4019-srr60.dts │ │ │ ├── qcom-ipq4019-srs60.dts │ │ │ ├── qcom-ipq4019-u4019-32m.dts │ │ │ ├── qcom-ipq4019-u4019.dtsi │ │ │ ├── qcom-ipq4019-whw03.dts │ │ │ ├── qcom-ipq4019-whw03.dtsi │ │ │ ├── qcom-ipq4019-whw03v2.dts │ │ │ ├── qcom-ipq4019-wia3300-20.dts │ │ │ ├── qcom-ipq4019-wifi.dts │ │ │ ├── qcom-ipq4019-wpj419.dts │ │ │ ├── qcom-ipq4019-wtr-m2133hp.dts │ │ │ ├── qcom-ipq4019-x1pro.dts │ │ │ ├── qcom-ipq4019-x1pro.dtsi │ │ │ ├── qcom-ipq4019-xx8300.dtsi │ │ │ ├── qcom-ipq4028-wpj428.dts │ │ │ ├── qcom-ipq4029-ap-303.dts │ │ │ ├── qcom-ipq4029-ap-303h.dts │ │ │ ├── qcom-ipq4029-ap-365.dts │ │ │ ├── qcom-ipq4029-aruba-glenmorangie.dtsi │ │ │ ├── qcom-ipq4029-gl-b1300.dts │ │ │ ├── qcom-ipq4029-gl-s1300.dts │ │ │ ├── qcom-ipq4029-insect-common.dtsi │ │ │ ├── qcom-ipq4029-mr33.dts │ │ │ ├── qcom-ipq4029-mr74.dts │ │ │ ├── qcom-ipq4029-ws-ap3915i.dts │ │ │ ├── qcom-ipq4029-ws-ap391x.dts │ │ │ └── qcom-ipq40x9-dr40x9.dts │ ├── generic │ │ └── config-default │ ├── mikrotik │ │ └── config-default │ └── patches-6.12 │ │ ├── 100-ARM-dts-qcom-ipq4019-add-label-to-SCM.patch │ │ ├── 104-clk-fix-apss-cpu-overclocking.patch │ │ ├── 301-arm-compressed-add-appended-DTB-section.patch │ │ ├── 302-arm-compressed-set-ipq40xx-watchdog-to-allow-boot.patch │ │ ├── 400-mmc-sdhci-sdhci-msm-use-sdhci_set_clock-instead-of-s.patch │ │ ├── 401-mmc-sdhci-msm-comment-unused-sdhci_msm_set_clock.patch │ │ ├── 422-firmware-qcom-scm-fix-SCM-cold-boot-address.patch │ │ ├── 444-mtd-nand-rawnand-add-support-for-Toshiba-TC58NVG0S3H.patch │ │ ├── 700-net-ipqess-introduce-the-Qualcomm-IPQESS-driver.patch │ │ ├── 701-net-dsa-add-out-of-band-tagging-protocol.patch │ │ ├── 702-net-ipqess-Add-out-of-band-DSA-tagging-support.patch │ │ ├── 703-net-qualcomm-ipqess-release-IRQ-s-on-network-device-.patch │ │ ├── 704-net-qualcomm-ipqess-enable-threaded-NAPI-by-default.patch │ │ ├── 705-ARM-dts-qcom-ipq4019-Add-description-for-the-IPQESS-.patch │ │ ├── 706-net-dsa-qca8k-add-IPQ4019-built-in-switch-support.patch │ │ ├── 707-arm-dts-ipq4019-add-switch-node.patch │ │ ├── 710-arm-dts-ipq4019-QCA807x-properties.patch │ │ ├── 711-net-qualcomm-ipqess-fix-TX-timeout-errors.patch │ │ ├── 712-ARM-dts-qcom-ipq4019-add-reference-label-for-PCIe.patch │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ ├── 900-PCI-qcom-add-hack-compatible-for-ipq4019-Lantiq-DSL.patch │ │ ├── 910-Revert-firmware-qcom_scm-Clear-download-bit-during-r.patch │ │ └── 999-atm-mpoa-intel-dsl-phy-support.patch │ ├── ipq806x │ ├── Makefile │ ├── base-files │ │ └── etc │ │ │ └── hotplug.d │ │ │ └── ieee80211 │ │ │ └── 05-wifi-migrate │ ├── config-6.12 │ ├── files-6.12 │ │ └── arch │ │ │ └── arm │ │ │ └── boot │ │ │ └── dts │ │ │ └── qcom │ │ │ ├── qcom-ipq8062-wg2600hp3.dts │ │ │ ├── qcom-ipq8064-ad7200-c2600.dtsi │ │ │ ├── qcom-ipq8064-ad7200.dts │ │ │ ├── qcom-ipq8064-ap148.dts │ │ │ ├── qcom-ipq8064-ap161.dts │ │ │ ├── qcom-ipq8064-asus-onhub.dts │ │ │ ├── qcom-ipq8064-c2600.dts │ │ │ ├── qcom-ipq8064-d7800.dts │ │ │ ├── qcom-ipq8064-db149.dts │ │ │ ├── qcom-ipq8064-e8350-v1.dts │ │ │ ├── qcom-ipq8064-ea7500-v1.dts │ │ │ ├── qcom-ipq8064-ea8500.dts │ │ │ ├── qcom-ipq8064-eax500.dtsi │ │ │ ├── qcom-ipq8064-fap-421e.dts │ │ │ ├── qcom-ipq8064-g10.dts │ │ │ ├── qcom-ipq8064-onhub.dtsi │ │ │ ├── qcom-ipq8064-r7500.dts │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ ├── qcom-ipq8064-tplink-onhub.dts │ │ │ ├── qcom-ipq8064-unifi-ac-hd.dts │ │ │ ├── qcom-ipq8064-vr2600v.dts │ │ │ ├── qcom-ipq8064-wg2600hp.dts │ │ │ ├── qcom-ipq8064-wpq864.dts │ │ │ ├── qcom-ipq8064-wxr-2533dhp.dts │ │ │ ├── qcom-ipq8065-ac400i.dts │ │ │ ├── qcom-ipq8065-nbg6817.dts │ │ │ ├── qcom-ipq8065-nighthawk.dtsi │ │ │ ├── qcom-ipq8065-r7800.dts │ │ │ ├── qcom-ipq8065-rt4230w-rev6.dts │ │ │ ├── qcom-ipq8065-tr4400-v2.dts │ │ │ ├── qcom-ipq8065-xr450.dts │ │ │ ├── qcom-ipq8065-xr500.dts │ │ │ ├── qcom-ipq8068-ap3935.dts │ │ │ ├── qcom-ipq8068-cryptid-common.dtsi │ │ │ ├── qcom-ipq8068-ecw5410.dts │ │ │ ├── qcom-ipq8068-mr42.dts │ │ │ ├── qcom-ipq8068-mr52.dts │ │ │ └── qcom-ipq8068-ss-w2-ac2600.dts │ └── patches-6.12 │ │ ├── 102-mtd-rootfs-conflicts-with-OpenWrt-auto-mounting.patch │ │ ├── 107-10-ARM-dts-qcom-add-saw-for-l2-cache-and-kraitcc-for.patch │ │ ├── 107-13-ARM-dts-qcom-add-opp-table-for-cpu-and-l2-for-ipq.patch │ │ ├── 107-15-ARM-dts-qcom-add-multiple-missing-binding-for-cpu.patch │ │ ├── 108-01-ARM-dts-qcom-fix-wrong-nad_pins-definition-for-ipq80.patch │ │ ├── 108-02-ARM-dts-qcom-add-MDIO-dedicated-controller-node-for-.patch │ │ ├── 114-01-devfreq-qcom-Add-L2-Krait-Cache-devfreq-scaling-driv.patch │ │ ├── 114-02-ARM-dts-qcom-add-krait-cache-compatible-for-ipq806x-.patch │ │ ├── 115-01-devfreq-add-ipq806x-fabric-scaling-driver.patch │ │ ├── 115-02-ARM-dts-qcom-add-fab-scaling-node-for-ipq806x.patch │ │ ├── 122-01-clk-qcom-krait-cc-handle-qsb-clock-defined-in-DTS.patch │ │ ├── 122-02-clk-qcom-krait-cc-register-REAL-qsb-fixed-clock.patch │ │ ├── 122-03-clk-qcom-krait-cc-drop-pr_info-and-use-dev_info.patch │ │ ├── 122-04-clk-qcom-krait-cc-rework-mux-reset-logic-and-reset-h.patch │ │ ├── 122-05-clk-qcom-clk-krait-generilize-div-functions.patch │ │ ├── 123-clk-qcom-gcc-ipq806x-remove-cc_register_board-for.patch │ │ ├── 700-ARM-dts-qcom-ipq8064-add-reference-labels-for-PCIe-b.patch │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ ├── 900-arm-add-cmdline-override.patch │ │ ├── 901-01-ARM-decompressor-support-memory-start-validation-.patch │ │ ├── 901-02-ARM-decompressor-add-option-to-ignore-MEM-ATAGs.patch │ │ └── 902-ARM-decompressor-support-for-ATAGs-rootblock-parsing.patch │ └── mediatek │ ├── dts │ ├── mt7981b-cudy-tr3000-256mb-v1.dts │ ├── mt7981b-zbt-z8102ax-128m.dts │ ├── mt7981b-zbt-z8102ax-64m.dts │ ├── mt7981b-zbt-z8102ax-eMMC.dts │ ├── mt7981b-zbt-z8102ax.dtsi │ ├── mt7981b-zbt-z8109ax-128m.dts │ ├── mt7981b-zbt-z8109ax-512m.dts │ └── mt7981b-zbt-z8109ax.dtsi │ ├── filogic │ └── base-files │ │ └── etc │ │ ├── board.d │ │ ├── 01_leds │ │ ├── 02_network │ │ └── 03_gpio_switches │ │ └── hotplug.d │ │ └── ieee80211 │ │ └── 11_fix_wifi_mac │ └── image │ └── filogic.mk ├── 6.6 ├── package │ ├── kernel │ │ └── mwlwifi │ │ │ └── patches │ │ │ └── 999-fix-compilation.patch │ ├── libs │ │ └── libnftnl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ └── 999-01-libnftnl-add-fullcone-expression-support.patch │ └── network │ │ ├── config │ │ └── firewall4 │ │ │ └── patches │ │ │ ├── 990-unconditionally-allow-ct-status-dnat.patch │ │ │ ├── 999-01-firewall4-add-fullcone-support.patch │ │ │ └── 999-10-forward-rules-in-prerouting.patch │ │ ├── services │ │ └── dnsmasq │ │ │ └── files │ │ │ └── dnsmasq.init │ │ └── utils │ │ └── nftables │ │ ├── Makefile │ │ └── patches │ │ └── 002-nftables-add-fullcone-expression-support.patch └── target │ └── linux │ ├── bcm27xx │ ├── image │ │ └── Makefile │ └── patches-6.6 │ │ └── 999-dts-add-hogs-on-CM5.patch │ ├── generic │ ├── config-6.6 │ └── hack-6.6 │ │ ├── 997-BBRv3.patch │ │ ├── 998-ndpi-hook.patch │ │ └── 999-mptcp-bpf.patch │ ├── mediatek │ ├── dts │ │ ├── mt7981b-cudy-tr3000-256mb-v1.dts │ │ ├── mt7981b-zbt-z8102ax-128m.dts │ │ ├── mt7981b-zbt-z8102ax-64m.dts │ │ ├── mt7981b-zbt-z8102ax-eMMC.dts │ │ ├── mt7981b-zbt-z8102ax.dtsi │ │ ├── mt7981b-zbt-z8109ax-128m.dts │ │ ├── mt7981b-zbt-z8109ax-512m.dts │ │ └── mt7981b-zbt-z8109ax.dtsi │ ├── filogic │ │ └── base-files │ │ │ └── etc │ │ │ ├── board.d │ │ │ ├── 01_leds │ │ │ ├── 02_network │ │ │ └── 03_gpio_switches │ │ │ └── hotplug.d │ │ │ └── ieee80211 │ │ │ └── 11_fix_wifi_mac │ └── image │ │ └── filogic.mk │ ├── qualcommax │ └── patches-6.6 │ │ ├── 0170-clk-qcom-ipq8074-Support-added-for-necessary-clocks-and-reset.patch │ │ ├── 0171-1-clk-qcom-ipq8074-Fix-gcc_snoc_bus_timeout_ahb_clk-offset.patch │ │ ├── 0171-2-clk-qcom-ipq8074-Fix-gcc_blsp1_ahb_clk-properties.patch │ │ ├── 0600-1-qca-nss-ecm-support-CORE.patch │ │ ├── 0600-2-qca-nss-ecm-support-PPPOE-offload.patch │ │ ├── 0600-3-qca-nss-ecm-support-net-bonding.patch │ │ ├── 0600-4-qca-nss-ecm-support-net-bonding-over-LAG-interface.patch │ │ ├── 0600-5-qca-nss-ecm-support-macvlan.patch │ │ ├── 0600-7-qca-nss-ecm-fix-IPv6-user-route-change-event-calls.patch │ │ ├── 0601-1-qca-add-nss-bridge-mgr-support.patch │ │ ├── 0602-1-qca-nss-drv-add-qdisc-support.patch │ │ ├── 0603-1-qca-nss-clients-add-qdisc-support.patch │ │ ├── 0603-2-qca-nss-clients-add-l2tp-support.patch │ │ ├── 0603-3-qca-nss-clients-add-PPTP-support.patch │ │ ├── 0603-4-qca-nss-clients-add-iptunnel-support.patch │ │ ├── 0603-5-qca-nss-clients-add-vxlan-support.patch │ │ ├── 0603-6-qca-nss-clients-add-l2tp-offloading-support.patch │ │ ├── 0603-7-qca-nss-clients-iptunnel-lock-this-cpu.patch │ │ ├── 0603-8-qca-nss-clients-add-tls-mgr-support.patch │ │ ├── 0605-1-qca-nss-cfi-support.patch │ │ ├── 0611-ipv6-Fix-null-pointer-dereference-in-ipv6-output.patch │ │ ├── 9999-revert-crypto-api-disallow-identical-driver-names.patch │ │ └── 9999-silence-UBI-NAND-warnings.patch │ └── x86 │ ├── 64 │ └── config-6.6 │ ├── config-6.6 │ ├── generic │ └── config-6.6 │ ├── geode │ └── config-6.6 │ └── legacy │ └── config-6.6 ├── CLA-entity.md ├── CLA-individual.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── common ├── include │ └── bpf_mptcp.mk ├── package │ ├── base-files │ │ └── files │ │ │ ├── bin │ │ │ └── config_generate │ │ │ ├── etc │ │ │ ├── banner │ │ │ ├── board.d │ │ │ │ └── 99-default_network │ │ │ └── rc.button │ │ │ │ └── reset │ │ │ └── sbin │ │ │ └── sysupgrade │ ├── boot │ │ ├── uboot-ipq40xx │ │ │ ├── Makefile │ │ │ ├── patches │ │ │ │ ├── 001-add_gcc12_support.patch │ │ │ │ └── 001-add_gcc9_support.patch │ │ │ └── src │ │ │ │ ├── .checkpatch.conf │ │ │ │ ├── .gitignore │ │ │ │ ├── COPYING │ │ │ │ ├── CREDITS │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── MAKEALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README.md │ │ │ │ ├── api │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── api.c │ │ │ │ ├── api_display.c │ │ │ │ ├── api_net.c │ │ │ │ ├── api_platform-arm.c │ │ │ │ ├── api_platform-powerpc.c │ │ │ │ ├── api_private.h │ │ │ │ └── api_storage.c │ │ │ │ ├── arch │ │ │ │ ├── .gitignore │ │ │ │ ├── arm │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── arm1136 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── mx31 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── mx35 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── omap24xx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── arm1176 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── s3c64xx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── cpu_init.S │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── tnetv107x │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── aemif.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── mux.c │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ └── wdt.c │ │ │ │ │ │ ├── arm720t │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── lpc2292 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ │ │ ├── iap_entry.S │ │ │ │ │ │ │ │ ├── mmc.c │ │ │ │ │ │ │ │ ├── mmc_hw.c │ │ │ │ │ │ │ │ ├── mmc_hw.h │ │ │ │ │ │ │ │ └── spi.c │ │ │ │ │ │ │ ├── s3c4510b │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ └── cache.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── arm920t │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── a320 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── at91rm9200_devices.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── ep93xx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ │ ├── imx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── ks8695 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── s3c24x0 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ │ │ └── usb_ohci.h │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── arm925t │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── omap925.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── arm926ejs │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── armada100 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── at91 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── at91cap9_devices.c │ │ │ │ │ │ │ │ ├── at91sam9260_devices.c │ │ │ │ │ │ │ │ ├── at91sam9261_devices.c │ │ │ │ │ │ │ │ ├── at91sam9263_devices.c │ │ │ │ │ │ │ │ ├── at91sam9m10g45_devices.c │ │ │ │ │ │ │ │ ├── at91sam9rl_devices.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── eflash.c │ │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── davinci │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── da850_lowlevel.c │ │ │ │ │ │ │ │ ├── da850_pinmux.c │ │ │ │ │ │ │ │ ├── dm355.c │ │ │ │ │ │ │ │ ├── dm365.c │ │ │ │ │ │ │ │ ├── dm365_lowlevel.c │ │ │ │ │ │ │ │ ├── dm644x.c │ │ │ │ │ │ │ │ ├── dm646x.c │ │ │ │ │ │ │ │ ├── dp83848.c │ │ │ │ │ │ │ │ ├── et1011c.c │ │ │ │ │ │ │ │ ├── ksz8873.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── lxt972.c │ │ │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ │ │ ├── psc.c │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── kirkwood │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ │ ├── mpp.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── lpc32xx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── devices.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── mb86r0x │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── mx25 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── mx27 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── mx28 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ │ │ ├── mx28.c │ │ │ │ │ │ │ │ ├── mx28_init.h │ │ │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ │ │ ├── spl_lradc_init.c │ │ │ │ │ │ │ │ ├── spl_mem_init.c │ │ │ │ │ │ │ │ ├── spl_power_init.c │ │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ │ │ ├── nomadik │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── omap │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── orion5x │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── pantheon │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── dram.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── spear │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ ├── spear600.c │ │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ │ │ ├── spr600_mt47h128m8_3_266_cl5_async.c │ │ │ │ │ │ │ │ ├── spr600_mt47h32m16_333_cl5_psync.c │ │ │ │ │ │ │ │ ├── spr600_mt47h32m16_37e_166_cl4_sync.c │ │ │ │ │ │ │ │ ├── spr600_mt47h64m16_3_333_cl5_psync.c │ │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ └── u-boot-spl.lds │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── versatile │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── reset.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── arm946es │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── arm_intcm │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── armv7 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── am33xx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ │ │ ├── emif4.c │ │ │ │ │ │ │ │ └── sys_info.c │ │ │ │ │ │ │ ├── cache_v7.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── exynos │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ │ │ ├── power.c │ │ │ │ │ │ │ │ ├── soc.c │ │ │ │ │ │ │ │ └── system.c │ │ │ │ │ │ │ ├── highbank │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── bootcount.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── imx-common │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── ipq │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── cmd_bootipq.c │ │ │ │ │ │ │ │ ├── cmd_dumpipq_data.c │ │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ │ ├── scm.c │ │ │ │ │ │ │ │ ├── smem.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── mx5 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ └── soc.c │ │ │ │ │ │ │ ├── mx6 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── iomux-v3.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ └── soc.c │ │ │ │ │ │ │ ├── omap-common │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── boot-common.c │ │ │ │ │ │ │ │ ├── clocks-common.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── emif-common.c │ │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ │ ├── hwinit-common.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── mem-common.c │ │ │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ │ │ ├── spl.c │ │ │ │ │ │ │ │ ├── spl_mmc.c │ │ │ │ │ │ │ │ ├── spl_nand.c │ │ │ │ │ │ │ │ ├── spl_ymodem.c │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ │ │ └── vc.c │ │ │ │ │ │ │ ├── omap3 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── emac.c │ │ │ │ │ │ │ │ ├── emif4.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ │ ├── sdrc.c │ │ │ │ │ │ │ │ ├── spl_id_nand.c │ │ │ │ │ │ │ │ └── sys_info.c │ │ │ │ │ │ │ ├── omap4 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clocks.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── emif.c │ │ │ │ │ │ │ │ ├── hwinit.c │ │ │ │ │ │ │ │ └── sdram_elpida.c │ │ │ │ │ │ │ ├── omap5 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clocks.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── emif.c │ │ │ │ │ │ │ │ ├── hwinit.c │ │ │ │ │ │ │ │ └── sdram.c │ │ │ │ │ │ │ ├── qca │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── cmd_blowsecfuse.c │ │ │ │ │ │ │ │ ├── cmd_bootqca.c │ │ │ │ │ │ │ │ ├── cmd_dumpqca_data.c │ │ │ │ │ │ │ │ ├── cmd_firstboot.c │ │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ │ ├── mnf_fields.c │ │ │ │ │ │ │ │ ├── mnf_flash.c │ │ │ │ │ │ │ │ ├── scm.c │ │ │ │ │ │ │ │ ├── smem.c │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ │ ├── s5p-common │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cpu_info.c │ │ │ │ │ │ │ │ ├── pwm.c │ │ │ │ │ │ │ │ ├── sromc.c │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ └── wdt.c │ │ │ │ │ │ │ ├── s5pc1xx │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ └── reset.S │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── syslib.c │ │ │ │ │ │ │ ├── tegra2 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── ap20.c │ │ │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── cmd_enterrcm.c │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── crypto.c │ │ │ │ │ │ │ │ ├── crypto.h │ │ │ │ │ │ │ │ ├── emc.c │ │ │ │ │ │ │ │ ├── funcmux.c │ │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ │ ├── pinmux.c │ │ │ │ │ │ │ │ ├── pmu.c │ │ │ │ │ │ │ │ ├── sys_info.c │ │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ │ │ ├── warmboot.c │ │ │ │ │ │ │ │ ├── warmboot_avp.c │ │ │ │ │ │ │ │ └── warmboot_avp.h │ │ │ │ │ │ │ └── u8500 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ │ │ ├── lowlevel.S │ │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── ixp │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── npe │ │ │ │ │ │ │ │ ├── IxEthAcc.c │ │ │ │ │ │ │ │ ├── IxEthAccCommon.c │ │ │ │ │ │ │ │ ├── IxEthAccControlInterface.c │ │ │ │ │ │ │ │ ├── IxEthAccDataPlane.c │ │ │ │ │ │ │ │ ├── IxEthAccMac.c │ │ │ │ │ │ │ │ ├── IxEthAccMii.c │ │ │ │ │ │ │ │ ├── IxEthDBAPI.c │ │ │ │ │ │ │ │ ├── IxEthDBAPISupport.c │ │ │ │ │ │ │ │ ├── IxEthDBCore.c │ │ │ │ │ │ │ │ ├── IxEthDBEvents.c │ │ │ │ │ │ │ │ ├── IxEthDBFeatures.c │ │ │ │ │ │ │ │ ├── IxEthDBFirewall.c │ │ │ │ │ │ │ │ ├── IxEthDBHashtable.c │ │ │ │ │ │ │ │ ├── IxEthDBLearning.c │ │ │ │ │ │ │ │ ├── IxEthDBMem.c │ │ │ │ │ │ │ │ ├── IxEthDBNPEAdaptor.c │ │ │ │ │ │ │ │ ├── IxEthDBPortUpdate.c │ │ │ │ │ │ │ │ ├── IxEthDBReports.c │ │ │ │ │ │ │ │ ├── IxEthDBSearch.c │ │ │ │ │ │ │ │ ├── IxEthDBSpanningTree.c │ │ │ │ │ │ │ │ ├── IxEthDBUtil.c │ │ │ │ │ │ │ │ ├── IxEthDBVlan.c │ │ │ │ │ │ │ │ ├── IxEthDBWiFi.c │ │ │ │ │ │ │ │ ├── IxEthMii.c │ │ │ │ │ │ │ │ ├── IxFeatureCtrl.c │ │ │ │ │ │ │ │ ├── IxNpeDl.c │ │ │ │ │ │ │ │ ├── IxNpeDlImageMgr.c │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgr.c │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgrUtils.c │ │ │ │ │ │ │ │ ├── IxNpeMh.c │ │ │ │ │ │ │ │ ├── IxNpeMhConfig.c │ │ │ │ │ │ │ │ ├── IxNpeMhReceive.c │ │ │ │ │ │ │ │ ├── IxNpeMhSend.c │ │ │ │ │ │ │ │ ├── IxNpeMhSolicitedCbMgr.c │ │ │ │ │ │ │ │ ├── IxNpeMhUnsolicitedCbMgr.c │ │ │ │ │ │ │ │ ├── IxOsalBufferMgt.c │ │ │ │ │ │ │ │ ├── IxOsalIoMem.c │ │ │ │ │ │ │ │ ├── IxOsalOsCacheMMU.c │ │ │ │ │ │ │ │ ├── IxOsalOsMsgQ.c │ │ │ │ │ │ │ │ ├── IxOsalOsSemaphore.c │ │ │ │ │ │ │ │ ├── IxOsalOsServices.c │ │ │ │ │ │ │ │ ├── IxOsalOsThread.c │ │ │ │ │ │ │ │ ├── IxQMgrAqmIf.c │ │ │ │ │ │ │ │ ├── IxQMgrDispatcher.c │ │ │ │ │ │ │ │ ├── IxQMgrInit.c │ │ │ │ │ │ │ │ ├── IxQMgrQAccess.c │ │ │ │ │ │ │ │ ├── IxQMgrQCfg.c │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ ├── IxAssert.h │ │ │ │ │ │ │ │ │ ├── IxAtmSch.h │ │ │ │ │ │ │ │ │ ├── IxAtmTypes.h │ │ │ │ │ │ │ │ │ ├── IxAtmdAcc.h │ │ │ │ │ │ │ │ │ ├── IxAtmdAccCtrl.h │ │ │ │ │ │ │ │ │ ├── IxAtmm.h │ │ │ │ │ │ │ │ │ ├── IxDmaAcc.h │ │ │ │ │ │ │ │ │ ├── IxEthAcc.h │ │ │ │ │ │ │ │ │ ├── IxEthAccDataPlane_p.h │ │ │ │ │ │ │ │ │ ├── IxEthAccMac_p.h │ │ │ │ │ │ │ │ │ ├── IxEthAccMii_p.h │ │ │ │ │ │ │ │ │ ├── IxEthAccQueueAssign_p.h │ │ │ │ │ │ │ │ │ ├── IxEthAcc_p.h │ │ │ │ │ │ │ │ │ ├── IxEthDB.h │ │ │ │ │ │ │ │ │ ├── IxEthDBLocks_p.h │ │ │ │ │ │ │ │ │ ├── IxEthDBLog_p.h │ │ │ │ │ │ │ │ │ ├── IxEthDBMessages_p.h │ │ │ │ │ │ │ │ │ ├── IxEthDBPortDefs.h │ │ │ │ │ │ │ │ │ ├── IxEthDBQoS.h │ │ │ │ │ │ │ │ │ ├── IxEthDB_p.h │ │ │ │ │ │ │ │ │ ├── IxEthMii.h │ │ │ │ │ │ │ │ │ ├── IxEthMii_p.h │ │ │ │ │ │ │ │ │ ├── IxEthNpe.h │ │ │ │ │ │ │ │ │ ├── IxFeatureCtrl.h │ │ │ │ │ │ │ │ │ ├── IxHssAcc.h │ │ │ │ │ │ │ │ │ ├── IxI2cDrv.h │ │ │ │ │ │ │ │ │ ├── IxNpeA.h │ │ │ │ │ │ │ │ │ ├── IxNpeDl.h │ │ │ │ │ │ │ │ │ ├── IxNpeDlImageMgr_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeDlMacros_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgrEcRegisters_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgrUtils_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeDlNpeMgr_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMh.h │ │ │ │ │ │ │ │ │ ├── IxNpeMhConfig_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMhMacros_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMhReceive_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMhSend_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMhSolicitedCbMgr_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMhUnsolicitedCbMgr_p.h │ │ │ │ │ │ │ │ │ ├── IxNpeMicrocode.h │ │ │ │ │ │ │ │ │ ├── IxOsBufLib.h │ │ │ │ │ │ │ │ │ ├── IxOsBuffMgt.h │ │ │ │ │ │ │ │ │ ├── IxOsBuffPoolMgt.h │ │ │ │ │ │ │ │ │ ├── IxOsCacheMMU.h │ │ │ │ │ │ │ │ │ ├── IxOsPrintf.h │ │ │ │ │ │ │ │ │ ├── IxOsServices.h │ │ │ │ │ │ │ │ │ ├── IxOsServicesComponents.h │ │ │ │ │ │ │ │ │ ├── IxOsServicesEndianess.h │ │ │ │ │ │ │ │ │ ├── IxOsServicesMemAccess.h │ │ │ │ │ │ │ │ │ ├── IxOsServicesMemMap.h │ │ │ │ │ │ │ │ │ ├── IxOsal.h │ │ │ │ │ │ │ │ │ ├── IxOsalAssert.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackward.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackwardAssert.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackwardBufferMgt.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackwardCacheMMU.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackwardMemMap.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackwardOsServices.h │ │ │ │ │ │ │ │ │ ├── IxOsalBackwardOssl.h │ │ │ │ │ │ │ │ │ ├── IxOsalBufferMgt.h │ │ │ │ │ │ │ │ │ ├── IxOsalBufferMgtDefault.h │ │ │ │ │ │ │ │ │ ├── IxOsalConfig.h │ │ │ │ │ │ │ │ │ ├── IxOsalEndianess.h │ │ │ │ │ │ │ │ │ ├── IxOsalIoMem.h │ │ │ │ │ │ │ │ │ ├── IxOsalMemAccess.h │ │ │ │ │ │ │ │ │ ├── IxOsalOem.h │ │ │ │ │ │ │ │ │ ├── IxOsalOs.h │ │ │ │ │ │ │ │ │ ├── IxOsalOsAssert.h │ │ │ │ │ │ │ │ │ ├── IxOsalOsBufferMgt.h │ │ │ │ │ │ │ │ │ ├── IxOsalOsIxp400.h │ │ │ │ │ │ │ │ │ ├── IxOsalOsIxp400CustomizedMapping.h │ │ │ │ │ │ │ │ │ ├── IxOsalOsTypes.h │ │ │ │ │ │ │ │ │ ├── IxOsalOsUtilitySymbols.h │ │ │ │ │ │ │ │ │ ├── IxOsalTypes.h │ │ │ │ │ │ │ │ │ ├── IxOsalUtilitySymbols.h │ │ │ │ │ │ │ │ │ ├── IxParityENAcc.h │ │ │ │ │ │ │ │ │ ├── IxPerfProfAcc.h │ │ │ │ │ │ │ │ │ ├── IxQMgr.h │ │ │ │ │ │ │ │ │ ├── IxQMgrAqmIf_p.h │ │ │ │ │ │ │ │ │ ├── IxQMgrDefines_p.h │ │ │ │ │ │ │ │ │ ├── IxQMgrDispatcher_p.h │ │ │ │ │ │ │ │ │ ├── IxQMgrLog_p.h │ │ │ │ │ │ │ │ │ ├── IxQMgrQAccess_p.h │ │ │ │ │ │ │ │ │ ├── IxQMgrQCfg_p.h │ │ │ │ │ │ │ │ │ ├── IxQueueAssignments.h │ │ │ │ │ │ │ │ │ ├── IxSspAcc.h │ │ │ │ │ │ │ │ │ ├── IxTimeSyncAcc.h │ │ │ │ │ │ │ │ │ ├── IxTimerCtrl.h │ │ │ │ │ │ │ │ │ ├── IxTypes.h │ │ │ │ │ │ │ │ │ ├── IxUART.h │ │ │ │ │ │ │ │ │ ├── IxVersionId.h │ │ │ │ │ │ │ │ │ ├── ix_error.h │ │ │ │ │ │ │ │ │ ├── ix_macros.h │ │ │ │ │ │ │ │ │ ├── ix_os_type.h │ │ │ │ │ │ │ │ │ ├── ix_ossl.h │ │ │ │ │ │ │ │ │ ├── ix_symbols.h │ │ │ │ │ │ │ │ │ ├── ix_types.h │ │ │ │ │ │ │ │ │ ├── npe.h │ │ │ │ │ │ │ │ │ └── os_datatypes.h │ │ │ │ │ │ │ │ ├── miiphy.c │ │ │ │ │ │ │ │ └── npe.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── lh7a40x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── pxa │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpuinfo.c │ │ │ │ │ │ │ ├── pxa2xx.c │ │ │ │ │ │ │ ├── pxafb.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── usb.c │ │ │ │ │ │ ├── s3c44b0 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ ├── sa1100 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── dts │ │ │ │ │ │ ├── skeleton.dtsi │ │ │ │ │ │ └── tegra20.dtsi │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── arch-a320 │ │ │ │ │ │ │ └── a320.h │ │ │ │ │ │ │ ├── arch-am33xx │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── clocks_am33xx.h │ │ │ │ │ │ │ ├── common_def.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── ddr_defs.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-arm720t │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── netarm_dma_module.h │ │ │ │ │ │ │ ├── netarm_eni_module.h │ │ │ │ │ │ │ ├── netarm_eth_module.h │ │ │ │ │ │ │ ├── netarm_gen_module.h │ │ │ │ │ │ │ ├── netarm_mem_module.h │ │ │ │ │ │ │ ├── netarm_registers.h │ │ │ │ │ │ │ └── netarm_ser_module.h │ │ │ │ │ │ │ ├── arch-armada100 │ │ │ │ │ │ │ ├── armada100.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mfp.h │ │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ │ └── utmi-armada100.h │ │ │ │ │ │ │ ├── arch-armv7 │ │ │ │ │ │ │ ├── sysctrl.h │ │ │ │ │ │ │ ├── systimer.h │ │ │ │ │ │ │ └── wdt.h │ │ │ │ │ │ │ ├── arch-at91 │ │ │ │ │ │ │ ├── at91_common.h │ │ │ │ │ │ │ ├── at91_dbu.h │ │ │ │ │ │ │ ├── at91_eefc.h │ │ │ │ │ │ │ ├── at91_emac.h │ │ │ │ │ │ │ ├── at91_gpbr.h │ │ │ │ │ │ │ ├── at91_matrix.h │ │ │ │ │ │ │ ├── at91_mc.h │ │ │ │ │ │ │ ├── at91_pdc.h │ │ │ │ │ │ │ ├── at91_pio.h │ │ │ │ │ │ │ ├── at91_pit.h │ │ │ │ │ │ │ ├── at91_pmc.h │ │ │ │ │ │ │ ├── at91_rstc.h │ │ │ │ │ │ │ ├── at91_rtt.h │ │ │ │ │ │ │ ├── at91_shdwn.h │ │ │ │ │ │ │ ├── at91_spi.h │ │ │ │ │ │ │ ├── at91_st.h │ │ │ │ │ │ │ ├── at91_tc.h │ │ │ │ │ │ │ ├── at91_wdt.h │ │ │ │ │ │ │ ├── at91cap9.h │ │ │ │ │ │ │ ├── at91cap9_matrix.h │ │ │ │ │ │ │ ├── at91rm9200.h │ │ │ │ │ │ │ ├── at91sam9260.h │ │ │ │ │ │ │ ├── at91sam9260_matrix.h │ │ │ │ │ │ │ ├── at91sam9261.h │ │ │ │ │ │ │ ├── at91sam9261_matrix.h │ │ │ │ │ │ │ ├── at91sam9263.h │ │ │ │ │ │ │ ├── at91sam9263_matrix.h │ │ │ │ │ │ │ ├── at91sam9_matrix.h │ │ │ │ │ │ │ ├── at91sam9_sdramc.h │ │ │ │ │ │ │ ├── at91sam9_smc.h │ │ │ │ │ │ │ ├── at91sam9g45.h │ │ │ │ │ │ │ ├── at91sam9g45_matrix.h │ │ │ │ │ │ │ ├── at91sam9rl.h │ │ │ │ │ │ │ ├── at91sam9rl_matrix.h │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ │ ├── arch-davinci │ │ │ │ │ │ │ ├── aintc_defs.h │ │ │ │ │ │ │ ├── da850_lowlevel.h │ │ │ │ │ │ │ ├── da8xx-fb.h │ │ │ │ │ │ │ ├── davinci_misc.h │ │ │ │ │ │ │ ├── ddr2_defs.h │ │ │ │ │ │ │ ├── dm365_lowlevel.h │ │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── i2c_defs.h │ │ │ │ │ │ │ ├── nand_defs.h │ │ │ │ │ │ │ ├── pinmux_defs.h │ │ │ │ │ │ │ ├── pll_defs.h │ │ │ │ │ │ │ ├── psc_defs.h │ │ │ │ │ │ │ ├── sdmmc_defs.h │ │ │ │ │ │ │ ├── syscfg_defs.h │ │ │ │ │ │ │ └── timer_defs.h │ │ │ │ │ │ │ ├── arch-ep93xx │ │ │ │ │ │ │ └── ep93xx.h │ │ │ │ │ │ │ ├── arch-exynos │ │ │ │ │ │ │ ├── adc.h │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── dmc.h │ │ │ │ │ │ │ ├── dsim.h │ │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ │ ├── fb.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mipi_dsim.h │ │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ │ ├── periph.h │ │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ │ ├── power.h │ │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ │ ├── sromc.h │ │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── tzpc.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ ├── watchdog.h │ │ │ │ │ │ │ └── xhci-exynos.h │ │ │ │ │ │ │ ├── arch-imx │ │ │ │ │ │ │ └── imx-regs.h │ │ │ │ │ │ │ ├── arch-ipq40xx │ │ │ │ │ │ │ ├── ess │ │ │ │ │ │ │ │ └── ipq40xx_edma.h │ │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ │ ├── scm.h │ │ │ │ │ │ │ ├── smem.h │ │ │ │ │ │ │ └── timer.h │ │ │ │ │ │ │ ├── arch-ipq806x │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── iomap.h │ │ │ │ │ │ │ ├── nss │ │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ │ ├── ipq_mdio.h │ │ │ │ │ │ │ │ ├── msm_ipq806x_gmac.h │ │ │ │ │ │ │ │ └── nss_reg.h │ │ │ │ │ │ │ ├── scm.h │ │ │ │ │ │ │ ├── smem.h │ │ │ │ │ │ │ └── timer.h │ │ │ │ │ │ │ ├── arch-ixp │ │ │ │ │ │ │ ├── ixp425.h │ │ │ │ │ │ │ └── ixp425pci.h │ │ │ │ │ │ │ ├── arch-kirkwood │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── kirkwood.h │ │ │ │ │ │ │ ├── kw88f6192.h │ │ │ │ │ │ │ ├── kw88f6281.h │ │ │ │ │ │ │ ├── mpp.h │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ │ ├── arch-ks8695 │ │ │ │ │ │ │ └── platform.h │ │ │ │ │ │ │ ├── arch-lpc2292 │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── lpc2292_registers.h │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ │ ├── arch-lpc32xx │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ └── wdt.h │ │ │ │ │ │ │ ├── arch-mb86r0x │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ └── mb86r0x.h │ │ │ │ │ │ │ ├── arch-mx25 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ ├── imx25-pinmux.h │ │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-mx27 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ └── mxcmmc.h │ │ │ │ │ │ │ ├── arch-mx28 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ ├── iomux-mx28.h │ │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ │ ├── regs-apbh.h │ │ │ │ │ │ │ ├── regs-base.h │ │ │ │ │ │ │ ├── regs-bch.h │ │ │ │ │ │ │ ├── regs-clkctrl.h │ │ │ │ │ │ │ ├── regs-common.h │ │ │ │ │ │ │ ├── regs-digctl.h │ │ │ │ │ │ │ ├── regs-gpmi.h │ │ │ │ │ │ │ ├── regs-i2c.h │ │ │ │ │ │ │ ├── regs-lcdif.h │ │ │ │ │ │ │ ├── regs-lradc.h │ │ │ │ │ │ │ ├── regs-ocotp.h │ │ │ │ │ │ │ ├── regs-pinctrl.h │ │ │ │ │ │ │ ├── regs-power.h │ │ │ │ │ │ │ ├── regs-rtc.h │ │ │ │ │ │ │ ├── regs-ssp.h │ │ │ │ │ │ │ ├── regs-timrot.h │ │ │ │ │ │ │ ├── regs-usb.h │ │ │ │ │ │ │ ├── regs-usbphy.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-mx31 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-mx35 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ │ ├── lowlevel_macro.S │ │ │ │ │ │ │ ├── mx35_pins.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-mx5 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ ├── iomux.h │ │ │ │ │ │ │ ├── mx5x_pins.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-mx6 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── crm_regs.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── imx-regs.h │ │ │ │ │ │ │ ├── iomux-v3.h │ │ │ │ │ │ │ ├── mx6x_pins.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-nomadik │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ └── mtu.h │ │ │ │ │ │ │ ├── arch-omap24xx │ │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ │ ├── clocks.h │ │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ │ ├── omap2420.h │ │ │ │ │ │ │ ├── sys_info.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-omap3 │ │ │ │ │ │ │ ├── am35x_def.h │ │ │ │ │ │ │ ├── clocks.h │ │ │ │ │ │ │ ├── clocks_omap3.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ ├── dss.h │ │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ │ ├── emac_defs.h │ │ │ │ │ │ │ ├── emif4.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ │ ├── omap3-regs.h │ │ │ │ │ │ │ ├── omap3.h │ │ │ │ │ │ │ ├── omap_gpmc.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-omap4 │ │ │ │ │ │ │ ├── clocks.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ │ ├── mux_omap4.h │ │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-omap5 │ │ │ │ │ │ │ ├── clocks.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ │ ├── mmc_host_def.h │ │ │ │ │ │ │ ├── mux_omap5.h │ │ │ │ │ │ │ ├── omap.h │ │ │ │ │ │ │ └── sys_proto.h │ │ │ │ │ │ │ ├── arch-orion5x │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── mv88f5182.h │ │ │ │ │ │ │ └── orion5x.h │ │ │ │ │ │ │ ├── arch-pantheon │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── mfp.h │ │ │ │ │ │ │ └── pantheon.h │ │ │ │ │ │ │ ├── arch-pxa │ │ │ │ │ │ │ ├── bitfield.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── pxa-regs.h │ │ │ │ │ │ │ ├── pxa.h │ │ │ │ │ │ │ ├── regs-mmc.h │ │ │ │ │ │ │ └── regs-uart.h │ │ │ │ │ │ │ ├── arch-qcom-common │ │ │ │ │ │ │ ├── bam.h │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── ebi2.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── gsbi.h │ │ │ │ │ │ │ ├── nand.h │ │ │ │ │ │ │ ├── qpic_nand.h │ │ │ │ │ │ │ └── uart.h │ │ │ │ │ │ │ ├── arch-s3c24x0 │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ ├── s3c2400.h │ │ │ │ │ │ │ ├── s3c2410.h │ │ │ │ │ │ │ ├── s3c2440.h │ │ │ │ │ │ │ ├── s3c24x0.h │ │ │ │ │ │ │ └── s3c24x0_cpu.h │ │ │ │ │ │ │ ├── arch-s3c44b0 │ │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ │ ├── arch-s3c4510b │ │ │ │ │ │ │ └── hardware.h │ │ │ │ │ │ │ ├── arch-s3c64xx │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── s3c6400.h │ │ │ │ │ │ │ └── s3c64x0.h │ │ │ │ │ │ │ ├── arch-s5pc1xx │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ │ ├── power.h │ │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ │ ├── sromc.h │ │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ └── watchdog.h │ │ │ │ │ │ │ ├── arch-sa1100 │ │ │ │ │ │ │ └── bitfield.h │ │ │ │ │ │ │ ├── arch-spear │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── spr_defs.h │ │ │ │ │ │ │ ├── spr_emi.h │ │ │ │ │ │ │ ├── spr_gpt.h │ │ │ │ │ │ │ ├── spr_misc.h │ │ │ │ │ │ │ ├── spr_ssp.h │ │ │ │ │ │ │ └── spr_syscntl.h │ │ │ │ │ │ │ ├── arch-tegra2 │ │ │ │ │ │ │ ├── ap20.h │ │ │ │ │ │ │ ├── apb_misc.h │ │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ │ ├── clk_rst.h │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ │ ├── flow.h │ │ │ │ │ │ │ ├── funcmux.h │ │ │ │ │ │ │ ├── fuse.h │ │ │ │ │ │ │ ├── gp_padctrl.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ │ ├── pinmux.h │ │ │ │ │ │ │ ├── pmc.h │ │ │ │ │ │ │ ├── pmu.h │ │ │ │ │ │ │ ├── scu.h │ │ │ │ │ │ │ ├── sdram_param.h │ │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ │ ├── tegra2.h │ │ │ │ │ │ │ ├── tegra_i2c.h │ │ │ │ │ │ │ ├── tegra_spi.h │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ ├── uart-spi-switch.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ │ └── warmboot.h │ │ │ │ │ │ │ ├── arch-tnetv107x │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── emif_defs.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ │ └── nand_defs.h │ │ │ │ │ │ │ ├── arch-u8500 │ │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── sys_proto.h │ │ │ │ │ │ │ └── u8500.h │ │ │ │ │ │ │ ├── armv7.h │ │ │ │ │ │ │ ├── assembler.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── bootm.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ │ ├── ehci-omap.h │ │ │ │ │ │ │ ├── emif.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ │ ├── mach-types.h │ │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ ├── omap_common.h │ │ │ │ │ │ │ ├── omap_gpio.h │ │ │ │ │ │ │ ├── pl310.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── proc-armv │ │ │ │ │ │ │ ├── domain.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ └── system.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ │ ├── sizes.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot-arm.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ │ └── utils.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── _ashldi3.S │ │ │ │ │ │ ├── _ashrdi3.S │ │ │ │ │ │ ├── _divsi3.S │ │ │ │ │ │ ├── _lshrdi3.S │ │ │ │ │ │ ├── _modsi3.S │ │ │ │ │ │ ├── _udivsi3.S │ │ │ │ │ │ ├── _umodsi3.S │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── cache-cp15.c │ │ │ │ │ │ ├── cache-pl310.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── div0.c │ │ │ │ │ │ ├── eabi_compat.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── memcpy.S │ │ │ │ │ │ ├── memset.S │ │ │ │ │ │ └── reset.c │ │ │ │ ├── avr32 │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at32ap700x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ │ ├── mmu.c │ │ │ │ │ │ │ ├── portmux.c │ │ │ │ │ │ │ └── sm.h │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── exception.c │ │ │ │ │ │ ├── hsdramc.c │ │ │ │ │ │ ├── hsdramc1.h │ │ │ │ │ │ ├── hsmc3.h │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── pio2.h │ │ │ │ │ │ ├── portmux-gpio.c │ │ │ │ │ │ ├── portmux-pio.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── arch-at32ap700x │ │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ │ ├── cacheflush.h │ │ │ │ │ │ │ ├── chip-features.h │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── gpio-impl.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── hmatrix.h │ │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ │ └── portmux.h │ │ │ │ │ │ │ ├── arch-common │ │ │ │ │ │ │ ├── portmux-gpio.h │ │ │ │ │ │ │ └── portmux-pio.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── hmatrix-common.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── sysreg.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ └── memset.S │ │ │ │ ├── blackfin │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bootcount.c │ │ │ │ │ │ ├── bootrom-asm-offsets.awk │ │ │ │ │ │ ├── bootrom-asm-offsets.c.in │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── init.lds.S │ │ │ │ │ │ ├── initcode.c │ │ │ │ │ │ ├── initcode.h │ │ │ │ │ │ ├── interrupt.S │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── jtag-console.c │ │ │ │ │ │ ├── os_log.c │ │ │ │ │ │ ├── reset.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ ├── serial.h │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── bfin_logo_230x230_gzip.h │ │ │ │ │ │ │ ├── bfin_logo_230x230_lzma.h │ │ │ │ │ │ │ ├── bfin_logo_rgb565_230x230_gzip.h │ │ │ │ │ │ │ ├── bfin_logo_rgb565_230x230_lzma.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── blackfin.h │ │ │ │ │ │ │ ├── blackfin_cdef.h │ │ │ │ │ │ │ ├── blackfin_def.h │ │ │ │ │ │ │ ├── blackfin_local.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config-pre.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── cplb.h │ │ │ │ │ │ │ ├── deferred.h │ │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ ├── entry.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ │ ├── mach-bf506 │ │ │ │ │ │ │ ├── BF504_cdef.h │ │ │ │ │ │ │ ├── BF504_def.h │ │ │ │ │ │ │ ├── BF506_cdef.h │ │ │ │ │ │ │ ├── BF506_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf518 │ │ │ │ │ │ │ ├── BF512_cdef.h │ │ │ │ │ │ │ ├── BF512_def.h │ │ │ │ │ │ │ ├── BF514_cdef.h │ │ │ │ │ │ │ ├── BF514_def.h │ │ │ │ │ │ │ ├── BF516_cdef.h │ │ │ │ │ │ │ ├── BF516_def.h │ │ │ │ │ │ │ ├── BF518_cdef.h │ │ │ │ │ │ │ ├── BF518_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf527 │ │ │ │ │ │ │ ├── BF522_cdef.h │ │ │ │ │ │ │ ├── BF522_def.h │ │ │ │ │ │ │ ├── BF523_cdef.h │ │ │ │ │ │ │ ├── BF523_def.h │ │ │ │ │ │ │ ├── BF524_cdef.h │ │ │ │ │ │ │ ├── BF524_def.h │ │ │ │ │ │ │ ├── BF525_cdef.h │ │ │ │ │ │ │ ├── BF525_def.h │ │ │ │ │ │ │ ├── BF526_cdef.h │ │ │ │ │ │ │ ├── BF526_def.h │ │ │ │ │ │ │ ├── BF527_cdef.h │ │ │ │ │ │ │ ├── BF527_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf533 │ │ │ │ │ │ │ ├── BF531_cdef.h │ │ │ │ │ │ │ ├── BF531_def.h │ │ │ │ │ │ │ ├── BF532_cdef.h │ │ │ │ │ │ │ ├── BF532_def.h │ │ │ │ │ │ │ ├── BF533_cdef.h │ │ │ │ │ │ │ ├── BF533_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf537 │ │ │ │ │ │ │ ├── BF534_cdef.h │ │ │ │ │ │ │ ├── BF534_def.h │ │ │ │ │ │ │ ├── BF536_cdef.h │ │ │ │ │ │ │ ├── BF536_def.h │ │ │ │ │ │ │ ├── BF537_cdef.h │ │ │ │ │ │ │ ├── BF537_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf538 │ │ │ │ │ │ │ ├── BF538_cdef.h │ │ │ │ │ │ │ ├── BF538_def.h │ │ │ │ │ │ │ ├── BF539_cdef.h │ │ │ │ │ │ │ ├── BF539_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf548 │ │ │ │ │ │ │ ├── ADSP-EDN-BF542-extended_cdef.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF542-extended_def.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF544-extended_cdef.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF544-extended_def.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF547-extended_cdef.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF547-extended_def.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF548-extended_cdef.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF548-extended_def.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF549-extended_cdef.h │ │ │ │ │ │ │ ├── ADSP-EDN-BF549-extended_def.h │ │ │ │ │ │ │ ├── BF542_cdef.h │ │ │ │ │ │ │ ├── BF542_def.h │ │ │ │ │ │ │ ├── BF544_cdef.h │ │ │ │ │ │ │ ├── BF544_def.h │ │ │ │ │ │ │ ├── BF547_cdef.h │ │ │ │ │ │ │ ├── BF547_def.h │ │ │ │ │ │ │ ├── BF548_cdef.h │ │ │ │ │ │ │ ├── BF548_def.h │ │ │ │ │ │ │ ├── BF549_cdef.h │ │ │ │ │ │ │ ├── BF549_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-bf561 │ │ │ │ │ │ │ ├── BF561_cdef.h │ │ │ │ │ │ │ ├── BF561_def.h │ │ │ │ │ │ │ ├── anomaly.h │ │ │ │ │ │ │ ├── def_local.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ │ │ ├── mach-common │ │ │ │ │ │ │ ├── ADSP-EDN-core_cdef.h │ │ │ │ │ │ │ ├── ADSP-EDN-core_def.h │ │ │ │ │ │ │ └── bits │ │ │ │ │ │ │ │ ├── bootrom.h │ │ │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ │ ├── ebiu.h │ │ │ │ │ │ │ │ ├── emac.h │ │ │ │ │ │ │ │ ├── eppi.h │ │ │ │ │ │ │ │ ├── lockbox.h │ │ │ │ │ │ │ │ ├── mpu.h │ │ │ │ │ │ │ │ ├── otp.h │ │ │ │ │ │ │ │ ├── pata.h │ │ │ │ │ │ │ │ ├── pll.h │ │ │ │ │ │ │ │ ├── ports-a.h │ │ │ │ │ │ │ │ ├── ports-b.h │ │ │ │ │ │ │ │ ├── ports-c.h │ │ │ │ │ │ │ │ ├── ports-d.h │ │ │ │ │ │ │ │ ├── ports-e.h │ │ │ │ │ │ │ │ ├── ports-f.h │ │ │ │ │ │ │ │ ├── ports-g.h │ │ │ │ │ │ │ │ ├── ports-h.h │ │ │ │ │ │ │ │ ├── ports-i.h │ │ │ │ │ │ │ │ ├── ports-j.h │ │ │ │ │ │ │ │ ├── ppi.h │ │ │ │ │ │ │ │ ├── rtc.h │ │ │ │ │ │ │ │ ├── sdh.h │ │ │ │ │ │ │ │ ├── spi.h │ │ │ │ │ │ │ │ ├── sport.h │ │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ │ ├── trace.h │ │ │ │ │ │ │ │ ├── twi.h │ │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ │ │ └── watchdog.h │ │ │ │ │ │ │ ├── mem_map.h │ │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ │ ├── portmux.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── sdh.h │ │ │ │ │ │ │ ├── shared_resources.h │ │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── traps.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── __kgdb.S │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── boot.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── clocks.c │ │ │ │ │ │ ├── cmd_cache_dump.c │ │ │ │ │ │ ├── ins.S │ │ │ │ │ │ ├── kgdb.c │ │ │ │ │ │ ├── kgdb.h │ │ │ │ │ │ ├── memcmp.S │ │ │ │ │ │ ├── memcpy.S │ │ │ │ │ │ ├── memmove.S │ │ │ │ │ │ ├── memset.S │ │ │ │ │ │ ├── muldi3.c │ │ │ │ │ │ ├── outs.S │ │ │ │ │ │ ├── post.c │ │ │ │ │ │ └── string.c │ │ │ │ ├── m68k │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── mcf5227x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── mcf523x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── mcf52x2 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── mcf532x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ ├── mcf5445x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ └── mcf547x_8x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── slicetimer.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── coldfire │ │ │ │ │ │ │ ├── ata.h │ │ │ │ │ │ │ ├── crossbar.h │ │ │ │ │ │ │ ├── dspi.h │ │ │ │ │ │ │ ├── edma.h │ │ │ │ │ │ │ ├── eport.h │ │ │ │ │ │ │ ├── flexbus.h │ │ │ │ │ │ │ ├── flexcan.h │ │ │ │ │ │ │ ├── intctrl.h │ │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ │ ├── mdha.h │ │ │ │ │ │ │ ├── pwm.h │ │ │ │ │ │ │ ├── qspi.h │ │ │ │ │ │ │ ├── rng.h │ │ │ │ │ │ │ ├── skha.h │ │ │ │ │ │ │ └── ssi.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ │ │ ├── fsl_mcdmafec.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── immap.h │ │ │ │ │ │ │ ├── immap_520x.h │ │ │ │ │ │ │ ├── immap_5227x.h │ │ │ │ │ │ │ ├── immap_5235.h │ │ │ │ │ │ │ ├── immap_5249.h │ │ │ │ │ │ │ ├── immap_5253.h │ │ │ │ │ │ │ ├── immap_5271.h │ │ │ │ │ │ │ ├── immap_5272.h │ │ │ │ │ │ │ ├── immap_5275.h │ │ │ │ │ │ │ ├── immap_5282.h │ │ │ │ │ │ │ ├── immap_5301x.h │ │ │ │ │ │ │ ├── immap_5329.h │ │ │ │ │ │ │ ├── immap_5445x.h │ │ │ │ │ │ │ ├── immap_547x_8x.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── m520x.h │ │ │ │ │ │ │ ├── m5227x.h │ │ │ │ │ │ │ ├── m5235.h │ │ │ │ │ │ │ ├── m5249.h │ │ │ │ │ │ │ ├── m5253.h │ │ │ │ │ │ │ ├── m5271.h │ │ │ │ │ │ │ ├── m5272.h │ │ │ │ │ │ │ ├── m5275.h │ │ │ │ │ │ │ ├── m5282.h │ │ │ │ │ │ │ ├── m5301x.h │ │ │ │ │ │ │ ├── m5329.h │ │ │ │ │ │ │ ├── m5445x.h │ │ │ │ │ │ │ ├── m547x_8x.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── rtc.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── time.c │ │ │ │ │ │ └── traps.c │ │ │ │ ├── microblaze │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── exception.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── irq.S │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── microblaze_intc.h │ │ │ │ │ │ │ ├── microblaze_timer.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ └── time.c │ │ │ │ ├── mips │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── mips32 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── au1x00 │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── au1x00_eth.c │ │ │ │ │ │ │ │ ├── au1x00_serial.c │ │ │ │ │ │ │ │ ├── au1x00_usb_ohci.c │ │ │ │ │ │ │ │ ├── au1x00_usb_ohci.h │ │ │ │ │ │ │ │ └── config.mk │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── incaip │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── asc_serial.c │ │ │ │ │ │ │ │ ├── asc_serial.h │ │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ │ ├── incaip_clock.c │ │ │ │ │ │ │ │ └── incaip_wdt.S │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── time.c │ │ │ │ │ │ └── xburst │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── jz4740.c │ │ │ │ │ │ │ ├── jz_serial.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── addrspace.h │ │ │ │ │ │ │ ├── asm.h │ │ │ │ │ │ │ ├── au1x00.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── cachectl.h │ │ │ │ │ │ │ ├── cacheops.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── inca-ip.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── isadep.h │ │ │ │ │ │ │ ├── jz4740.h │ │ │ │ │ │ │ ├── mipsregs.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ │ ├── regdef.h │ │ │ │ │ │ │ ├── sgidefs.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot-mips.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ └── bootm_qemu_mips.c │ │ │ │ ├── nds32 │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ └── n1213 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── ag101 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── watchdog.S │ │ │ │ │ │ │ ├── ag102 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ │ ├── timer.c │ │ │ │ │ │ │ └── watchdog.S │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── arch-ag101 │ │ │ │ │ │ │ └── ag101.h │ │ │ │ │ │ │ ├── arch-ag102 │ │ │ │ │ │ │ └── ag102.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── linkage.h │ │ │ │ │ │ │ ├── mach-types.h │ │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot-nds32.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ └── interrupts.c │ │ │ │ ├── nios2 │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── epcs.c │ │ │ │ │ │ ├── exceptions.S │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ ├── sysid.c │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── bitops │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── ffs.h │ │ │ │ │ │ │ └── non-atomic.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── dma-mapping.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── opcodes.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── psr.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── status_led.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ ├── libgcc.c │ │ │ │ │ │ ├── longlong.h │ │ │ │ │ │ └── time.c │ │ │ │ ├── openrisc │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── exceptions.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ └── start.S │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── bitops │ │ │ │ │ │ │ ├── ffs.h │ │ │ │ │ │ │ └── fls.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── openrisc_exc.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── spr-defs.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ └── timer.c │ │ │ │ ├── powerpc │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── 74xx_7xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc512x │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── asm-offsets.h │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── diu.c │ │ │ │ │ │ │ ├── fixed_sdram.c │ │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ │ ├── iim.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── iopin.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc5xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc5xxx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── firmware_sc_task_bestcomm.impl.S │ │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ │ ├── loadtask.c │ │ │ │ │ │ │ ├── pci_mpc5200.c │ │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ ├── u-boot-customlayout.lds │ │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ │ └── usb_ohci.h │ │ │ │ │ │ ├── mpc8220 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ │ ├── dramSetup.c │ │ │ │ │ │ │ ├── dramSetup.h │ │ │ │ │ │ │ ├── fec.c │ │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ │ ├── fec_dma_tasks.S │ │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ │ ├── i2cCore.c │ │ │ │ │ │ │ ├── i2cCore.h │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── io.S │ │ │ │ │ │ │ ├── loadtask.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ │ └── uart.c │ │ │ │ │ │ ├── mpc824x │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ ├── epic.h │ │ │ │ │ │ │ │ ├── epic │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ ├── epic.h │ │ │ │ │ │ │ │ │ ├── epic1.c │ │ │ │ │ │ │ │ │ ├── epic2.S │ │ │ │ │ │ │ │ │ └── epicutil.S │ │ │ │ │ │ │ │ ├── errors.h │ │ │ │ │ │ │ │ ├── i2c │ │ │ │ │ │ │ │ │ └── i2c.c │ │ │ │ │ │ │ │ └── i2c_export.h │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc8260 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bedbug_603e.c │ │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── ether_fcc.c │ │ │ │ │ │ │ ├── ether_scc.c │ │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── serial_scc.c │ │ │ │ │ │ │ ├── serial_smc.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── speed.h │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc83xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ │ ├── nand_init.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── pcie.c │ │ │ │ │ │ │ ├── qe_io.c │ │ │ │ │ │ │ ├── serdes.c │ │ │ │ │ │ │ ├── spd_sdram.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc85xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── cmd_errata.c │ │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── cpu_init_early.c │ │ │ │ │ │ │ ├── cpu_init_nand.c │ │ │ │ │ │ │ ├── ddr-gen1.c │ │ │ │ │ │ │ ├── ddr-gen2.c │ │ │ │ │ │ │ ├── ddr-gen3.c │ │ │ │ │ │ │ ├── ether_fcc.c │ │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ │ ├── fixed_ivor.S │ │ │ │ │ │ │ ├── fsl_corenet_serdes.c │ │ │ │ │ │ │ ├── fsl_corenet_serdes.h │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── liodn.c │ │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ │ ├── mp.h │ │ │ │ │ │ │ ├── mpc8536_serdes.c │ │ │ │ │ │ │ ├── mpc8544_serdes.c │ │ │ │ │ │ │ ├── mpc8548_serdes.c │ │ │ │ │ │ │ ├── mpc8568_serdes.c │ │ │ │ │ │ │ ├── mpc8569_serdes.c │ │ │ │ │ │ │ ├── mpc8572_serdes.c │ │ │ │ │ │ │ ├── p1010_serdes.c │ │ │ │ │ │ │ ├── p1021_serdes.c │ │ │ │ │ │ │ ├── p1022_serdes.c │ │ │ │ │ │ │ ├── p1023_serdes.c │ │ │ │ │ │ │ ├── p2020_serdes.c │ │ │ │ │ │ │ ├── p2041_ids.c │ │ │ │ │ │ │ ├── p2041_serdes.c │ │ │ │ │ │ │ ├── p3041_ids.c │ │ │ │ │ │ │ ├── p3041_serdes.c │ │ │ │ │ │ │ ├── p3060_ids.c │ │ │ │ │ │ │ ├── p3060_serdes.c │ │ │ │ │ │ │ ├── p4080_ids.c │ │ │ │ │ │ │ ├── p4080_serdes.c │ │ │ │ │ │ │ ├── p5020_ids.c │ │ │ │ │ │ │ ├── p5020_serdes.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ ├── portals.c │ │ │ │ │ │ │ ├── qe_io.c │ │ │ │ │ │ │ ├── release.S │ │ │ │ │ │ │ ├── resetvec.S │ │ │ │ │ │ │ ├── serial_scc.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ ├── u-boot-nand.lds │ │ │ │ │ │ │ ├── u-boot-nand_spl.lds │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc86xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── ddr-8641.c │ │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ │ ├── mpc8610_serdes.c │ │ │ │ │ │ │ ├── mpc8641_serdes.c │ │ │ │ │ │ │ ├── release.S │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc8xx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bedbug_860.c │ │ │ │ │ │ │ ├── commproc.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ │ ├── fec.c │ │ │ │ │ │ │ ├── fec.h │ │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ │ ├── lcd.c │ │ │ │ │ │ │ ├── plprcr_write.S │ │ │ │ │ │ │ ├── scc.c │ │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ ├── upatch.c │ │ │ │ │ │ │ ├── video.c │ │ │ │ │ │ │ └── wlkbd.c │ │ │ │ │ │ ├── mpc8xxx │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── ddr │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── common_timing_params.h │ │ │ │ │ │ │ │ ├── ctrl_regs.c │ │ │ │ │ │ │ │ ├── ddr.h │ │ │ │ │ │ │ │ ├── ddr1_dimm_params.c │ │ │ │ │ │ │ │ ├── ddr2_dimm_params.c │ │ │ │ │ │ │ │ ├── ddr3_dimm_params.c │ │ │ │ │ │ │ │ ├── interactive.c │ │ │ │ │ │ │ │ ├── lc_common_dimm_params.c │ │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ │ ├── options.c │ │ │ │ │ │ │ │ └── util.c │ │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ │ ├── fsl_ifc.c │ │ │ │ │ │ │ ├── fsl_lbc.c │ │ │ │ │ │ │ └── srio.c │ │ │ │ │ │ └── ppc4xx │ │ │ │ │ │ │ ├── 40x_spd_sdram.c │ │ │ │ │ │ │ ├── 44x_spd_ddr.c │ │ │ │ │ │ │ ├── 44x_spd_ddr2.c │ │ │ │ │ │ │ ├── 4xx_ibm_ddr2_autocalib.c │ │ │ │ │ │ │ ├── 4xx_pci.c │ │ │ │ │ │ │ ├── 4xx_pcie.c │ │ │ │ │ │ │ ├── 4xx_uart.c │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── bedbug_405.c │ │ │ │ │ │ │ ├── cache.S │ │ │ │ │ │ │ ├── cmd_chip_config.c │ │ │ │ │ │ │ ├── cmd_ecctest.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── dcr.S │ │ │ │ │ │ │ ├── denali_data_eye.c │ │ │ │ │ │ │ ├── denali_spd_ddr2.c │ │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── iop480_uart.c │ │ │ │ │ │ │ ├── kgdb.S │ │ │ │ │ │ │ ├── miiphy.c │ │ │ │ │ │ │ ├── reginfo.c │ │ │ │ │ │ │ ├── resetvec.S │ │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ │ ├── sdram.h │ │ │ │ │ │ │ ├── speed.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ │ ├── traps.c │ │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ │ ├── uic.c │ │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ │ ├── usb_ohci.c │ │ │ │ │ │ │ ├── usb_ohci.h │ │ │ │ │ │ │ └── xilinx_irq.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── 4xx_pci.h │ │ │ │ │ │ │ ├── 4xx_pcie.h │ │ │ │ │ │ │ ├── 5xx_immap.h │ │ │ │ │ │ │ ├── 8xx_immap.h │ │ │ │ │ │ │ ├── apm821xx.h │ │ │ │ │ │ │ ├── arch-mpc83xx │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── config_mpc85xx.h │ │ │ │ │ │ │ ├── config_mpc86xx.h │ │ │ │ │ │ │ ├── cpm_8260.h │ │ │ │ │ │ │ ├── cpm_85xx.h │ │ │ │ │ │ │ ├── e300.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── fsl_ddr_dimm_params.h │ │ │ │ │ │ │ ├── fsl_ddr_sdram.h │ │ │ │ │ │ │ ├── fsl_dma.h │ │ │ │ │ │ │ ├── fsl_dtsec.h │ │ │ │ │ │ │ ├── fsl_enet.h │ │ │ │ │ │ │ ├── fsl_fman.h │ │ │ │ │ │ │ ├── fsl_i2c.h │ │ │ │ │ │ │ ├── fsl_ifc.h │ │ │ │ │ │ │ ├── fsl_law.h │ │ │ │ │ │ │ ├── fsl_lbc.h │ │ │ │ │ │ │ ├── fsl_liodn.h │ │ │ │ │ │ │ ├── fsl_mpc83xx_serdes.h │ │ │ │ │ │ │ ├── fsl_pci.h │ │ │ │ │ │ │ ├── fsl_portals.h │ │ │ │ │ │ │ ├── fsl_secure_boot.h │ │ │ │ │ │ │ ├── fsl_serdes.h │ │ │ │ │ │ │ ├── fsl_srio.h │ │ │ │ │ │ │ ├── fsl_tgec.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── immap_512x.h │ │ │ │ │ │ │ ├── immap_8220.h │ │ │ │ │ │ │ ├── immap_8260.h │ │ │ │ │ │ │ ├── immap_83xx.h │ │ │ │ │ │ │ ├── immap_85xx.h │ │ │ │ │ │ │ ├── immap_86xx.h │ │ │ │ │ │ │ ├── immap_qe.h │ │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── iopin_8260.h │ │ │ │ │ │ │ ├── iopin_85xx.h │ │ │ │ │ │ │ ├── iopin_8xx.h │ │ │ │ │ │ │ ├── m8260_pci.h │ │ │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ │ │ ├── mmu.h │ │ │ │ │ │ │ ├── mp.h │ │ │ │ │ │ │ ├── mpc512x.h │ │ │ │ │ │ │ ├── mpc8349_pci.h │ │ │ │ │ │ │ ├── mpc85xx_gpio.h │ │ │ │ │ │ │ ├── mpc8xxx_spi.h │ │ │ │ │ │ │ ├── pci_io.h │ │ │ │ │ │ │ ├── pnp.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── ppc405.h │ │ │ │ │ │ │ ├── ppc405cr.h │ │ │ │ │ │ │ ├── ppc405ep.h │ │ │ │ │ │ │ ├── ppc405ex.h │ │ │ │ │ │ │ ├── ppc405ez.h │ │ │ │ │ │ │ ├── ppc405gp.h │ │ │ │ │ │ │ ├── ppc440.h │ │ │ │ │ │ │ ├── ppc440ep_gr.h │ │ │ │ │ │ │ ├── ppc440epx_grx.h │ │ │ │ │ │ │ ├── ppc440gp.h │ │ │ │ │ │ │ ├── ppc440gx.h │ │ │ │ │ │ │ ├── ppc440sp.h │ │ │ │ │ │ │ ├── ppc440spe.h │ │ │ │ │ │ │ ├── ppc460ex_gt.h │ │ │ │ │ │ │ ├── ppc460sx.h │ │ │ │ │ │ │ ├── ppc4xx-ebc.h │ │ │ │ │ │ │ ├── ppc4xx-emac.h │ │ │ │ │ │ │ ├── ppc4xx-gpio.h │ │ │ │ │ │ │ ├── ppc4xx-i2c.h │ │ │ │ │ │ │ ├── ppc4xx-isram.h │ │ │ │ │ │ │ ├── ppc4xx-mal.h │ │ │ │ │ │ │ ├── ppc4xx-sdram.h │ │ │ │ │ │ │ ├── ppc4xx-uic.h │ │ │ │ │ │ │ ├── ppc4xx.h │ │ │ │ │ │ │ ├── ppc4xx_config.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── residual.h │ │ │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ │ ├── status_led.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ │ └── xilinx_irq.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── _ashldi3.S │ │ │ │ │ │ ├── _ashrdi3.S │ │ │ │ │ │ ├── _lshrdi3.S │ │ │ │ │ │ ├── bat_rw.c │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootcount.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── extable.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ ├── kgdb.c │ │ │ │ │ │ ├── memcpy_mpc5200.c │ │ │ │ │ │ ├── ppccache.S │ │ │ │ │ │ ├── ppcstring.S │ │ │ │ │ │ ├── reloc.S │ │ │ │ │ │ ├── ticks.S │ │ │ │ │ │ └── time.c │ │ │ │ ├── sandbox │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── os.c │ │ │ │ │ │ ├── start.c │ │ │ │ │ │ ├── state.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ │ ├── state.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot-sandbox.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ └── interrupts.c │ │ │ │ ├── sh │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── sh2 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ │ ├── sh3 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ │ └── sh4 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── clk.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── cpu_sh2.h │ │ │ │ │ │ │ ├── cpu_sh3.h │ │ │ │ │ │ │ ├── cpu_sh4.h │ │ │ │ │ │ │ ├── cpu_sh7203.h │ │ │ │ │ │ │ ├── cpu_sh7264.h │ │ │ │ │ │ │ ├── cpu_sh7269.h │ │ │ │ │ │ │ ├── cpu_sh7706.h │ │ │ │ │ │ │ ├── cpu_sh7710.h │ │ │ │ │ │ │ ├── cpu_sh7720.h │ │ │ │ │ │ │ ├── cpu_sh7722.h │ │ │ │ │ │ │ ├── cpu_sh7723.h │ │ │ │ │ │ │ ├── cpu_sh7724.h │ │ │ │ │ │ │ ├── cpu_sh7734.h │ │ │ │ │ │ │ ├── cpu_sh7750.h │ │ │ │ │ │ │ ├── cpu_sh7757.h │ │ │ │ │ │ │ ├── cpu_sh7763.h │ │ │ │ │ │ │ ├── cpu_sh7780.h │ │ │ │ │ │ │ ├── cpu_sh7785.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ │ ├── macro.h │ │ │ │ │ │ │ ├── mmc.h │ │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ ├── unaligned-sh4a.h │ │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ │ └── zimage.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ashiftlt.S │ │ │ │ │ │ ├── ashiftrt.S │ │ │ │ │ │ ├── ashldi3.c │ │ │ │ │ │ ├── ashrsi3.S │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── libgcc.h │ │ │ │ │ │ ├── lshiftrt.S │ │ │ │ │ │ ├── lshrdi3.c │ │ │ │ │ │ ├── movmem.S │ │ │ │ │ │ ├── time.c │ │ │ │ │ │ ├── time_sh2.c │ │ │ │ │ │ └── zimageboot.c │ │ │ │ ├── sparc │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── leon2 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ │ └── start.S │ │ │ │ │ │ └── leon3 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── ambapp.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ ├── cpu_init.c │ │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ │ ├── start.S │ │ │ │ │ │ │ ├── usb_uhci.c │ │ │ │ │ │ │ └── usb_uhci.h │ │ │ │ │ ├── include │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ ├── arch-leon2 │ │ │ │ │ │ │ └── asi.h │ │ │ │ │ │ │ ├── arch-leon3 │ │ │ │ │ │ │ └── asi.h │ │ │ │ │ │ │ ├── asi.h │ │ │ │ │ │ │ ├── asmmacro.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ │ ├── leon.h │ │ │ │ │ │ │ ├── leon2.h │ │ │ │ │ │ │ ├── leon3.h │ │ │ │ │ │ │ ├── machines.h │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ │ ├── prom.h │ │ │ │ │ │ │ ├── psr.h │ │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ │ ├── srmmu.h │ │ │ │ │ │ │ ├── stack.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ │ └── winmacro.h │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── bootm.c │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── interrupts.c │ │ │ │ │ │ └── time.c │ │ │ │ └── x86 │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── cpu │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── coreboot │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ ├── coreboot_car.S │ │ │ │ │ │ ├── ipchecksum.c │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ ├── sysinfo.c │ │ │ │ │ │ └── tables.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── resetvec.S │ │ │ │ │ ├── sc520 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asm-offsets.c │ │ │ │ │ │ ├── sc520.c │ │ │ │ │ │ ├── sc520_car.S │ │ │ │ │ │ ├── sc520_pci.c │ │ │ │ │ │ ├── sc520_reset.c │ │ │ │ │ │ ├── sc520_sdram.c │ │ │ │ │ │ ├── sc520_ssi.c │ │ │ │ │ │ └── sc520_timer.c │ │ │ │ │ ├── start.S │ │ │ │ │ ├── start16.S │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ ├── arch-coreboot │ │ │ │ │ │ ├── ipchecksum.h │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ └── tables.h │ │ │ │ │ │ ├── arch-sc520 │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── sc520.h │ │ │ │ │ │ └── ssi.h │ │ │ │ │ │ ├── bitops.h │ │ │ │ │ │ ├── bootparam.h │ │ │ │ │ │ ├── byteorder.h │ │ │ │ │ │ ├── cache.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── e820.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ ├── i8254.h │ │ │ │ │ │ ├── i8259.h │ │ │ │ │ │ ├── ibmpc.h │ │ │ │ │ │ ├── init_helpers.h │ │ │ │ │ │ ├── init_wrappers.h │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── ist.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── posix_types.h │ │ │ │ │ │ ├── processor-flags.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── realmode.h │ │ │ │ │ │ ├── relocate.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── u-boot-x86.h │ │ │ │ │ │ ├── u-boot.h │ │ │ │ │ │ ├── unaligned.h │ │ │ │ │ │ ├── video │ │ │ │ │ │ └── edid.h │ │ │ │ │ │ └── zimage.h │ │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bios.S │ │ │ │ │ ├── bios.h │ │ │ │ │ ├── bios_pci.S │ │ │ │ │ ├── bios_setup.c │ │ │ │ │ ├── board.c │ │ │ │ │ ├── bootm.c │ │ │ │ │ ├── cmd_boot.c │ │ │ │ │ ├── gcc.c │ │ │ │ │ ├── init_helpers.c │ │ │ │ │ ├── init_wrappers.c │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── pcat_interrupts.c │ │ │ │ │ ├── pcat_timer.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pci_type1.c │ │ │ │ │ ├── realmode.c │ │ │ │ │ ├── realmode_switch.S │ │ │ │ │ ├── relocate.c │ │ │ │ │ ├── string.c │ │ │ │ │ ├── timer.c │ │ │ │ │ ├── video.c │ │ │ │ │ ├── video_bios.c │ │ │ │ │ └── zimage.c │ │ │ │ ├── board │ │ │ │ ├── AndesTech │ │ │ │ │ ├── adp-ag101 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── adp-ag101.c │ │ │ │ │ ├── adp-ag101p │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── adp-ag101p.c │ │ │ │ │ └── adp-ag102 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── adp-ag102.c │ │ │ │ ├── BuS │ │ │ │ │ ├── EB+MCF-EV123 │ │ │ │ │ │ ├── EB+MCF-EV123.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cfm_flash.c │ │ │ │ │ │ ├── cfm_flash.h │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── eb_cpux9k2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── cpux9k2.c │ │ │ │ │ └── vl_ma2sc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── vl_ma2sc.c │ │ │ │ ├── CarMediaLab │ │ │ │ │ └── flea3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flea3.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── LEOX │ │ │ │ │ └── elpt860 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.LEOX │ │ │ │ │ │ ├── elpt860.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── LaCie │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ └── common.h │ │ │ │ │ ├── edminiv2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── edminiv2.c │ │ │ │ │ ├── net2big_v2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── net2big_v2.c │ │ │ │ │ │ └── net2big_v2.h │ │ │ │ │ └── netspace_v2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage-is2.cfg │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── netspace_v2.c │ │ │ │ │ │ └── netspace_v2.h │ │ │ │ ├── Marvell │ │ │ │ │ ├── aspenite │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── aspenite.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── bootseq.txt │ │ │ │ │ │ ├── ecctest.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── intel_flash.c │ │ │ │ │ │ ├── intel_flash.h │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── misc.S │ │ │ │ │ │ ├── ns16550.c │ │ │ │ │ │ ├── ns16550.h │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ └── serial.h │ │ │ │ │ ├── db64360 │ │ │ │ │ │ ├── 64360.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── db64360.c │ │ │ │ │ │ ├── eth.h │ │ │ │ │ │ ├── mpsc.c │ │ │ │ │ │ ├── mpsc.h │ │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── sdram_init.c │ │ │ │ │ ├── db64460 │ │ │ │ │ │ ├── 64460.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── db64460.c │ │ │ │ │ │ ├── eth.h │ │ │ │ │ │ ├── mpsc.c │ │ │ │ │ │ ├── mpsc.h │ │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── sdram_init.c │ │ │ │ │ ├── dkb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── dkb.c │ │ │ │ │ ├── dreamplug │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dreamplug.c │ │ │ │ │ │ ├── dreamplug.h │ │ │ │ │ │ └── kwbimage.cfg │ │ │ │ │ ├── gplugd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── gplugd.c │ │ │ │ │ ├── guruplug │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── guruplug.c │ │ │ │ │ │ ├── guruplug.h │ │ │ │ │ │ └── kwbimage.cfg │ │ │ │ │ ├── include │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── mv_gen_reg.h │ │ │ │ │ │ └── pci.h │ │ │ │ │ ├── mv88f6281gtw_ge │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── mv88f6281gtw_ge.c │ │ │ │ │ │ └── mv88f6281gtw_ge.h │ │ │ │ │ ├── openrd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── openrd.c │ │ │ │ │ │ └── openrd.h │ │ │ │ │ ├── rd6281a │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── rd6281a.c │ │ │ │ │ │ └── rd6281a.h │ │ │ │ │ └── sheevaplug │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── sheevaplug.c │ │ │ │ │ │ └── sheevaplug.h │ │ │ │ ├── RPXClassic │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── RPXClassic.c │ │ │ │ │ ├── eccx.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── RPXlite │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── RPXlite.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── RPXlite_dw │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── RPXlite_dw.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── RRvision │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── RRvision.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── video_ad7179.h │ │ │ │ ├── Seagate │ │ │ │ │ └── dockstar │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dockstar.c │ │ │ │ │ │ ├── dockstar.h │ │ │ │ │ │ └── kwbimage.cfg │ │ │ │ ├── a3000 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── a3000.c │ │ │ │ │ └── flash.c │ │ │ │ ├── a4m072 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── a4m072.c │ │ │ │ │ └── mt46v32m16.h │ │ │ │ ├── actux1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── actux1.c │ │ │ │ │ ├── actux1_hw.h │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── actux2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── actux2.c │ │ │ │ │ ├── actux2_hw.h │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── actux3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── actux3.c │ │ │ │ │ ├── actux3_hw.h │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── actux4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── actux4.c │ │ │ │ │ └── actux4_hw.h │ │ │ │ ├── adder │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── adder.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── afeb9260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── afeb9260.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── partition.c │ │ │ │ ├── ait │ │ │ │ │ └── cam_enc_4xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cam_enc_4xx.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ │ └── ublimage.cfg │ │ │ │ ├── alaska │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── alaska.c │ │ │ │ │ └── flash.c │ │ │ │ ├── alphaproject │ │ │ │ │ └── ap_sh4a_4a │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ap_sh4a_4a.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── altera │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AMDLV065D.c │ │ │ │ │ │ ├── cfide.c │ │ │ │ │ │ ├── epled.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── sevenseg.c │ │ │ │ │ │ └── sevenseg.h │ │ │ │ │ └── nios2-generic │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── custom_fpga.h │ │ │ │ │ │ ├── nios2-generic.c │ │ │ │ │ │ ├── text_base.S │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── amcc │ │ │ │ │ ├── acadia │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── acadia.c │ │ │ │ │ │ ├── cmd_acadia.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── pll.c │ │ │ │ │ │ └── u-boot-nand.lds │ │ │ │ │ ├── bamboo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bamboo.c │ │ │ │ │ │ ├── bamboo.h │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── u-boot-nand.lds │ │ │ │ │ ├── bluestone │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bluestone.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── init.S │ │ │ │ │ ├── bubinga │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bubinga.c │ │ │ │ │ │ └── flash.c │ │ │ │ │ ├── canyonlands │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── canyonlands.c │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── u-boot-nand.lds │ │ │ │ │ ├── common │ │ │ │ │ │ └── flash.c │ │ │ │ │ ├── ebony │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── ebony.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── init.S │ │ │ │ │ ├── katmai │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── katmai.c │ │ │ │ │ ├── kilauea │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── kilauea.c │ │ │ │ │ │ └── u-boot-nand.lds │ │ │ │ │ ├── luan │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── epld.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── luan.c │ │ │ │ │ ├── makalu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_pll.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── makalu.c │ │ │ │ │ ├── ocotea │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── ocotea.c │ │ │ │ │ │ └── ocotea.h │ │ │ │ │ ├── redwood │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── redwood.c │ │ │ │ │ │ └── redwood.h │ │ │ │ │ ├── sequoia │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ ├── sequoia.c │ │ │ │ │ │ ├── u-boot-nand.lds │ │ │ │ │ │ └── u-boot-ram.lds │ │ │ │ │ ├── taihu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── lcd.c │ │ │ │ │ │ ├── taihu.c │ │ │ │ │ │ └── update.c │ │ │ │ │ ├── taishan │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── lcd.c │ │ │ │ │ │ ├── showinfo.c │ │ │ │ │ │ ├── taishan.c │ │ │ │ │ │ └── update.c │ │ │ │ │ ├── walnut │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── walnut.c │ │ │ │ │ ├── yosemite │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── yosemite.c │ │ │ │ │ └── yucca │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_yucca.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── yucca.c │ │ │ │ │ │ └── yucca.h │ │ │ │ ├── amirix │ │ │ │ │ └── ap1000 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ap1000.c │ │ │ │ │ │ ├── ap1000.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── powerspan.c │ │ │ │ │ │ ├── powerspan.h │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── apollon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── apollon.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mem.c │ │ │ │ │ ├── mem.h │ │ │ │ │ └── sys_info.c │ │ │ │ ├── armltd │ │ │ │ │ ├── integrator │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── arm-ebi.h │ │ │ │ │ │ ├── integrator-sc.h │ │ │ │ │ │ ├── integrator.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── pci_v3.h │ │ │ │ │ │ └── timer.c │ │ │ │ │ ├── versatile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── versatile.c │ │ │ │ │ └── vexpress │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── ca9x4_ct_vxp.c │ │ │ │ ├── astro │ │ │ │ │ └── mcf5373l │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── astro.h │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── mcf5373l.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── atc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── atc.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── ti113x.c │ │ │ │ ├── atmel │ │ │ │ │ ├── at91rm9200ek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91rm9200ek.c │ │ │ │ │ │ └── led.c │ │ │ │ │ ├── at91sam9260ek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91sam9260ek.c │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── at91sam9261ek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91sam9261ek.c │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── at91sam9263ek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91sam9263ek.c │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── at91sam9m10g45ek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91sam9m10g45ek.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── led.c │ │ │ │ │ ├── at91sam9rlek │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── at91sam9rlek.c │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── atngw100 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── atngw100.c │ │ │ │ │ └── atstk1000 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── atstk1000.c │ │ │ │ ├── avionic-design │ │ │ │ │ ├── common │ │ │ │ │ │ └── tamonten.c │ │ │ │ │ ├── dts │ │ │ │ │ │ ├── tegra2-medcom.dts │ │ │ │ │ │ ├── tegra2-plutux.dts │ │ │ │ │ │ └── tegra2-tec.dts │ │ │ │ │ ├── medcom │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── plutux │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── tec │ │ │ │ │ │ └── Makefile │ │ │ │ ├── avnet │ │ │ │ │ ├── fx12mm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── fx12mm.c │ │ │ │ │ │ └── xparameters.h │ │ │ │ │ └── v5fx30teval │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── v5fx30teval.c │ │ │ │ │ │ └── xparameters.h │ │ │ │ ├── balloon3 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── balloon3.c │ │ │ │ ├── bc3450 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bc3450.c │ │ │ │ │ ├── cmd_bc3450.c │ │ │ │ │ └── mt48lc16m16a2-75.h │ │ │ │ ├── bct-brettl2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bct-brettl2.c │ │ │ │ │ ├── cled.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gpio_cfi_flash.c │ │ │ │ │ ├── smsc9303.c │ │ │ │ │ └── smsc9303.h │ │ │ │ ├── bf506f-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ └── bf506f-ezkit.c │ │ │ │ ├── bf518f-ezbrd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf518f-ezbrd.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf525-ucr2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── bf525-ucr2.c │ │ │ │ ├── bf526-ezbrd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf526-ezbrd.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf527-ad7160-eval │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf527-ad7160-eval.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf527-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf527-ezkit.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── video.c │ │ │ │ ├── bf527-sdp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf527-sdp.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf533-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf533-ezkit.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash-defines.h │ │ │ │ │ ├── flash.c │ │ │ │ │ └── psd4256.h │ │ │ │ ├── bf533-stamp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf533-stamp.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── ide-cf.c │ │ │ │ │ ├── video.c │ │ │ │ │ └── video.h │ │ │ │ ├── bf537-minotaur │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf537-minotaur.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf537-pnav │ │ │ │ │ ├── Makefile │ │ │ │ │ └── bf537-pnav.c │ │ │ │ ├── bf537-srv1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf537-srv1.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf537-stamp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf537-stamp.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── ide-cf.c │ │ │ │ │ └── post-memory.c │ │ │ │ ├── bf538f-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf538f-ezkit.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf548-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf548-ezkit.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── video.c │ │ │ │ ├── bf561-acvilon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf561-acvilon.c │ │ │ │ │ └── config.mk │ │ │ │ ├── bf561-ezkit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bf561-ezkit.c │ │ │ │ │ └── config.mk │ │ │ │ ├── blackstamp │ │ │ │ │ ├── Makefile │ │ │ │ │ └── blackstamp.c │ │ │ │ ├── blackvme │ │ │ │ │ ├── Makefile │ │ │ │ │ └── blackvme.c │ │ │ │ ├── bluewater │ │ │ │ │ └── snapper9260 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── snapper9260.c │ │ │ │ ├── bmw │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── bmw.c │ │ │ │ │ ├── bmw.h │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── early_init.S │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── m48t59y.c │ │ │ │ │ ├── m48t59y.h │ │ │ │ │ ├── ns16550.c │ │ │ │ │ ├── ns16550.h │ │ │ │ │ └── serial.c │ │ │ │ ├── br4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── br4.c │ │ │ │ │ └── config.mk │ │ │ │ ├── buffalo │ │ │ │ │ └── lsxl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage-lschl.cfg │ │ │ │ │ │ ├── kwbimage-lsxhl.cfg │ │ │ │ │ │ ├── lsxl.c │ │ │ │ │ │ └── lsxl.h │ │ │ │ ├── c2mon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c2mon.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── calao │ │ │ │ │ ├── sbc35_a9g20 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── sbc35_a9g20.c │ │ │ │ │ │ └── spi.c │ │ │ │ │ └── tny_a9260 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ └── tny_a9260.c │ │ │ │ ├── canmb │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── canmb.c │ │ │ │ │ └── mt48lc16m32s2-75.h │ │ │ │ ├── chromebook-x86 │ │ │ │ │ └── coreboot │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── coreboot.c │ │ │ │ │ │ ├── coreboot_pci.c │ │ │ │ │ │ ├── coreboot_start.S │ │ │ │ │ │ └── coreboot_start16.S │ │ │ │ ├── cloudengines │ │ │ │ │ └── pogo_e02 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── pogo_e02.c │ │ │ │ │ │ └── pogo_e02.h │ │ │ │ ├── cm-bf527 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm-bf527.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── gpio_cfi_flash.c │ │ │ │ ├── cm-bf533 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm-bf533.c │ │ │ │ │ └── config.mk │ │ │ │ ├── cm-bf537e │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm-bf537e.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gpio_cfi_flash.c │ │ │ │ │ └── gpio_cfi_flash.h │ │ │ │ ├── cm-bf537u │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm-bf537u.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── gpio_cfi_flash.c │ │ │ │ ├── cm-bf548 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm-bf548.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── video.c │ │ │ │ ├── cm-bf561 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm-bf561.c │ │ │ │ │ └── config.mk │ │ │ │ ├── cm4008 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm4008.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── flash.c │ │ │ │ ├── cm41xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm41xx.c │ │ │ │ │ ├── config.mk │ │ │ │ │ └── flash.c │ │ │ │ ├── cm5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm5200.c │ │ │ │ │ ├── cm5200.h │ │ │ │ │ ├── cmd_cm5200.c │ │ │ │ │ ├── fwupdate.c │ │ │ │ │ └── fwupdate.h │ │ │ │ ├── cm_t35 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cm_t35.c │ │ │ │ │ ├── eeprom.c │ │ │ │ │ ├── eeprom.h │ │ │ │ │ └── leds.c │ │ │ │ ├── cmi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmi.c │ │ │ │ │ └── flash.c │ │ │ │ ├── cobra5272 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bdm │ │ │ │ │ │ ├── cobra5272_uboot.gdb │ │ │ │ │ │ ├── gdbinit.reset │ │ │ │ │ │ ├── load-cobra_uboot │ │ │ │ │ │ └── reset │ │ │ │ │ ├── cobra5272.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── cogent │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── README.cma286 │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── dipsw.c │ │ │ │ │ ├── dipsw.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── flash.h │ │ │ │ │ ├── kbm.c │ │ │ │ │ ├── kbm.h │ │ │ │ │ ├── lcd.c │ │ │ │ │ ├── lcd.h │ │ │ │ │ ├── mb.c │ │ │ │ │ ├── mb.h │ │ │ │ │ ├── par.c │ │ │ │ │ ├── par.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── rtc.c │ │ │ │ │ ├── rtc.h │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── serial.h │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── comelit │ │ │ │ │ └── dig297 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dig297.c │ │ │ │ │ │ └── dig297.h │ │ │ │ ├── compal │ │ │ │ │ ├── dts │ │ │ │ │ │ └── tegra2-paz00.dts │ │ │ │ │ └── paz00 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── paz00.c │ │ │ │ ├── compulab │ │ │ │ │ ├── dts │ │ │ │ │ │ └── tegra2-trimslice.dts │ │ │ │ │ └── trimslice │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── trimslice.c │ │ │ │ ├── corscience │ │ │ │ │ └── tricorder │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── tricorder.c │ │ │ │ │ │ └── tricorder.h │ │ │ │ ├── cpc45 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpc45.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── pd67290.c │ │ │ │ │ └── plx9030.c │ │ │ │ ├── cpu86 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu86.c │ │ │ │ │ ├── cpu86.h │ │ │ │ │ └── flash.c │ │ │ │ ├── cpu87 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu87.c │ │ │ │ │ ├── cpu87.h │ │ │ │ │ └── flash.c │ │ │ │ ├── cray │ │ │ │ │ └── L1 │ │ │ │ │ │ ├── L1.c │ │ │ │ │ │ ├── L1.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bootscript.hush │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── patchme │ │ │ │ │ │ ├── u-boot.lds.debug │ │ │ │ │ │ └── x2c.awk │ │ │ │ ├── csb272 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── csb272.c │ │ │ │ │ └── init.S │ │ │ │ ├── csb472 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── csb472.c │ │ │ │ │ └── init.S │ │ │ │ ├── cu824 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── cu824.c │ │ │ │ │ └── flash.c │ │ │ │ ├── d-link │ │ │ │ │ └── dns325 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dns325.c │ │ │ │ │ │ ├── dns325.h │ │ │ │ │ │ └── kwbimage.cfg │ │ │ │ ├── dave │ │ │ │ │ ├── PPChameleonEVB │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── PPChameleonEVB.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── common │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ └── pci.c │ │ │ │ ├── davedenx │ │ │ │ │ ├── aria │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── aria.c │ │ │ │ │ └── qong │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── qong.c │ │ │ │ │ │ └── qong_fpga.h │ │ │ │ ├── davinci │ │ │ │ │ ├── da8xxevm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── da830evm.c │ │ │ │ │ │ ├── da850evm.c │ │ │ │ │ │ ├── hawkboard.c │ │ │ │ │ │ ├── u-boot-spl-da850evm.lds │ │ │ │ │ │ └── u-boot-spl-hawk.lds │ │ │ │ │ ├── dm355evm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── dm355evm.c │ │ │ │ │ ├── dm355leopard │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── dm355leopard.c │ │ │ │ │ ├── dm365evm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── dm365evm.c │ │ │ │ │ ├── dm6467evm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── dm6467evm.c │ │ │ │ │ ├── dvevm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board_init.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── dvevm.c │ │ │ │ │ ├── ea20 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── ea20.c │ │ │ │ │ ├── schmoogie │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board_init.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── schmoogie.c │ │ │ │ │ ├── sffsdr │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board_init.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── sffsdr.c │ │ │ │ │ └── sonata │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board_init.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── sonata.c │ │ │ │ ├── dbau1x00 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── dbau1x00.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── denx │ │ │ │ │ └── m28evk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── m28evk.c │ │ │ │ │ │ ├── spl_boot.c │ │ │ │ │ │ └── u-boot.bd │ │ │ │ ├── dnp5370 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── dnp5370.c │ │ │ │ ├── dvlhost │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dvlhost.c │ │ │ │ │ ├── dvlhost_hw.h │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── watchdog.c │ │ │ │ ├── eNET │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eNET.c │ │ │ │ │ ├── eNET_pci.c │ │ │ │ │ ├── eNET_start.S │ │ │ │ │ ├── eNET_start16.S │ │ │ │ │ └── hardware.h │ │ │ │ ├── eXalion │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── eXalion.c │ │ │ │ │ ├── eXalion.h │ │ │ │ │ └── piix_pci.h │ │ │ │ ├── earthlcd │ │ │ │ │ └── favr-32-ezkit │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── favr-32-ezkit.c │ │ │ │ │ │ └── flash.c │ │ │ │ ├── efikamx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── efikamx-usb.c │ │ │ │ │ ├── efikamx.c │ │ │ │ │ ├── imximage_mx.cfg │ │ │ │ │ └── imximage_sb.cfg │ │ │ │ ├── egnite │ │ │ │ │ └── ethernut5 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ethernut5.c │ │ │ │ │ │ ├── ethernut5_pwrman.c │ │ │ │ │ │ └── ethernut5_pwrman.h │ │ │ │ ├── eltec │ │ │ │ │ ├── elppc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asm_init.S │ │ │ │ │ │ ├── eepro100_srom.c │ │ │ │ │ │ ├── elppc.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── mpc107_i2c.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── srom.h │ │ │ │ │ └── mhpc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── mhpc.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── emk │ │ │ │ │ ├── common │ │ │ │ │ │ ├── am79c874.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── vpd.c │ │ │ │ │ ├── top5200 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── top5200.c │ │ │ │ │ ├── top860 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── top860.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ │ └── top9000 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ └── top9000.c │ │ │ │ ├── enbw │ │ │ │ │ └── enbw_cmc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── enbw_cmc.c │ │ │ │ ├── ep8248 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ep8248.c │ │ │ │ ├── ep8260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ep8260.c │ │ │ │ │ ├── ep8260.h │ │ │ │ │ ├── flash.c │ │ │ │ │ └── mii_phy.c │ │ │ │ ├── ep82xxm │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ep82xxm.c │ │ │ │ ├── ep88x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ep88x.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── esd │ │ │ │ │ ├── adciop │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── adciop.c │ │ │ │ │ │ ├── adciop.h │ │ │ │ │ │ └── flash.c │ │ │ │ │ ├── apc405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── apc405.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ └── logo_640_480_24bpp.c │ │ │ │ │ ├── ar405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ar405.c │ │ │ │ │ │ ├── ar405.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ └── fpgadata_xl30.c │ │ │ │ │ ├── ash405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ash405.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── fpgadata.c │ │ │ │ │ ├── canbt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── canbt.c │ │ │ │ │ │ ├── canbt.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── fpgadata.c │ │ │ │ │ ├── cms700 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cms700.c │ │ │ │ │ │ └── flash.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── auto_update.c │ │ │ │ │ │ ├── auto_update.h │ │ │ │ │ │ ├── cmd_loadpci.c │ │ │ │ │ │ ├── esd405ep_nand.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── lcd.c │ │ │ │ │ │ ├── lcd.h │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── s1d13505_640_480_16bpp.h │ │ │ │ │ │ ├── s1d13704_320_240_4bpp.h │ │ │ │ │ │ ├── s1d13705_320_240_8bpp.h │ │ │ │ │ │ ├── s1d13806_1024_768_8bpp.h │ │ │ │ │ │ ├── s1d13806_320_240_4bpp.h │ │ │ │ │ │ ├── s1d13806_640_480_16bpp.h │ │ │ │ │ │ ├── s1d13806_640_480_8bpp.h │ │ │ │ │ │ └── xilinx_jtag │ │ │ │ │ │ │ ├── lenval.c │ │ │ │ │ │ │ ├── lenval.h │ │ │ │ │ │ │ ├── micro.c │ │ │ │ │ │ │ ├── micro.h │ │ │ │ │ │ │ ├── ports.c │ │ │ │ │ │ │ └── ports.h │ │ │ │ │ ├── cpci2dp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpci2dp.c │ │ │ │ │ │ └── flash.c │ │ │ │ │ ├── cpci405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpci405.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata_cpci405.c │ │ │ │ │ │ ├── fpgadata_cpci4052.c │ │ │ │ │ │ └── fpgadata_cpci405ab.c │ │ │ │ │ ├── cpci5200 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpci5200.c │ │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ │ └── strataflash.c │ │ │ │ │ ├── cpci750 │ │ │ │ │ │ ├── 64360.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpci750.c │ │ │ │ │ │ ├── eth.h │ │ │ │ │ │ ├── i2c.c │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── ide.c │ │ │ │ │ │ ├── local.h │ │ │ │ │ │ ├── misc.S │ │ │ │ │ │ ├── mpsc.c │ │ │ │ │ │ ├── mpsc.h │ │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── sdram_init.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ └── serial.h │ │ │ │ │ ├── cpciiser4 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpciiser4.c │ │ │ │ │ │ ├── cpciiser4.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── fpgadata.c │ │ │ │ │ ├── dasa_sim │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_dasa_sim.c │ │ │ │ │ │ ├── dasa_sim.c │ │ │ │ │ │ ├── dasa_sim.h │ │ │ │ │ │ ├── eeprom.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── dp405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dp405.c │ │ │ │ │ │ └── flash.c │ │ │ │ │ ├── du405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── du405.c │ │ │ │ │ │ ├── du405.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── fpgadata.c │ │ │ │ │ ├── du440 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── du440.c │ │ │ │ │ │ ├── du440.h │ │ │ │ │ │ └── init.S │ │ │ │ │ ├── hh405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ ├── hh405.c │ │ │ │ │ │ ├── logo_1024_768_8bpp.c │ │ │ │ │ │ ├── logo_320_240_4bpp.c │ │ │ │ │ │ ├── logo_320_240_8bpp.c │ │ │ │ │ │ └── logo_640_480_24bpp.c │ │ │ │ │ ├── hub405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── hub405.c │ │ │ │ │ ├── mecp5123 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── mecp5123.c │ │ │ │ │ ├── mecp5200 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mecp5200.c │ │ │ │ │ │ └── mt46v16m16-75.h │ │ │ │ │ ├── meesc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── meesc.c │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── ocrtc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_ocrtc.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── ocrtc.c │ │ │ │ │ │ └── ocrtc.h │ │ │ │ │ ├── otc570 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── otc570.c │ │ │ │ │ │ └── partition.c │ │ │ │ │ ├── pci405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_pci405.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ ├── pci405.c │ │ │ │ │ │ ├── pci405.h │ │ │ │ │ │ └── writeibm.S │ │ │ │ │ ├── pf5200 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ │ └── pf5200.c │ │ │ │ │ ├── plu405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ └── plu405.c │ │ │ │ │ ├── pmc405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── pmc405.c │ │ │ │ │ ├── pmc405de │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ └── pmc405de.c │ │ │ │ │ ├── pmc440 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_pmc440.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── fpga.h │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── pmc440.c │ │ │ │ │ │ ├── pmc440.h │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ └── u-boot-nand.lds │ │ │ │ │ ├── tasreg │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ ├── tasreg.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── vme8349 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── caddy.c │ │ │ │ │ │ ├── caddy.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── vme8349.c │ │ │ │ │ │ └── vme8349pin.h │ │ │ │ │ ├── voh405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ ├── logo_320_240_4bpp.c │ │ │ │ │ │ ├── logo_640_480_24bpp.c │ │ │ │ │ │ └── voh405.c │ │ │ │ │ ├── vom405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── vom405.c │ │ │ │ │ └── wuh405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ │ └── wuh405.c │ │ │ │ ├── esg │ │ │ │ │ └── ima3-mx53 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ima3-mx53.c │ │ │ │ │ │ └── imximage.cfg │ │ │ │ ├── espt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── espt.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── esteem192e │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── esteem192e.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── etin │ │ │ │ │ ├── debris │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── debris.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── phantom.c │ │ │ │ │ │ └── speed.h │ │ │ │ │ └── kvme080 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kvme080.c │ │ │ │ │ │ ├── multiverse.c │ │ │ │ │ │ └── multiverse.h │ │ │ │ ├── etx094 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── etx094.c │ │ │ │ │ ├── flash.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── eukrea │ │ │ │ │ ├── cpu9260 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpu9260.c │ │ │ │ │ │ └── led.c │ │ │ │ │ └── cpuat91 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── cpuat91.c │ │ │ │ ├── evb64260 │ │ │ │ │ ├── 64260.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bootseq.txt │ │ │ │ │ ├── ecctest.c │ │ │ │ │ ├── eth.c │ │ │ │ │ ├── eth.h │ │ │ │ │ ├── eth_addrtbl.c │ │ │ │ │ ├── eth_addrtbl.h │ │ │ │ │ ├── evb64260.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── i2c.c │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── intel_flash.c │ │ │ │ │ ├── intel_flash.h │ │ │ │ │ ├── local.h │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── misc.S │ │ │ │ │ ├── mpsc.c │ │ │ │ │ ├── mpsc.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── sdram_init.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── serial.h │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ ├── zuma_pbb.c │ │ │ │ │ ├── zuma_pbb.h │ │ │ │ │ ├── zuma_pbb_mbox.c │ │ │ │ │ └── zuma_pbb_mbox.h │ │ │ │ ├── exmeritus │ │ │ │ │ └── hww1u1a │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── gpios.h │ │ │ │ │ │ ├── hww1u1a.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ └── tlb.c │ │ │ │ ├── fads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fads.c │ │ │ │ │ ├── fads.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── lamp.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── faraday │ │ │ │ │ └── a320evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── a320evb.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── flagadm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flagadm.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── freescale │ │ │ │ │ ├── bsc9131rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bsc9131rdb.c │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cadmus.c │ │ │ │ │ │ ├── cadmus.h │ │ │ │ │ │ ├── cds_pci_ft.c │ │ │ │ │ │ ├── cds_via.c │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ ├── fman.c │ │ │ │ │ │ ├── fman.h │ │ │ │ │ │ ├── ics307_clk.c │ │ │ │ │ │ ├── ics307_clk.h │ │ │ │ │ │ ├── ngpixis.c │ │ │ │ │ │ ├── ngpixis.h │ │ │ │ │ │ ├── p_corenet │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ │ └── tlb.c │ │ │ │ │ │ ├── pixis.c │ │ │ │ │ │ ├── pixis.h │ │ │ │ │ │ ├── pq-mds-pib.c │ │ │ │ │ │ ├── pq-mds-pib.h │ │ │ │ │ │ ├── qixis.c │ │ │ │ │ │ ├── qixis.h │ │ │ │ │ │ ├── sdhc_boot.c │ │ │ │ │ │ ├── sgmii_riser.c │ │ │ │ │ │ ├── sgmii_riser.h │ │ │ │ │ │ ├── sys_eeprom.c │ │ │ │ │ │ └── via.h │ │ │ │ │ ├── corenet_ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── corenet_ds.c │ │ │ │ │ │ ├── corenet_ds.h │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── eth_hydra.c │ │ │ │ │ │ ├── eth_p4080.c │ │ │ │ │ │ ├── p3041ds_ddr.c │ │ │ │ │ │ ├── p4080ds_ddr.c │ │ │ │ │ │ └── p5020ds_ddr.c │ │ │ │ │ ├── m5208evbe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5208evbe.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m52277evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m52277evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5235evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5235evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5249evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5249evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5253demo │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── m5253demo.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5253evbe │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5253evbe.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5271evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5271evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5272c3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5272c3.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5275evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5275evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5282evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5282evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m53017evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m53017evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5329evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5329evb.c │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m5373evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m5373evb.c │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m54451evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m54451evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m54455evb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m54455evb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m547xevb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m547xevb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── m548xevb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── m548xevb.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mpc5121ads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── mpc5121ads.c │ │ │ │ │ ├── mpc7448hpc2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asm_init.S │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── mpc7448hpc2.c │ │ │ │ │ │ └── tsi108_init.c │ │ │ │ │ ├── mpc8260ads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── mpc8260ads.c │ │ │ │ │ ├── mpc8266ads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── mpc8266ads.c │ │ │ │ │ ├── mpc8308rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc8308rdb.c │ │ │ │ │ │ └── sdram.c │ │ │ │ │ ├── mpc8313erdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc8313erdb.c │ │ │ │ │ │ └── sdram.c │ │ │ │ │ ├── mpc8315erdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc8315erdb.c │ │ │ │ │ │ └── sdram.c │ │ │ │ │ ├── mpc8323erdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── mpc8323erdb.c │ │ │ │ │ ├── mpc832xemds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc832xemds.c │ │ │ │ │ │ └── pci.c │ │ │ │ │ ├── mpc8349emds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── mpc8349emds.c │ │ │ │ │ │ └── pci.c │ │ │ │ │ ├── mpc8349itx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc8349itx.c │ │ │ │ │ │ └── pci.c │ │ │ │ │ ├── mpc8360emds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc8360emds.c │ │ │ │ │ │ └── pci.c │ │ │ │ │ ├── mpc8360erdk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc8360erdk.c │ │ │ │ │ │ └── nand.c │ │ │ │ │ ├── mpc837xemds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc837xemds.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── pci.h │ │ │ │ │ ├── mpc837xerdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mpc837xerdb.c │ │ │ │ │ │ └── pci.c │ │ │ │ │ ├── mpc8536ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8536ds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8540ads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8540ads.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8541cds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8541cds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8544ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8544ds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8548cds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8548cds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8555cds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8555cds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8560ads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8560ads.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8568mds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bcsr.c │ │ │ │ │ │ ├── bcsr.h │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8568mds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8569mds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bcsr.c │ │ │ │ │ │ ├── bcsr.h │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8569mds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8572ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8572ds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── mpc8610hpcd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── mpc8610hpcd.c │ │ │ │ │ │ └── mpc8610hpcd_diu.c │ │ │ │ │ ├── mpc8641hpcn │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ └── mpc8641hpcn.c │ │ │ │ │ ├── mx25pdk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── mx25pdk.c │ │ │ │ │ ├── mx28evk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── iomux.c │ │ │ │ │ │ ├── mx28evk.c │ │ │ │ │ │ └── u-boot.bd │ │ │ │ │ ├── mx31ads │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mx31ads.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── mx31pdk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── mx31pdk.c │ │ │ │ │ ├── mx35pdk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mx35pdk.c │ │ │ │ │ │ └── mx35pdk.h │ │ │ │ │ ├── mx51evk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ └── mx51evk.c │ │ │ │ │ ├── mx53ard │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage_dd3.cfg │ │ │ │ │ │ └── mx53ard.c │ │ │ │ │ ├── mx53evk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ └── mx53evk.c │ │ │ │ │ ├── mx53loco │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ └── mx53loco.c │ │ │ │ │ ├── mx53smd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ └── mx53smd.c │ │ │ │ │ ├── mx6qarm2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ └── mx6qarm2.c │ │ │ │ │ ├── mx6qsabrelite │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage.cfg │ │ │ │ │ │ └── mx6qsabrelite.c │ │ │ │ │ ├── p1010rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p1010rdb.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p1022ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── diu.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p1022ds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p1023rds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bcsr.h │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p1023rds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p1_p2_rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p1_p2_rdb.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p1_p2_rdb_pc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p1_p2_rdb_pc.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p2020come │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p2020come.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p2020ds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── p2020ds.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── p2041rdb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpld.c │ │ │ │ │ │ ├── cpld.h │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── eth.c │ │ │ │ │ │ └── p2041rdb.c │ │ │ │ │ └── p3060qds │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── eth.c │ │ │ │ │ │ ├── fixed_ddr.c │ │ │ │ │ │ ├── p3060qds.c │ │ │ │ │ │ ├── p3060qds.h │ │ │ │ │ │ └── p3060qds_qixis.h │ │ │ │ ├── funkwerk │ │ │ │ │ └── vovpn-gw │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── m88e6060.c │ │ │ │ │ │ ├── m88e6060.h │ │ │ │ │ │ └── vovpn-gw.c │ │ │ │ ├── g2000 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── g2000.c │ │ │ │ │ └── strataflash.c │ │ │ │ ├── gaisler │ │ │ │ │ ├── gr_cpci_ax2000 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── gr_cpci_ax2000.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── gr_ep2s60 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── gr_ep2s60.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── gr_xc3s_1500 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── gr_xc3s_1500.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── grsim │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── grsim.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── grsim_leon2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── grsim_leon2.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── galaxy5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── galaxy5200.c │ │ │ │ ├── gdsys │ │ │ │ │ ├── 405ep │ │ │ │ │ │ ├── 405ep.c │ │ │ │ │ │ ├── 405ep.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dlvision-10g.c │ │ │ │ │ │ ├── io.c │ │ │ │ │ │ ├── iocon.c │ │ │ │ │ │ └── neo.c │ │ │ │ │ ├── 405ex │ │ │ │ │ │ ├── 405ex.c │ │ │ │ │ │ ├── 405ex.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ └── io64.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── miiphybb.c │ │ │ │ │ │ ├── osd.c │ │ │ │ │ │ └── osd.h │ │ │ │ │ ├── dlvision │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── dlvision.c │ │ │ │ │ ├── gdppc440etx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── gdppc440etx.c │ │ │ │ │ │ └── init.S │ │ │ │ │ └── intip │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── intip.c │ │ │ │ ├── gen860t │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── beeper.c │ │ │ │ │ ├── beeper.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── gen860t.c │ │ │ │ │ ├── ioport.c │ │ │ │ │ ├── ioport.h │ │ │ │ │ ├── u-boot-flashenv.lds │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── genietv │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── genietv.c │ │ │ │ │ ├── genietv.h │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── gth2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── ee_access.c │ │ │ │ │ ├── ee_access.h │ │ │ │ │ ├── ee_dev.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── gth2.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── gw8260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── gw8260.c │ │ │ │ ├── hale │ │ │ │ │ └── tt01 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── tt01.c │ │ │ │ ├── hermes │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── hermes.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── hidden_dragon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── early_init.S │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── hidden_dragon.c │ │ │ │ │ └── speed.h │ │ │ │ ├── highbank │ │ │ │ │ ├── Makefile │ │ │ │ │ └── highbank.c │ │ │ │ ├── htkw │ │ │ │ │ └── mcx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mcx.c │ │ │ │ │ │ └── mcx.h │ │ │ │ ├── hymod │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bsp.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── eeprom.c │ │ │ │ │ ├── env.c │ │ │ │ │ ├── fetch.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── flash.h │ │ │ │ │ ├── global_env │ │ │ │ │ ├── hymod.c │ │ │ │ │ ├── hymod.h │ │ │ │ │ ├── input.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── ibf-dsp561 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── ibf-dsp561.c │ │ │ │ ├── icecube │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── icecube.c │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ ├── mt46v32m16.h │ │ │ │ │ └── mt48lc16m16a2-75.h │ │ │ │ ├── icu862 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── icu862.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── idmr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── idmr.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── ids8247 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ids8247.c │ │ │ │ ├── imx31_phycore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── imx31_phycore.c │ │ │ │ │ └── lowlevel_init.S │ │ │ │ ├── in-circuit │ │ │ │ │ └── grasshopper │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── grasshopper.c │ │ │ │ ├── incaip │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── incaip.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── inka4x0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hyb25d512160bf-5.h │ │ │ │ │ ├── inka4x0.c │ │ │ │ │ ├── inkadiag.c │ │ │ │ │ ├── k4h511638c.h │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ ├── mt46v32m16-75.h │ │ │ │ │ └── mt48lc16m16a2-75.h │ │ │ │ ├── intercontrol │ │ │ │ │ └── digsy_mtc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_disp.c │ │ │ │ │ │ ├── cmd_mtc.c │ │ │ │ │ │ ├── cmd_mtc.h │ │ │ │ │ │ ├── digsy_mtc.c │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ ├── is42s16800a-7t.h │ │ │ │ │ │ └── is45s16800a2.h │ │ │ │ ├── ip04 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── ip04.c │ │ │ │ ├── ip860 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── ip860.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── ipek01 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ipek01.c │ │ │ │ ├── iphase4539 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── iphase4539.c │ │ │ │ ├── isee │ │ │ │ │ ├── igep0020 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── igep0020.c │ │ │ │ │ │ └── igep0020.h │ │ │ │ │ └── igep0030 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── igep0030.c │ │ │ │ │ │ └── igep0030.h │ │ │ │ ├── ispan │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ispan.c │ │ │ │ ├── ivm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── ivm.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── jornada │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── jornada.c │ │ │ │ │ └── setup.S │ │ │ │ ├── jse │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── host_bridge.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── jse.c │ │ │ │ │ ├── jse_priv.h │ │ │ │ │ └── sdram.c │ │ │ │ ├── jupiter │ │ │ │ │ ├── Makefile │ │ │ │ │ └── jupiter.c │ │ │ │ ├── karo │ │ │ │ │ ├── tk71 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ └── tk71.c │ │ │ │ │ └── tx25 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── tx25.c │ │ │ │ ├── keymile │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ └── ivm.c │ │ │ │ │ ├── km82xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── km82xx.c │ │ │ │ │ ├── km83xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── km83xx.c │ │ │ │ │ │ └── km83xx_i2c.c │ │ │ │ │ ├── km_arm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── fpga_config.c │ │ │ │ │ │ ├── km_arm.c │ │ │ │ │ │ ├── kwbimage-memphis.cfg │ │ │ │ │ │ ├── kwbimage.cfg │ │ │ │ │ │ ├── kwbimage_128M16_1.cfg │ │ │ │ │ │ └── kwbimage_256M8_1.cfg │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── develop-arm.txt │ │ │ │ │ │ ├── develop-common.txt │ │ │ │ │ │ ├── develop-ppc_82xx.txt │ │ │ │ │ │ ├── develop-ppc_8xx.txt │ │ │ │ │ │ ├── ramfs-arm.txt │ │ │ │ │ │ ├── ramfs-common.txt │ │ │ │ │ │ ├── ramfs-ppc_82xx.txt │ │ │ │ │ │ └── ramfs-ppc_8xx.txt │ │ │ │ ├── korat │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── korat.c │ │ │ │ │ └── u-boot-F7FC.lds │ │ │ │ ├── kup │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── common │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── kup.c │ │ │ │ │ │ ├── kup.h │ │ │ │ │ │ ├── load_sernum_ethaddr.c │ │ │ │ │ │ └── pcmcia.c │ │ │ │ │ ├── kup4k │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kup4k.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ │ └── kup4x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── kup4x.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── lantec │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── lantec.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── linkstation │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── avr.c │ │ │ │ │ ├── hwctl.c │ │ │ │ │ ├── ide.c │ │ │ │ │ └── linkstation.c │ │ │ │ ├── logicpd │ │ │ │ │ ├── am3517evm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── am3517evm.c │ │ │ │ │ │ └── am3517evm.h │ │ │ │ │ ├── imx27lite │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imx27lite.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ │ ├── imx31_litekit │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imx31_litekit.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ │ ├── omap3som │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── omap3logic.c │ │ │ │ │ │ └── omap3logic.h │ │ │ │ │ ├── zoom1 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── zoom1.c │ │ │ │ │ │ └── zoom1.h │ │ │ │ │ └── zoom2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── debug_board.c │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ ├── zoom2.c │ │ │ │ │ │ ├── zoom2.h │ │ │ │ │ │ ├── zoom2_serial.c │ │ │ │ │ │ └── zoom2_serial.h │ │ │ │ ├── lubbock │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── lubbock.c │ │ │ │ ├── lwmon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.keybd │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── lwmon.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── lwmon5 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ ├── kbd.c │ │ │ │ │ ├── lwmon5.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── manroland │ │ │ │ │ ├── hmi1001 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── hmi1001.c │ │ │ │ │ ├── mucmc52 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── mucmc52.c │ │ │ │ │ ├── uc100 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── uc100.c │ │ │ │ │ └── uc101 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── uc101.c │ │ │ │ ├── matrix_vision │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mv_common.c │ │ │ │ │ │ └── mv_common.h │ │ │ │ │ ├── mergerbox │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── fpga.h │ │ │ │ │ │ ├── mergerbox.c │ │ │ │ │ │ ├── mergerbox.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── sm107.c │ │ │ │ │ ├── mvbc_p │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── fpga.h │ │ │ │ │ │ ├── mvbc_p.c │ │ │ │ │ │ ├── mvbc_p.h │ │ │ │ │ │ └── mvbc_p_autoscript │ │ │ │ │ ├── mvblm7 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bootscript │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── fpga.h │ │ │ │ │ │ ├── mvblm7.c │ │ │ │ │ │ ├── mvblm7.h │ │ │ │ │ │ └── pci.c │ │ │ │ │ ├── mvblx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── fpga.h │ │ │ │ │ │ ├── mvblx.c │ │ │ │ │ │ ├── mvblx.h │ │ │ │ │ │ └── sys_eeprom.c │ │ │ │ │ └── mvsmr │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bootscript │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── fpga.h │ │ │ │ │ │ ├── mvsmr.c │ │ │ │ │ │ ├── mvsmr.h │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mbx8xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── csr.h │ │ │ │ │ ├── dimm.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── mbx8xx.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ ├── u-boot.lds.debug │ │ │ │ │ ├── vpd.c │ │ │ │ │ └── vpd.h │ │ │ │ ├── mcc200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── auto_update.c │ │ │ │ │ ├── lcd.c │ │ │ │ │ ├── mcc200.c │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ │ ├── mt48lc16m32s2-75.h │ │ │ │ │ └── mt48lc8m32b2-6-7.h │ │ │ │ ├── micronas │ │ │ │ │ └── vct │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bcu.h │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── dcgu.c │ │ │ │ │ │ ├── dcgu.h │ │ │ │ │ │ ├── ebi.c │ │ │ │ │ │ ├── ebi.h │ │ │ │ │ │ ├── ebi_nor_flash.c │ │ │ │ │ │ ├── ebi_onenand.c │ │ │ │ │ │ ├── ebi_smc911x.c │ │ │ │ │ │ ├── ehci.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── scc.c │ │ │ │ │ │ ├── scc.h │ │ │ │ │ │ ├── smc_eeprom.c │ │ │ │ │ │ ├── top.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ ├── vct.c │ │ │ │ │ │ ├── vct.h │ │ │ │ │ │ ├── vcth │ │ │ │ │ │ ├── reg_dcgu.h │ │ │ │ │ │ ├── reg_ebi.h │ │ │ │ │ │ ├── reg_fwsram.h │ │ │ │ │ │ ├── reg_gpio.h │ │ │ │ │ │ ├── reg_scc.h │ │ │ │ │ │ ├── reg_usbh.h │ │ │ │ │ │ └── reg_wdt.h │ │ │ │ │ │ ├── vcth2 │ │ │ │ │ │ └── reg_ebi.h │ │ │ │ │ │ └── vctv │ │ │ │ │ │ ├── reg_dcgu.h │ │ │ │ │ │ ├── reg_ebi.h │ │ │ │ │ │ ├── reg_gpio.h │ │ │ │ │ │ └── reg_wdt.h │ │ │ │ ├── mimc │ │ │ │ │ └── mimc200 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── mimc200.c │ │ │ │ ├── miromico │ │ │ │ │ └── hammerhead │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── hammerhead.c │ │ │ │ ├── ml2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── ml2.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── mosaixtech │ │ │ │ │ └── icon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── chip_config.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── icon.c │ │ │ │ │ │ └── init.S │ │ │ │ ├── motionpro │ │ │ │ │ ├── Makefile │ │ │ │ │ └── motionpro.c │ │ │ │ ├── mousse │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── flash.h │ │ │ │ │ ├── m48t59y.c │ │ │ │ │ ├── m48t59y.h │ │ │ │ │ ├── mousse.c │ │ │ │ │ ├── mousse.h │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ ├── u-boot.lds.ram │ │ │ │ │ └── u-boot.lds.rom │ │ │ │ ├── mpc8308_p1m │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mpc8308_p1m.c │ │ │ │ │ └── sdram.c │ │ │ │ ├── mpl │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common_util.c │ │ │ │ │ │ ├── common_util.h │ │ │ │ │ │ ├── isa.c │ │ │ │ │ │ ├── isa.h │ │ │ │ │ │ ├── kbd.c │ │ │ │ │ │ ├── kbd.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── pci_parts.h │ │ │ │ │ │ ├── piix4_pci.h │ │ │ │ │ │ ├── usb_uhci.c │ │ │ │ │ │ └── usb_uhci.h │ │ │ │ │ ├── mip405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_mip405.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── mip405.c │ │ │ │ │ │ └── mip405.h │ │ │ │ │ ├── pati │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_pati.c │ │ │ │ │ │ ├── pati.c │ │ │ │ │ │ ├── pati.h │ │ │ │ │ │ ├── pci_eeprom.h │ │ │ │ │ │ └── plx9056.h │ │ │ │ │ ├── pip405 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_pip405.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── pip405.c │ │ │ │ │ │ ├── pip405.h │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ │ └── vcma9 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_vcma9.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── vcma9.c │ │ │ │ │ │ └── vcma9.h │ │ │ │ ├── mpr2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── mpr2.c │ │ │ │ ├── ms7720se │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── ms7720se.c │ │ │ │ ├── ms7722se │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── ms7722se.c │ │ │ │ ├── ms7750se │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── ms7750se.c │ │ │ │ ├── muas3001 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── muas3001.c │ │ │ │ ├── munices │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ │ └── munices.c │ │ │ │ ├── musenki │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── flash.c │ │ │ │ │ └── musenki.c │ │ │ │ ├── mvblue │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── mvblue.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── mx1ads │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── mx1ads.c │ │ │ │ │ └── syncflash.c │ │ │ │ ├── netphone │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── netphone.c │ │ │ │ │ ├── phone_console.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── netta │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── codec.c │ │ │ │ │ ├── dsp.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── netta.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── netta2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── netta2.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── netvia │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── netvia.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── ns9750dev │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── led.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── ns9750dev.c │ │ │ │ ├── nvidia │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ ├── emc.c │ │ │ │ │ │ ├── emc.h │ │ │ │ │ │ └── uart-spi-switch.c │ │ │ │ │ ├── dts │ │ │ │ │ │ ├── tegra2-harmony.dts │ │ │ │ │ │ ├── tegra2-seaboard.dts │ │ │ │ │ │ ├── tegra2-ventana.dts │ │ │ │ │ │ └── tegra2-whistler.dts │ │ │ │ │ ├── harmony │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── harmony.c │ │ │ │ │ ├── seaboard │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── seaboard.c │ │ │ │ │ ├── ventana │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── whistler │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── whistler.c │ │ │ │ ├── nx823 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── nx823.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── o2dnt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── o2dnt.c │ │ │ │ ├── omicron │ │ │ │ │ └── calimain │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── calimain.c │ │ │ │ ├── openrisc │ │ │ │ │ └── openrisc-generic │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── openrisc-generic.c │ │ │ │ │ │ ├── or1ksim.cfg │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── overo │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── overo.c │ │ │ │ │ └── overo.h │ │ │ │ ├── palmld │ │ │ │ │ ├── Makefile │ │ │ │ │ └── palmld.c │ │ │ │ ├── palmtc │ │ │ │ │ ├── Makefile │ │ │ │ │ └── palmtc.c │ │ │ │ ├── pandora │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pandora.c │ │ │ │ │ └── pandora.h │ │ │ │ ├── pb1x00 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── pb1x00.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── pcippc2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpc710.h │ │ │ │ │ ├── cpc710_init_ram.c │ │ │ │ │ ├── cpc710_pci.c │ │ │ │ │ ├── cpc710_pci.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpga_serial.c │ │ │ │ │ ├── fpga_serial.h │ │ │ │ │ ├── hardware.h │ │ │ │ │ ├── i2c.c │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── ns16550.h │ │ │ │ │ ├── pcippc2.c │ │ │ │ │ ├── pcippc2.h │ │ │ │ │ ├── pcippc2_fpga.c │ │ │ │ │ ├── pcippc2_fpga.h │ │ │ │ │ ├── sconsole.c │ │ │ │ │ └── sconsole.h │ │ │ │ ├── pcs440ep │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ └── pcs440ep.c │ │ │ │ ├── pdm360ng │ │ │ │ │ ├── Makefile │ │ │ │ │ └── pdm360ng.c │ │ │ │ ├── phytec │ │ │ │ │ └── pcm030 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mt46v32m16-75.h │ │ │ │ │ │ └── pcm030.c │ │ │ │ ├── pm520 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── mt46v16m16-75.h │ │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ │ └── pm520.c │ │ │ │ ├── pm826 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── pm826.c │ │ │ │ ├── pm828 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── pm828.c │ │ │ │ ├── pn62 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_pn62.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── pn62.c │ │ │ │ │ └── pn62.h │ │ │ │ ├── ppmc7xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── pci.c │ │ │ │ │ └── ppmc7xx.c │ │ │ │ ├── ppmc8260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ppmc8260.c │ │ │ │ │ └── strataflash.c │ │ │ │ ├── pr1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── pr1.c │ │ │ │ ├── prodrive │ │ │ │ │ ├── alpr │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── alpr.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ └── nand.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── fpga.c │ │ │ │ │ ├── p3mx │ │ │ │ │ │ ├── 64460.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── eth.h │ │ │ │ │ │ ├── misc.S │ │ │ │ │ │ ├── mpsc.c │ │ │ │ │ │ ├── mpsc.h │ │ │ │ │ │ ├── mv_eth.c │ │ │ │ │ │ ├── mv_eth.h │ │ │ │ │ │ ├── mv_regs.h │ │ │ │ │ │ ├── p3mx.c │ │ │ │ │ │ ├── p3mx.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ ├── ppc_error_no.h │ │ │ │ │ │ ├── sdram_init.c │ │ │ │ │ │ ├── serial.c │ │ │ │ │ │ └── serial.h │ │ │ │ │ ├── p3p440 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── p3p440.c │ │ │ │ │ │ └── p3p440.h │ │ │ │ │ └── pdnb3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ └── pdnb3.c │ │ │ │ ├── psyent │ │ │ │ │ ├── common │ │ │ │ │ │ └── AMDLV065D.c │ │ │ │ │ ├── pci5441 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── pci5441.c │ │ │ │ │ └── pk1c20 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ └── pk1c20.c │ │ │ │ ├── pxa255_idp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── idp_notes.txt │ │ │ │ │ ├── pxa_idp.c │ │ │ │ │ ├── pxa_reg_calcs.out │ │ │ │ │ └── pxa_reg_calcs.py │ │ │ │ ├── qcom │ │ │ │ │ ├── common │ │ │ │ │ │ ├── athrs17_phy.c │ │ │ │ │ │ ├── athrs17_phy.h │ │ │ │ │ │ ├── ipq806x_phy.h │ │ │ │ │ │ ├── qca8511.c │ │ │ │ │ │ ├── qca8511.h │ │ │ │ │ │ └── qca_common.h │ │ │ │ │ ├── ipq40xx_cdp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ipq40xx_board_param.h │ │ │ │ │ │ ├── ipq40xx_cdp.c │ │ │ │ │ │ └── ipq40xx_cdp.h │ │ │ │ │ └── ipq806x_cdp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ipq806x_board_param.h │ │ │ │ │ │ ├── ipq806x_cdp.c │ │ │ │ │ │ └── ipq806x_cdp.h │ │ │ │ ├── qemu-mips │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ ├── qemu-mips.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── qi │ │ │ │ │ └── qi_lb60 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── qi_lb60.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── quad100hd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── nand.c │ │ │ │ │ └── quad100hd.c │ │ │ │ ├── quantum │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fpga.h │ │ │ │ │ ├── quantum.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── r360mpi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── pcmcia.c │ │ │ │ │ ├── r360mpi.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── raidsonic │ │ │ │ │ └── ib62x0 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ib62x0.c │ │ │ │ │ │ ├── ib62x0.h │ │ │ │ │ │ └── kwbimage.cfg │ │ │ │ ├── rattler │ │ │ │ │ ├── Makefile │ │ │ │ │ └── rattler.c │ │ │ │ ├── rbc823 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── kbd.c │ │ │ │ │ ├── rbc823.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── renesas │ │ │ │ │ ├── MigoR │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── migo_r.c │ │ │ │ │ ├── ap325rxa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ap325rxa.c │ │ │ │ │ │ ├── cpld-ap325rxa.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ │ ├── ecovec │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ecovec.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ │ ├── r0p7734 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── r0p7734.c │ │ │ │ │ ├── r2dplus │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── r2dplus.c │ │ │ │ │ ├── r7780mp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── r7780mp.c │ │ │ │ │ │ └── r7780mp.h │ │ │ │ │ ├── rsk7203 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── rsk7203.c │ │ │ │ │ ├── rsk7264 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── rsk7264.c │ │ │ │ │ ├── rsk7269 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── rsk7269.c │ │ │ │ │ ├── sh7757lcr │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── sh7757lcr.c │ │ │ │ │ │ ├── spi-boot.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── sh7763rdp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── sh7763rdp.c │ │ │ │ │ └── sh7785lcr │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── rtl8169.h │ │ │ │ │ │ ├── rtl8169_mac.c │ │ │ │ │ │ ├── selfcheck.c │ │ │ │ │ │ └── sh7785lcr.c │ │ │ │ ├── ronetix │ │ │ │ │ ├── pm9261 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ ├── partition.c │ │ │ │ │ │ └── pm9261.c │ │ │ │ │ ├── pm9263 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ ├── partition.c │ │ │ │ │ │ └── pm9263.c │ │ │ │ │ └── pm9g45 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── pm9g45.c │ │ │ │ ├── rpxsuper │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── mii_phy.c │ │ │ │ │ ├── readme │ │ │ │ │ ├── rpxsuper.c │ │ │ │ │ └── rpxsuper.h │ │ │ │ ├── rsdproto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── flash_asm.S │ │ │ │ │ ├── rsdproto.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── sacsng │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clkinit.c │ │ │ │ │ ├── clkinit.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── ioconfig.h │ │ │ │ │ └── sacsng.c │ │ │ │ ├── samsung │ │ │ │ │ ├── goni │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── goni.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mem_setup.S │ │ │ │ │ │ └── onenand.c │ │ │ │ │ ├── origen │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mem_setup.S │ │ │ │ │ │ ├── mmc_boot.c │ │ │ │ │ │ ├── origen.c │ │ │ │ │ │ ├── origen_setup.h │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ └── mkv310_image.c │ │ │ │ │ ├── smdk2410 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── smdk2410.c │ │ │ │ │ ├── smdk5250 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clock_init.c │ │ │ │ │ │ ├── dmc_init.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mmc_boot.c │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ ├── smdk5250.c │ │ │ │ │ │ └── tzpc_init.c │ │ │ │ │ ├── smdk6400 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── smdk6400.c │ │ │ │ │ │ ├── smdk6400_nand_spl.c │ │ │ │ │ │ └── u-boot-nand.lds │ │ │ │ │ ├── smdkc100 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mem_setup.S │ │ │ │ │ │ ├── onenand.c │ │ │ │ │ │ └── smdkc100.c │ │ │ │ │ ├── smdkv310 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mem_setup.S │ │ │ │ │ │ ├── mmc_boot.c │ │ │ │ │ │ ├── smdkv310.c │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ └── mkv310_image.c │ │ │ │ │ ├── trats │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── setup.h │ │ │ │ │ │ └── trats.c │ │ │ │ │ └── universal_c210 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── onenand.c │ │ │ │ │ │ └── universal.c │ │ │ │ ├── sandbox │ │ │ │ │ └── sandbox │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── sandbox.c │ │ │ │ ├── sandburst │ │ │ │ │ ├── common │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── ppc440gx_i2c.c │ │ │ │ │ │ ├── ppc440gx_i2c.h │ │ │ │ │ │ ├── sb_common.c │ │ │ │ │ │ └── sb_common.h │ │ │ │ │ ├── karef │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── hal_ka_of_auto.h │ │ │ │ │ │ ├── hal_ka_sc_auto.h │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── karef.c │ │ │ │ │ │ ├── karef.h │ │ │ │ │ │ ├── karef_version.h │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ │ └── metrobox │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── hal_xc_auto.h │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── metrobox.c │ │ │ │ │ │ ├── metrobox.h │ │ │ │ │ │ ├── metrobox_version.h │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── sandpoint │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── dinkdl │ │ │ │ │ ├── early_init.S │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── sandpoint.c │ │ │ │ │ ├── speed.h │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── sbc405 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sbc405.c │ │ │ │ │ └── strataflash.c │ │ │ │ ├── sbc8349 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── pci.c │ │ │ │ │ └── sbc8349.c │ │ │ │ ├── sbc8548 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── sbc8548.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── sbc8560 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── sbc8560.c │ │ │ │ │ └── tlb.c │ │ │ │ ├── sbc8641d │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ └── sbc8641d.c │ │ │ │ ├── sc3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── init.S │ │ │ │ │ ├── sc3.c │ │ │ │ │ ├── sc3.h │ │ │ │ │ └── sc3nand.c │ │ │ │ ├── scb9328 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── intel.h │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── scb9328.c │ │ │ │ ├── sheldon │ │ │ │ │ └── simpc8313 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ └── simpc8313.c │ │ │ │ ├── shmin │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── shmin.c │ │ │ │ ├── siemens │ │ │ │ │ ├── IAD210 │ │ │ │ │ │ ├── IAD210.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── atm.c │ │ │ │ │ │ ├── atm.h │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── SCM │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── fpga_scm.c │ │ │ │ │ │ ├── scm.c │ │ │ │ │ │ └── scm.h │ │ │ │ │ └── common │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ └── fpga.h │ │ │ │ ├── sixnet │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpgadata.c │ │ │ │ │ ├── sixnet.c │ │ │ │ │ ├── sixnet.h │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── snmc │ │ │ │ │ ├── qs850 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── qs850.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── qs860t │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── qs860t.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── socrates │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ddr.c │ │ │ │ │ ├── law.c │ │ │ │ │ ├── nand.c │ │ │ │ │ ├── sdram.c │ │ │ │ │ ├── socrates.c │ │ │ │ │ ├── tlb.c │ │ │ │ │ └── upm_table.h │ │ │ │ ├── sorcery │ │ │ │ │ ├── Makefile │ │ │ │ │ └── sorcery.c │ │ │ │ ├── spc1920 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── hpi.c │ │ │ │ │ ├── hpi.h │ │ │ │ │ ├── pld.h │ │ │ │ │ ├── spc1920.c │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── spd8xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── spd8xx.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── spear │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── spr_lowlevel_init.S │ │ │ │ │ │ └── spr_misc.c │ │ │ │ │ ├── spear300 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── spear300.c │ │ │ │ │ ├── spear310 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── spear310.c │ │ │ │ │ ├── spear320 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── spear320.c │ │ │ │ │ └── spear600 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── spear600.c │ │ │ │ ├── st-ericsson │ │ │ │ │ └── u8500 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── prcmu-fw.h │ │ │ │ │ │ ├── prcmu.c │ │ │ │ │ │ └── u8500_href.c │ │ │ │ ├── st │ │ │ │ │ └── nhk8815 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nhk8815.c │ │ │ │ ├── stx │ │ │ │ │ ├── stxgp3 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── stxgp3.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ ├── stxssa │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── stxssa.c │ │ │ │ │ │ └── tlb.c │ │ │ │ │ └── stxxtc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── stxxtc.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── svm_sc8xx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── svm_sc8xx.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── sx1 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ └── sx1.c │ │ │ │ ├── syteco │ │ │ │ │ ├── jadecpu │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── jadecpu.c │ │ │ │ │ │ └── lowlevel_init.S │ │ │ │ │ └── zmx25 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── zmx25.c │ │ │ │ ├── t3corp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chip_config.c │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── init.S │ │ │ │ │ └── t3corp.c │ │ │ │ ├── tcm-bf518 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ └── tcm-bf518.c │ │ │ │ ├── tcm-bf537 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.mk │ │ │ │ │ ├── gpio_cfi_flash.c │ │ │ │ │ └── tcm-bf537.c │ │ │ │ ├── technexion │ │ │ │ │ └── twister │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── twister.c │ │ │ │ │ │ └── twister.h │ │ │ │ ├── teejet │ │ │ │ │ └── mt_ventoux │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mt_ventoux.c │ │ │ │ │ │ └── mt_ventoux.h │ │ │ │ ├── ti │ │ │ │ │ ├── am335x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── evm.c │ │ │ │ │ │ └── mux.c │ │ │ │ │ ├── am3517crane │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── am3517crane.c │ │ │ │ │ │ └── am3517crane.h │ │ │ │ │ ├── beagle │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── beagle.c │ │ │ │ │ │ ├── beagle.h │ │ │ │ │ │ └── led.c │ │ │ │ │ ├── evm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── evm.c │ │ │ │ │ │ └── evm.h │ │ │ │ │ ├── omap1510inn │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── omap1510innovator.c │ │ │ │ │ ├── omap2420h4 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ ├── omap2420h4.c │ │ │ │ │ │ └── sys_info.c │ │ │ │ │ ├── omap5912osk │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── omap5912osk.c │ │ │ │ │ ├── omap5_evm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── evm.c │ │ │ │ │ │ └── mux_data.h │ │ │ │ │ ├── omap730p2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── lowlevel_init.S │ │ │ │ │ │ └── omap730p2.c │ │ │ │ │ ├── panda │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── panda.c │ │ │ │ │ │ └── panda_mux_data.h │ │ │ │ │ ├── sdp3430 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── sdp.c │ │ │ │ │ │ └── sdp.h │ │ │ │ │ ├── sdp4430 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cmd_bat.c │ │ │ │ │ │ ├── sdp.c │ │ │ │ │ │ └── sdp4430_mux_data.h │ │ │ │ │ └── tnetv107xevm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── sdb_board.c │ │ │ │ ├── timll │ │ │ │ │ ├── devkit3250 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── devkit3250.c │ │ │ │ │ └── devkit8000 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── devkit8000.c │ │ │ │ │ │ └── devkit8000.h │ │ │ │ ├── toradex │ │ │ │ │ └── colibri_pxa270 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── colibri_pxa270.c │ │ │ │ ├── total5200 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ │ ├── mt48lc32m16a2-75.h │ │ │ │ │ ├── sdram.c │ │ │ │ │ ├── sdram.h │ │ │ │ │ └── total5200.c │ │ │ │ ├── tqc │ │ │ │ │ ├── tqm5200 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cam5200_flash.c │ │ │ │ │ │ ├── cmd_stk52xx.c │ │ │ │ │ │ ├── cmd_tb5200.c │ │ │ │ │ │ ├── mt48lc16m16a2-75.h │ │ │ │ │ │ └── tqm5200.c │ │ │ │ │ ├── tqm8260 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── tqm8260.c │ │ │ │ │ ├── tqm8272 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ ├── tqm8272.c │ │ │ │ │ │ └── tqm8272.h │ │ │ │ │ ├── tqm834x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── tqm834x.c │ │ │ │ │ ├── tqm85xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ └── tqm85xx.c │ │ │ │ │ └── tqm8xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── load_sernum_ethaddr.c │ │ │ │ │ │ ├── tqm8xx.c │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── trizepsiv │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── conxs.c │ │ │ │ │ └── eeprom.c │ │ │ │ ├── ttcontrol │ │ │ │ │ └── vision2 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── imximage_hynix.cfg │ │ │ │ │ │ └── vision2.c │ │ │ │ ├── utx8245 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── utx8245.c │ │ │ │ ├── v37 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ └── v37.c │ │ │ │ ├── v38b │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ethaddr.c │ │ │ │ │ └── v38b.c │ │ │ │ ├── ve8313 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ve8313.c │ │ │ │ ├── vpac270 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── onenand.c │ │ │ │ │ ├── u-boot-spl.lds │ │ │ │ │ └── vpac270.c │ │ │ │ ├── w7o │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd_vpd.c │ │ │ │ │ ├── errors.h │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── fsboot.c │ │ │ │ │ ├── init.S │ │ │ │ │ ├── post1.S │ │ │ │ │ ├── post2.c │ │ │ │ │ ├── u-boot.lds.debug │ │ │ │ │ ├── vpd.c │ │ │ │ │ ├── vpd.h │ │ │ │ │ ├── w7o.c │ │ │ │ │ ├── w7o.h │ │ │ │ │ └── watchdog.c │ │ │ │ ├── westel │ │ │ │ │ └── amx860 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── amx860.c │ │ │ │ │ │ ├── flash.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── u-boot.lds.debug │ │ │ │ ├── xaeniax │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ └── xaeniax.c │ │ │ │ ├── xes │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── actl_nand.c │ │ │ │ │ │ ├── board.c │ │ │ │ │ │ ├── fsl_8xxx_clk.c │ │ │ │ │ │ ├── fsl_8xxx_misc.c │ │ │ │ │ │ ├── fsl_8xxx_misc.h │ │ │ │ │ │ └── fsl_8xxx_pci.c │ │ │ │ │ ├── xpedite1000 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── u-boot.lds.debug │ │ │ │ │ │ └── xpedite1000.c │ │ │ │ │ ├── xpedite517x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ └── xpedite517x.c │ │ │ │ │ ├── xpedite520x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ └── xpedite520x.c │ │ │ │ │ ├── xpedite537x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ └── xpedite537x.c │ │ │ │ │ └── xpedite550x │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ddr.c │ │ │ │ │ │ ├── law.c │ │ │ │ │ │ ├── tlb.c │ │ │ │ │ │ └── xpedite550x.c │ │ │ │ ├── xilinx │ │ │ │ │ ├── common │ │ │ │ │ │ ├── xbasic_types.c │ │ │ │ │ │ ├── xbasic_types.h │ │ │ │ │ │ ├── xbuf_descriptor.h │ │ │ │ │ │ ├── xdma_channel.c │ │ │ │ │ │ ├── xdma_channel.h │ │ │ │ │ │ ├── xdma_channel_i.h │ │ │ │ │ │ ├── xdma_channel_sg.c │ │ │ │ │ │ ├── xio.h │ │ │ │ │ │ ├── xipif_v1_23_b.c │ │ │ │ │ │ ├── xipif_v1_23_b.h │ │ │ │ │ │ ├── xpacket_fifo_v1_00_b.c │ │ │ │ │ │ ├── xpacket_fifo_v1_00_b.h │ │ │ │ │ │ ├── xstatus.h │ │ │ │ │ │ ├── xversion.c │ │ │ │ │ │ └── xversion.h │ │ │ │ │ ├── microblaze-generic │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ ├── microblaze-generic.c │ │ │ │ │ │ ├── u-boot.lds │ │ │ │ │ │ └── xparameters.h │ │ │ │ │ ├── ml507 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ml507.c │ │ │ │ │ │ └── xparameters.h │ │ │ │ │ ├── ppc405-generic │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── xilinx_ppc405_generic.c │ │ │ │ │ │ └── xparameters.h │ │ │ │ │ ├── ppc440-generic │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── init.S │ │ │ │ │ │ ├── xilinx_ppc440_generic.c │ │ │ │ │ │ └── xparameters.h │ │ │ │ │ └── xilinx_iic │ │ │ │ │ │ ├── xiic_l.c │ │ │ │ │ │ └── xiic_l.h │ │ │ │ ├── zeus │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── update.c │ │ │ │ │ └── zeus.c │ │ │ │ ├── zipitz2 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── zipitz2.c │ │ │ │ └── zpc1900 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── zpc1900.c │ │ │ │ ├── boards.cfg │ │ │ │ ├── common │ │ │ │ ├── Makefile │ │ │ │ ├── bedbug.c │ │ │ │ ├── bootstage.c │ │ │ │ ├── cmd_ambapp.c │ │ │ │ ├── cmd_bdinfo.c │ │ │ │ ├── cmd_bedbug.c │ │ │ │ ├── cmd_bmp.c │ │ │ │ ├── cmd_boot.c │ │ │ │ ├── cmd_bootldr.c │ │ │ │ ├── cmd_bootm.c │ │ │ │ ├── cmd_cache.c │ │ │ │ ├── cmd_console.c │ │ │ │ ├── cmd_cplbinfo.c │ │ │ │ ├── cmd_cramfs.c │ │ │ │ ├── cmd_dataflash_mmc_mux.c │ │ │ │ ├── cmd_date.c │ │ │ │ ├── cmd_dcr.c │ │ │ │ ├── cmd_df.c │ │ │ │ ├── cmd_diag.c │ │ │ │ ├── cmd_display.c │ │ │ │ ├── cmd_dtt.c │ │ │ │ ├── cmd_echo.c │ │ │ │ ├── cmd_eeprom.c │ │ │ │ ├── cmd_elf.c │ │ │ │ ├── cmd_exit.c │ │ │ │ ├── cmd_ext2.c │ │ │ │ ├── cmd_fat.c │ │ │ │ ├── cmd_fdc.c │ │ │ │ ├── cmd_fdos.c │ │ │ │ ├── cmd_fdt.c │ │ │ │ ├── cmd_fitupd.c │ │ │ │ ├── cmd_flash.c │ │ │ │ ├── cmd_fpga.c │ │ │ │ ├── cmd_gpio.c │ │ │ │ ├── cmd_help.c │ │ │ │ ├── cmd_i2c.c │ │ │ │ ├── cmd_ide.c │ │ │ │ ├── cmd_immap.c │ │ │ │ ├── cmd_irq.c │ │ │ │ ├── cmd_itest.c │ │ │ │ ├── cmd_jffs2.c │ │ │ │ ├── cmd_ldrinfo.c │ │ │ │ ├── cmd_led.c │ │ │ │ ├── cmd_license.c │ │ │ │ ├── cmd_load.c │ │ │ │ ├── cmd_log.c │ │ │ │ ├── cmd_mac.c │ │ │ │ ├── cmd_md5sum.c │ │ │ │ ├── cmd_mdio.c │ │ │ │ ├── cmd_mem.c │ │ │ │ ├── cmd_mfsl.c │ │ │ │ ├── cmd_mii.c │ │ │ │ ├── cmd_misc.c │ │ │ │ ├── cmd_mmc.c │ │ │ │ ├── cmd_mmc_spi.c │ │ │ │ ├── cmd_mnfinfo.c │ │ │ │ ├── cmd_mp.c │ │ │ │ ├── cmd_mtdparts.c │ │ │ │ ├── cmd_nand.c │ │ │ │ ├── cmd_net.c │ │ │ │ ├── cmd_nvedit.c │ │ │ │ ├── cmd_onenand.c │ │ │ │ ├── cmd_otp.c │ │ │ │ ├── cmd_pci.c │ │ │ │ ├── cmd_pcmcia.c │ │ │ │ ├── cmd_portio.c │ │ │ │ ├── cmd_pxe.c │ │ │ │ ├── cmd_qca8075.c │ │ │ │ ├── cmd_reginfo.c │ │ │ │ ├── cmd_reiser.c │ │ │ │ ├── cmd_sata.c │ │ │ │ ├── cmd_scsi.c │ │ │ │ ├── cmd_setexpr.c │ │ │ │ ├── cmd_sf.c │ │ │ │ ├── cmd_sha1sum.c │ │ │ │ ├── cmd_source.c │ │ │ │ ├── cmd_spi.c │ │ │ │ ├── cmd_spibootldr.c │ │ │ │ ├── cmd_spl.c │ │ │ │ ├── cmd_strings.c │ │ │ │ ├── cmd_terminal.c │ │ │ │ ├── cmd_test.c │ │ │ │ ├── cmd_time.c │ │ │ │ ├── cmd_tpm.c │ │ │ │ ├── cmd_tsi148.c │ │ │ │ ├── cmd_ubi.c │ │ │ │ ├── cmd_ubifs.c │ │ │ │ ├── cmd_universe.c │ │ │ │ ├── cmd_unzip.c │ │ │ │ ├── cmd_usb.c │ │ │ │ ├── cmd_version.c │ │ │ │ ├── cmd_ximg.c │ │ │ │ ├── cmd_yaffs2.c │ │ │ │ ├── command.c │ │ │ │ ├── console.c │ │ │ │ ├── ddr_spd.c │ │ │ │ ├── dlmalloc.c │ │ │ │ ├── dlmalloc.src │ │ │ │ ├── env_common.c │ │ │ │ ├── env_dataflash.c │ │ │ │ ├── env_eeprom.c │ │ │ │ ├── env_embedded.c │ │ │ │ ├── env_fat.c │ │ │ │ ├── env_flash.c │ │ │ │ ├── env_mmc.c │ │ │ │ ├── env_nand.c │ │ │ │ ├── env_nowhere.c │ │ │ │ ├── env_nvram.c │ │ │ │ ├── env_onenand.c │ │ │ │ ├── env_remote.c │ │ │ │ ├── env_sf.c │ │ │ │ ├── exports.c │ │ │ │ ├── fdt_support.c │ │ │ │ ├── flash.c │ │ │ │ ├── hush.c │ │ │ │ ├── hwconfig.c │ │ │ │ ├── image.c │ │ │ │ ├── iomux.c │ │ │ │ ├── kallsyms.c │ │ │ │ ├── kgdb.c │ │ │ │ ├── kgdb_stubs.c │ │ │ │ ├── lcd.c │ │ │ │ ├── lynxkdi.c │ │ │ │ ├── main.c │ │ │ │ ├── memsize.c │ │ │ │ ├── menu.c │ │ │ │ ├── miiphyutil.c │ │ │ │ ├── modem.c │ │ │ │ ├── s_record.c │ │ │ │ ├── serial.c │ │ │ │ ├── stdio.c │ │ │ │ ├── system_map.c │ │ │ │ ├── update.c │ │ │ │ ├── usb.c │ │ │ │ ├── usb_hub.c │ │ │ │ ├── usb_kbd.c │ │ │ │ ├── usb_storage.c │ │ │ │ └── xyzModem.c │ │ │ │ ├── config.mk │ │ │ │ ├── disk │ │ │ │ ├── Makefile │ │ │ │ ├── part.c │ │ │ │ ├── part_amiga.c │ │ │ │ ├── part_amiga.h │ │ │ │ ├── part_dos.c │ │ │ │ ├── part_dos.h │ │ │ │ ├── part_efi.c │ │ │ │ ├── part_efi.h │ │ │ │ ├── part_iso.c │ │ │ │ ├── part_iso.h │ │ │ │ ├── part_mac.c │ │ │ │ └── part_mac.h │ │ │ │ ├── doc │ │ │ │ ├── I2C_Edge_Conditions │ │ │ │ ├── README-integrator │ │ │ │ ├── README.440-DDR-performance │ │ │ │ ├── README.AMCC-eval-boards-cleanup │ │ │ │ ├── README.ARM-SoC │ │ │ │ ├── README.ARM-memory-map │ │ │ │ ├── README.AVR32 │ │ │ │ ├── README.AVR32-port-muxing │ │ │ │ ├── README.COBRA5272 │ │ │ │ ├── README.EVB-64260-750CX │ │ │ │ ├── README.INCA-IP │ │ │ │ ├── README.IPHASE4539 │ │ │ │ ├── README.IceCube │ │ │ │ ├── README.JFFS2 │ │ │ │ ├── README.JFFS2_NAND │ │ │ │ ├── README.LED │ │ │ │ ├── README.LED_display │ │ │ │ ├── README.Lite5200B_low_power │ │ │ │ ├── README.MBX │ │ │ │ ├── README.MPC866 │ │ │ │ ├── README.Modem │ │ │ │ ├── README.N1213 │ │ │ │ ├── README.NDS32 │ │ │ │ ├── README.NetConsole │ │ │ │ ├── README.OFT │ │ │ │ ├── README.OXC │ │ │ │ ├── README.PIP405 │ │ │ │ ├── README.POST │ │ │ │ ├── README.PlanetCore │ │ │ │ ├── README.RPXClassic │ │ │ │ ├── README.RPXlite │ │ │ │ ├── README.SBC8560 │ │ │ │ ├── README.SNTP │ │ │ │ ├── README.SPL │ │ │ │ ├── README.Sandpoint8240 │ │ │ │ ├── README.TQM8260 │ │ │ │ ├── README.VLAN │ │ │ │ ├── README.ag101 │ │ │ │ ├── README.ag102 │ │ │ │ ├── README.alaska8220 │ │ │ │ ├── README.amigaone │ │ │ │ ├── README.arm-caches │ │ │ │ ├── README.arm-relocation │ │ │ │ ├── README.at91 │ │ │ │ ├── README.at91-soc │ │ │ │ ├── README.atmel_mci │ │ │ │ ├── README.autoboot │ │ │ │ ├── README.bamboo │ │ │ │ ├── README.bedbug │ │ │ │ ├── README.bitbangMII │ │ │ │ ├── README.blackfin │ │ │ │ ├── README.bus_vcxk │ │ │ │ ├── README.cfi │ │ │ │ ├── README.cmi │ │ │ │ ├── README.commands │ │ │ │ ├── README.commands.itest │ │ │ │ ├── README.commands.spl │ │ │ │ ├── README.console │ │ │ │ ├── README.davinci │ │ │ │ ├── README.davinci.nand_spl │ │ │ │ ├── README.db64360 │ │ │ │ ├── README.db64460 │ │ │ │ ├── README.designware_eth │ │ │ │ ├── README.dnp5370 │ │ │ │ ├── README.dns │ │ │ │ ├── README.drivers.eth │ │ │ │ ├── README.ebony │ │ │ │ ├── README.enetaddr │ │ │ │ ├── README.evb64260 │ │ │ │ ├── README.fads │ │ │ │ ├── README.fdt-control │ │ │ │ ├── README.fsl-ddr │ │ │ │ ├── README.fsl-hwconfig │ │ │ │ ├── README.generic_usb_ohci │ │ │ │ ├── README.hawkboard │ │ │ │ ├── README.hwconfig │ │ │ │ ├── README.idma2intr │ │ │ │ ├── README.imx31 │ │ │ │ ├── README.imx5 │ │ │ │ ├── README.imximage │ │ │ │ ├── README.iomux │ │ │ │ ├── README.kmeter1 │ │ │ │ ├── README.korat │ │ │ │ ├── README.kwbimage │ │ │ │ ├── README.link-local │ │ │ │ ├── README.lynxkdi │ │ │ │ ├── README.m28 │ │ │ │ ├── README.m52277evb │ │ │ │ ├── README.m5253evbe │ │ │ │ ├── README.m53017evb │ │ │ │ ├── README.m5373evb │ │ │ │ ├── README.m54455evb │ │ │ │ ├── README.m5475evb │ │ │ │ ├── README.m68k │ │ │ │ ├── README.marubun-pcmcia │ │ │ │ ├── README.menu │ │ │ │ ├── README.mergerbox │ │ │ │ ├── README.mips │ │ │ │ ├── README.mpc5xx │ │ │ │ ├── README.mpc7448hpc2 │ │ │ │ ├── README.mpc74xx │ │ │ │ ├── README.mpc8313erdb │ │ │ │ ├── README.mpc8315erdb │ │ │ │ ├── README.mpc8323erdb │ │ │ │ ├── README.mpc832xemds │ │ │ │ ├── README.mpc8349itx │ │ │ │ ├── README.mpc8360emds │ │ │ │ ├── README.mpc837xemds │ │ │ │ ├── README.mpc837xerdb │ │ │ │ ├── README.mpc83xx.ddrecc │ │ │ │ ├── README.mpc83xxads │ │ │ │ ├── README.mpc8536ds │ │ │ │ ├── README.mpc8544ds │ │ │ │ ├── README.mpc8569mds │ │ │ │ ├── README.mpc8572ds │ │ │ │ ├── README.mpc85xx │ │ │ │ ├── README.mpc85xxads │ │ │ │ ├── README.mpc85xxcds │ │ │ │ ├── README.mpc8610hpcd │ │ │ │ ├── README.mpc8641hpcn │ │ │ │ ├── README.mvbc_p │ │ │ │ ├── README.mvblm7 │ │ │ │ ├── README.mvsmr │ │ │ │ ├── README.mx28_common │ │ │ │ ├── README.mx28evk │ │ │ │ ├── README.mx35pdk │ │ │ │ ├── README.mx6qsabrelite │ │ │ │ ├── README.nand │ │ │ │ ├── README.nand-boot-ppc440 │ │ │ │ ├── README.ne2000 │ │ │ │ ├── README.nhk8815 │ │ │ │ ├── README.ns9750dev │ │ │ │ ├── README.ocotea │ │ │ │ ├── README.ocotea-PIBS-to-U-Boot │ │ │ │ ├── README.omap-ulpi-viewport │ │ │ │ ├── README.omap3 │ │ │ │ ├── README.omap730p2 │ │ │ │ ├── README.p1022ds │ │ │ │ ├── README.p1023rds │ │ │ │ ├── README.p1_p2_rdb_pc │ │ │ │ ├── README.p2020rdb │ │ │ │ ├── README.p2041rdb │ │ │ │ ├── README.p3060qds │ │ │ │ ├── README.p4080ds │ │ │ │ ├── README.phytec.pcm030 │ │ │ │ ├── README.ppc440 │ │ │ │ ├── README.pxe │ │ │ │ ├── README.qemu_mips │ │ │ │ ├── README.s5pc1xx │ │ │ │ ├── README.sandbox │ │ │ │ ├── README.sata │ │ │ │ ├── README.sbc8349 │ │ │ │ ├── README.sbc8548 │ │ │ │ ├── README.sbc8641d │ │ │ │ ├── README.sched │ │ │ │ ├── README.scrapyard │ │ │ │ ├── README.serial_multi │ │ │ │ ├── README.sh │ │ │ │ ├── README.sh7757lcr │ │ │ │ ├── README.sh7785lcr │ │ │ │ ├── README.sha1 │ │ │ │ ├── README.silent │ │ │ │ ├── README.simpc8313 │ │ │ │ ├── README.spear │ │ │ │ ├── README.srio-boot-corenet │ │ │ │ ├── README.standalone │ │ │ │ ├── README.stxxtc │ │ │ │ ├── README.switch_config │ │ │ │ ├── README.timll │ │ │ │ ├── README.ubi │ │ │ │ ├── README.ublimage │ │ │ │ ├── README.update │ │ │ │ ├── README.usb │ │ │ │ ├── README.video │ │ │ │ ├── README.xpedite1k │ │ │ │ ├── README.zeus │ │ │ │ ├── SPL │ │ │ │ │ └── README.omap3 │ │ │ │ ├── device-tree-bindings │ │ │ │ │ ├── README │ │ │ │ │ ├── clock │ │ │ │ │ │ └── nvidia,tegra20-car.txt │ │ │ │ │ ├── i2c │ │ │ │ │ │ └── tegra20-i2c.txt │ │ │ │ │ └── usb │ │ │ │ │ │ └── tegra-usb.txt │ │ │ │ ├── feature-removal-schedule.txt │ │ │ │ ├── git-mailrc │ │ │ │ ├── kwboot.1 │ │ │ │ ├── mkimage.1 │ │ │ │ └── uImage.FIT │ │ │ │ │ ├── command_syntax_extensions.txt │ │ │ │ │ ├── howto.txt │ │ │ │ │ ├── kernel.its │ │ │ │ │ ├── kernel_fdt.its │ │ │ │ │ ├── multi.its │ │ │ │ │ ├── source_file_format.txt │ │ │ │ │ ├── update3.its │ │ │ │ │ └── update_uboot.its │ │ │ │ ├── drivers │ │ │ │ ├── bios_emulator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── atibios.c │ │ │ │ │ ├── besys.c │ │ │ │ │ ├── bios.c │ │ │ │ │ ├── biosemu.c │ │ │ │ │ ├── biosemui.h │ │ │ │ │ ├── include │ │ │ │ │ │ ├── biosemu.h │ │ │ │ │ │ ├── x86emu.h │ │ │ │ │ │ └── x86emu │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── ops.h │ │ │ │ │ │ │ ├── prim_asm.h │ │ │ │ │ │ │ ├── prim_ops.h │ │ │ │ │ │ │ ├── regs.h │ │ │ │ │ │ │ └── x86emui.h │ │ │ │ │ └── x86emu │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── decode.c │ │ │ │ │ │ ├── ops.c │ │ │ │ │ │ ├── ops2.c │ │ │ │ │ │ ├── prim_ops.c │ │ │ │ │ │ └── sys.c │ │ │ │ ├── block │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ahci.c │ │ │ │ │ ├── ata_piix.c │ │ │ │ │ ├── ata_piix.h │ │ │ │ │ ├── dwc_ahsata.c │ │ │ │ │ ├── dwc_ahsata.h │ │ │ │ │ ├── fsl_sata.c │ │ │ │ │ ├── fsl_sata.h │ │ │ │ │ ├── ftide020.c │ │ │ │ │ ├── ftide020.h │ │ │ │ │ ├── libata.c │ │ │ │ │ ├── mvsata_ide.c │ │ │ │ │ ├── mxc_ata.c │ │ │ │ │ ├── pata_bfin.c │ │ │ │ │ ├── pata_bfin.h │ │ │ │ │ ├── sata_dwc.c │ │ │ │ │ ├── sata_dwc.h │ │ │ │ │ ├── sata_sil.c │ │ │ │ │ ├── sata_sil.h │ │ │ │ │ ├── sata_sil3114.c │ │ │ │ │ ├── sata_sil3114.h │ │ │ │ │ ├── sil680.c │ │ │ │ │ ├── sym53c8xx.c │ │ │ │ │ └── systemace.c │ │ │ │ ├── dma │ │ │ │ │ ├── MCD_dmaApi.c │ │ │ │ │ ├── MCD_tasks.c │ │ │ │ │ ├── MCD_tasksInit.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── apbh_dma.c │ │ │ │ │ ├── bam.c │ │ │ │ │ ├── fsl_dma.c │ │ │ │ │ └── omap3_dma.c │ │ │ │ ├── fpga │ │ │ │ │ ├── ACEX1K.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── altera.c │ │ │ │ │ ├── cyclon2.c │ │ │ │ │ ├── fpga.c │ │ │ │ │ ├── ivm_core.c │ │ │ │ │ ├── lattice.c │ │ │ │ │ ├── spartan2.c │ │ │ │ │ ├── spartan3.c │ │ │ │ │ ├── stratixII.c │ │ │ │ │ ├── virtex2.c │ │ │ │ │ └── xilinx.c │ │ │ │ ├── gpio │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── altera_pio.c │ │ │ │ │ ├── at91_gpio.c │ │ │ │ │ ├── da8xx_gpio.c │ │ │ │ │ ├── kw_gpio.c │ │ │ │ │ ├── mpc83xx_gpio.c │ │ │ │ │ ├── mvgpio.c │ │ │ │ │ ├── mvgpio.h │ │ │ │ │ ├── mvmfp.c │ │ │ │ │ ├── mxc_gpio.c │ │ │ │ │ ├── mxs_gpio.c │ │ │ │ │ ├── pca953x.c │ │ │ │ │ ├── pca9698.c │ │ │ │ │ ├── s5p_gpio.c │ │ │ │ │ ├── sandbox.c │ │ │ │ │ ├── spear_gpio.c │ │ │ │ │ └── tegra_gpio.c │ │ │ │ ├── hwmon │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── adm1021.c │ │ │ │ │ ├── adt7460.c │ │ │ │ │ ├── ds1621.c │ │ │ │ │ ├── ds1722.c │ │ │ │ │ ├── ds1775.c │ │ │ │ │ ├── lm63.c │ │ │ │ │ ├── lm73.c │ │ │ │ │ ├── lm75.c │ │ │ │ │ └── lm81.c │ │ │ │ ├── i2c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bfin-twi_i2c.c │ │ │ │ │ ├── davinci_i2c.c │ │ │ │ │ ├── designware_i2c.c │ │ │ │ │ ├── designware_i2c.h │ │ │ │ │ ├── fsl_i2c.c │ │ │ │ │ ├── ipq40xx_i2c.c │ │ │ │ │ ├── ipq40xx_i2c.h │ │ │ │ │ ├── ipq_i2c.c │ │ │ │ │ ├── ipq_i2c.h │ │ │ │ │ ├── mv_i2c.c │ │ │ │ │ ├── mv_i2c.h │ │ │ │ │ ├── mvtwsi.c │ │ │ │ │ ├── mxc_i2c.c │ │ │ │ │ ├── mxs_i2c.c │ │ │ │ │ ├── omap1510_i2c.c │ │ │ │ │ ├── omap24xx_i2c.c │ │ │ │ │ ├── omap24xx_i2c.h │ │ │ │ │ ├── pca9564_i2c.c │ │ │ │ │ ├── ppc4xx_i2c.c │ │ │ │ │ ├── s3c24x0_i2c.c │ │ │ │ │ ├── s3c44b0_i2c.c │ │ │ │ │ ├── sh_i2c.c │ │ │ │ │ ├── sh_sh7734_i2c.c │ │ │ │ │ ├── soft_i2c.c │ │ │ │ │ ├── tegra_i2c.c │ │ │ │ │ ├── tsi108_i2c.c │ │ │ │ │ ├── u8500_i2c.c │ │ │ │ │ └── u8500_i2c.h │ │ │ │ ├── input │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── i8042.c │ │ │ │ │ ├── input.c │ │ │ │ │ ├── key_matrix.c │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── pc_keyb.c │ │ │ │ │ ├── ps2mult.c │ │ │ │ │ ├── ps2ser.c │ │ │ │ │ └── tegra-kbc.c │ │ │ │ ├── misc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ali512x.c │ │ │ │ │ ├── ds4510.c │ │ │ │ │ ├── fsl_law.c │ │ │ │ │ ├── gpio_led.c │ │ │ │ │ ├── mc9sdz60.c │ │ │ │ │ ├── ns87308.c │ │ │ │ │ ├── pdsp188x.c │ │ │ │ │ ├── pmic_core.c │ │ │ │ │ ├── pmic_dialog.c │ │ │ │ │ ├── pmic_fsl.c │ │ │ │ │ ├── pmic_i2c.c │ │ │ │ │ ├── pmic_max8997.c │ │ │ │ │ ├── pmic_max8998.c │ │ │ │ │ ├── pmic_spi.c │ │ │ │ │ ├── status_led.c │ │ │ │ │ └── twl4030_led.c │ │ │ │ ├── mmc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arm_pl180_mmci.c │ │ │ │ │ ├── arm_pl180_mmci.h │ │ │ │ │ ├── bfin_sdh.c │ │ │ │ │ ├── davinci_mmc.c │ │ │ │ │ ├── fsl_esdhc.c │ │ │ │ │ ├── ftsdc010_esdhc.c │ │ │ │ │ ├── gen_atmel_mci.c │ │ │ │ │ ├── mmc.c │ │ │ │ │ ├── mmc_spi.c │ │ │ │ │ ├── mv_sdhci.c │ │ │ │ │ ├── mxcmmc.c │ │ │ │ │ ├── mxsmmc.c │ │ │ │ │ ├── omap_hsmmc.c │ │ │ │ │ ├── pxa_mmc.c │ │ │ │ │ ├── pxa_mmc.h │ │ │ │ │ ├── pxa_mmc_gen.c │ │ │ │ │ ├── qca_mmc.c │ │ │ │ │ ├── qca_mmc.h │ │ │ │ │ ├── s5p_sdhci.c │ │ │ │ │ ├── sdhci.c │ │ │ │ │ ├── sh_mmcif.c │ │ │ │ │ ├── sh_mmcif.h │ │ │ │ │ ├── tegra_mmc.c │ │ │ │ │ └── tegra_mmc.h │ │ │ │ ├── mtd │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at45.c │ │ │ │ │ ├── cfi_flash.c │ │ │ │ │ ├── cfi_mtd.c │ │ │ │ │ ├── dataflash.c │ │ │ │ │ ├── ftsmc020.c │ │ │ │ │ ├── ipq_nand.c │ │ │ │ │ ├── ipq_spi_flash.c │ │ │ │ │ ├── jedec_flash.c │ │ │ │ │ ├── mtdconcat.c │ │ │ │ │ ├── mtdcore.c │ │ │ │ │ ├── mtdpart.c │ │ │ │ │ ├── mw_eeprom.c │ │ │ │ │ ├── nand │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── atmel_nand.c │ │ │ │ │ │ ├── atmel_nand_ecc.h │ │ │ │ │ │ ├── bfin_nand.c │ │ │ │ │ │ ├── davinci_nand.c │ │ │ │ │ │ ├── diskonchip.c │ │ │ │ │ │ ├── fsl_elbc_nand.c │ │ │ │ │ │ ├── fsl_ifc_nand.c │ │ │ │ │ │ ├── fsl_upm.c │ │ │ │ │ │ ├── fsmc_nand.c │ │ │ │ │ │ ├── jz4740_nand.c │ │ │ │ │ │ ├── kb9202_nand.c │ │ │ │ │ │ ├── kirkwood_nand.c │ │ │ │ │ │ ├── kmeter1_nand.c │ │ │ │ │ │ ├── mpc5121_nfc.c │ │ │ │ │ │ ├── mxc_nand.c │ │ │ │ │ │ ├── mxs_nand.c │ │ │ │ │ │ ├── nand.c │ │ │ │ │ │ ├── nand_base.c │ │ │ │ │ │ ├── nand_bbt.c │ │ │ │ │ │ ├── nand_bch.c │ │ │ │ │ │ ├── nand_ecc.c │ │ │ │ │ │ ├── nand_ids.c │ │ │ │ │ │ ├── nand_plat.c │ │ │ │ │ │ ├── nand_spl_load.c │ │ │ │ │ │ ├── nand_spl_simple.c │ │ │ │ │ │ ├── nand_util.c │ │ │ │ │ │ ├── ndfc.c │ │ │ │ │ │ ├── nomadik.c │ │ │ │ │ │ ├── omap_gpmc.c │ │ │ │ │ │ ├── s3c2410_nand.c │ │ │ │ │ │ └── s3c64xx.c │ │ │ │ │ ├── onenand │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── onenand_base.c │ │ │ │ │ │ ├── onenand_bbt.c │ │ │ │ │ │ ├── onenand_spl.c │ │ │ │ │ │ ├── onenand_uboot.c │ │ │ │ │ │ └── samsung.c │ │ │ │ │ ├── qpic_nand.c │ │ │ │ │ ├── spi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── atmel.c │ │ │ │ │ │ ├── eeprom_m95xxx.c │ │ │ │ │ │ ├── eon.c │ │ │ │ │ │ ├── giga.c │ │ │ │ │ │ ├── macronix.c │ │ │ │ │ │ ├── ramtron.c │ │ │ │ │ │ ├── spansion.c │ │ │ │ │ │ ├── spi_flash.c │ │ │ │ │ │ ├── spi_flash_internal.h │ │ │ │ │ │ ├── spi_nand.c │ │ │ │ │ │ ├── spi_nand_dev.h │ │ │ │ │ │ ├── spi_nor_generic.c │ │ │ │ │ │ ├── spi_spl_load.c │ │ │ │ │ │ ├── sst.c │ │ │ │ │ │ ├── stmicro.c │ │ │ │ │ │ └── winbond.c │ │ │ │ │ ├── st_smi.c │ │ │ │ │ └── ubi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── build.c │ │ │ │ │ │ ├── crc32.c │ │ │ │ │ │ ├── crc32defs.h │ │ │ │ │ │ ├── crc32table.h │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── eba.c │ │ │ │ │ │ ├── io.c │ │ │ │ │ │ ├── kapi.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ ├── scan.h │ │ │ │ │ │ ├── ubi-media.h │ │ │ │ │ │ ├── ubi.h │ │ │ │ │ │ ├── upd.c │ │ │ │ │ │ ├── vmt.c │ │ │ │ │ │ ├── vtbl.c │ │ │ │ │ │ └── wl.c │ │ │ │ ├── net │ │ │ │ │ ├── 4xx_enet.c │ │ │ │ │ ├── 8390.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── altera_tse.c │ │ │ │ │ ├── altera_tse.h │ │ │ │ │ ├── armada100_fec.c │ │ │ │ │ ├── armada100_fec.h │ │ │ │ │ ├── at91_emac.c │ │ │ │ │ ├── ax88180.c │ │ │ │ │ ├── ax88180.h │ │ │ │ │ ├── ax88796.c │ │ │ │ │ ├── ax88796.h │ │ │ │ │ ├── bfin_mac.c │ │ │ │ │ ├── bfin_mac.h │ │ │ │ │ ├── calxedaxgmac.c │ │ │ │ │ ├── cs8900.c │ │ │ │ │ ├── cs8900.h │ │ │ │ │ ├── davinci_emac.c │ │ │ │ │ ├── davinci_emac.h │ │ │ │ │ ├── dc2114x.c │ │ │ │ │ ├── designware.c │ │ │ │ │ ├── designware.h │ │ │ │ │ ├── dm9000x.c │ │ │ │ │ ├── dm9000x.h │ │ │ │ │ ├── dnet.c │ │ │ │ │ ├── dnet.h │ │ │ │ │ ├── e1000.c │ │ │ │ │ ├── e1000.h │ │ │ │ │ ├── e1000_spi.c │ │ │ │ │ ├── eepro100.c │ │ │ │ │ ├── enc28j60.c │ │ │ │ │ ├── enc28j60.h │ │ │ │ │ ├── ep93xx_eth.c │ │ │ │ │ ├── ep93xx_eth.h │ │ │ │ │ ├── ethoc.c │ │ │ │ │ ├── fec_mxc.c │ │ │ │ │ ├── fec_mxc.h │ │ │ │ │ ├── fm │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dtsec.c │ │ │ │ │ │ ├── eth.c │ │ │ │ │ │ ├── fm.c │ │ │ │ │ │ ├── fm.h │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ ├── p1023.c │ │ │ │ │ │ ├── p3060.c │ │ │ │ │ │ ├── p4080.c │ │ │ │ │ │ ├── p5020.c │ │ │ │ │ │ ├── tgec.c │ │ │ │ │ │ └── tgec_phy.c │ │ │ │ │ ├── fsl_mcdmafec.c │ │ │ │ │ ├── fsl_mdio.c │ │ │ │ │ ├── ftgmac100.c │ │ │ │ │ ├── ftgmac100.h │ │ │ │ │ ├── ftmac100.c │ │ │ │ │ ├── ftmac100.h │ │ │ │ │ ├── greth.c │ │ │ │ │ ├── greth.h │ │ │ │ │ ├── inca-ip_sw.c │ │ │ │ │ ├── ipq │ │ │ │ │ │ ├── ipq_gmac.h │ │ │ │ │ │ ├── ipq_gmac_eth.c │ │ │ │ │ │ └── ipq_mdio.c │ │ │ │ │ ├── ipq40xx │ │ │ │ │ │ ├── ipq40xx_edma_eth.c │ │ │ │ │ │ ├── ipq40xx_edma_eth.h │ │ │ │ │ │ ├── ipq40xx_ess_sw.c │ │ │ │ │ │ ├── ipq40xx_ess_sw.h │ │ │ │ │ │ ├── ipq40xx_mdio.c │ │ │ │ │ │ ├── ipq40xx_mdio.h │ │ │ │ │ │ ├── ipq40xx_qca8033.c │ │ │ │ │ │ ├── ipq40xx_qca8033.h │ │ │ │ │ │ ├── ipq40xx_qca8075.c │ │ │ │ │ │ └── ipq40xx_qca8075.h │ │ │ │ │ ├── ks8695eth.c │ │ │ │ │ ├── lan91c96.c │ │ │ │ │ ├── lan91c96.h │ │ │ │ │ ├── macb.c │ │ │ │ │ ├── macb.h │ │ │ │ │ ├── mcffec.c │ │ │ │ │ ├── mcfmii.c │ │ │ │ │ ├── mpc512x_fec.c │ │ │ │ │ ├── mpc512x_fec.h │ │ │ │ │ ├── mpc5xxx_fec.c │ │ │ │ │ ├── mpc5xxx_fec.h │ │ │ │ │ ├── mvgbe.c │ │ │ │ │ ├── mvgbe.h │ │ │ │ │ ├── natsemi.c │ │ │ │ │ ├── ne2000.c │ │ │ │ │ ├── ne2000.h │ │ │ │ │ ├── ne2000_base.c │ │ │ │ │ ├── ne2000_base.h │ │ │ │ │ ├── netarm_eth.c │ │ │ │ │ ├── netarm_eth.h │ │ │ │ │ ├── netconsole.c │ │ │ │ │ ├── nicext.h │ │ │ │ │ ├── ns8382x.c │ │ │ │ │ ├── nss │ │ │ │ │ │ ├── mii_gpio.c │ │ │ │ │ │ ├── nss_gmac_clocks.h │ │ │ │ │ │ ├── synopGMAC_Dev.c │ │ │ │ │ │ ├── synopGMAC_Dev.h │ │ │ │ │ │ ├── synopGMAC_network_interface.c │ │ │ │ │ │ ├── synopGMAC_plat.h │ │ │ │ │ │ ├── synop_mdio_acc.c │ │ │ │ │ │ ├── uboot_skb.c │ │ │ │ │ │ └── uboot_skb.h │ │ │ │ │ ├── pcnet.c │ │ │ │ │ ├── phy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── atheros.c │ │ │ │ │ │ ├── broadcom.c │ │ │ │ │ │ ├── davicom.c │ │ │ │ │ │ ├── generic_10g.c │ │ │ │ │ │ ├── lxt.c │ │ │ │ │ │ ├── marvell.c │ │ │ │ │ │ ├── micrel.c │ │ │ │ │ │ ├── miiphybb.c │ │ │ │ │ │ ├── mv88e61xx.c │ │ │ │ │ │ ├── mv88e61xx.h │ │ │ │ │ │ ├── natsemi.c │ │ │ │ │ │ ├── phy.c │ │ │ │ │ │ ├── realtek.c │ │ │ │ │ │ ├── smsc.c │ │ │ │ │ │ ├── teranetics.c │ │ │ │ │ │ └── vitesse.c │ │ │ │ │ ├── plb2800_eth.c │ │ │ │ │ ├── rtl8139.c │ │ │ │ │ ├── rtl8169.c │ │ │ │ │ ├── sh_eth.c │ │ │ │ │ ├── sh_eth.h │ │ │ │ │ ├── smc91111.c │ │ │ │ │ ├── smc91111.h │ │ │ │ │ ├── smc911x.c │ │ │ │ │ ├── smc911x.h │ │ │ │ │ ├── tsec.c │ │ │ │ │ ├── tsi108_eth.c │ │ │ │ │ ├── uli526x.c │ │ │ │ │ ├── vsc7385.c │ │ │ │ │ ├── xilinx_axi_emac.c │ │ │ │ │ ├── xilinx_emaclite.c │ │ │ │ │ ├── xilinx_ll_temac.c │ │ │ │ │ ├── xilinx_ll_temac.h │ │ │ │ │ ├── xilinx_ll_temac_fifo.c │ │ │ │ │ ├── xilinx_ll_temac_fifo.h │ │ │ │ │ ├── xilinx_ll_temac_mdio.c │ │ │ │ │ ├── xilinx_ll_temac_mdio.h │ │ │ │ │ ├── xilinx_ll_temac_sdma.c │ │ │ │ │ └── xilinx_ll_temac_sdma.h │ │ │ │ ├── pci │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fsl_pci_init.c │ │ │ │ │ ├── pci.c │ │ │ │ │ ├── pci_auto.c │ │ │ │ │ ├── pci_ftpci100.c │ │ │ │ │ ├── pci_ftpci100.h │ │ │ │ │ ├── pci_indirect.c │ │ │ │ │ ├── pci_ipq.c │ │ │ │ │ ├── pci_ipq40xx.c │ │ │ │ │ ├── pci_ixp.c │ │ │ │ │ ├── pci_sh4.c │ │ │ │ │ ├── pci_sh7751.c │ │ │ │ │ ├── pci_sh7780.c │ │ │ │ │ ├── tsi108_pci.c │ │ │ │ │ └── w83c553f.c │ │ │ │ ├── pcmcia │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── i82365.c │ │ │ │ │ ├── marubun_pcmcia.c │ │ │ │ │ ├── mpc8xx_pcmcia.c │ │ │ │ │ ├── rpx_pcmcia.c │ │ │ │ │ ├── ti_pci1410a.c │ │ │ │ │ └── tqm8xx_pcmcia.c │ │ │ │ ├── power │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ftpmu010.c │ │ │ │ │ ├── tps6586x.c │ │ │ │ │ ├── twl4030.c │ │ │ │ │ ├── twl6030.c │ │ │ │ │ └── twl6035.c │ │ │ │ ├── qe │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── qe.c │ │ │ │ │ ├── qe.h │ │ │ │ │ ├── uccf.c │ │ │ │ │ ├── uccf.h │ │ │ │ │ ├── uec.c │ │ │ │ │ ├── uec.h │ │ │ │ │ ├── uec_phy.c │ │ │ │ │ └── uec_phy.h │ │ │ │ ├── rtc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9_rtt.c │ │ │ │ │ ├── bfin_rtc.c │ │ │ │ │ ├── date.c │ │ │ │ │ ├── davinci.c │ │ │ │ │ ├── ds12887.c │ │ │ │ │ ├── ds1302.c │ │ │ │ │ ├── ds1306.c │ │ │ │ │ ├── ds1307.c │ │ │ │ │ ├── ds1337.c │ │ │ │ │ ├── ds1374.c │ │ │ │ │ ├── ds1556.c │ │ │ │ │ ├── ds164x.c │ │ │ │ │ ├── ds174x.c │ │ │ │ │ ├── ds3231.c │ │ │ │ │ ├── ftrtc010.c │ │ │ │ │ ├── isl1208.c │ │ │ │ │ ├── m41t11.c │ │ │ │ │ ├── m41t60.c │ │ │ │ │ ├── m41t62.c │ │ │ │ │ ├── m41t94.c │ │ │ │ │ ├── m48t35ax.c │ │ │ │ │ ├── max6900.c │ │ │ │ │ ├── mc13xxx-rtc.c │ │ │ │ │ ├── mc146818.c │ │ │ │ │ ├── mcfrtc.c │ │ │ │ │ ├── mk48t59.c │ │ │ │ │ ├── mpc5xxx.c │ │ │ │ │ ├── mpc8xx.c │ │ │ │ │ ├── mvrtc.c │ │ │ │ │ ├── mvrtc.h │ │ │ │ │ ├── mxsrtc.c │ │ │ │ │ ├── pcf8563.c │ │ │ │ │ ├── pl031.c │ │ │ │ │ ├── pt7c4338.c │ │ │ │ │ ├── rs5c372.c │ │ │ │ │ ├── rtc4543.c │ │ │ │ │ ├── rv3029.c │ │ │ │ │ ├── rx8025.c │ │ │ │ │ ├── s3c24x0_rtc.c │ │ │ │ │ ├── s3c44b0_rtc.c │ │ │ │ │ └── x1205.c │ │ │ │ ├── serial │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── altera_jtag_uart.c │ │ │ │ │ ├── altera_uart.c │ │ │ │ │ ├── arm_dcc.c │ │ │ │ │ ├── atmel_usart.c │ │ │ │ │ ├── atmel_usart.h │ │ │ │ │ ├── lpc32xx_hsuart.c │ │ │ │ │ ├── mcfuart.c │ │ │ │ │ ├── ns16550.c │ │ │ │ │ ├── ns9750_serial.c │ │ │ │ │ ├── opencores_yanu.c │ │ │ │ │ ├── qcom_uart.c │ │ │ │ │ ├── s3c4510b_uart.c │ │ │ │ │ ├── s3c4510b_uart.h │ │ │ │ │ ├── s3c64xx.c │ │ │ │ │ ├── sandbox.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── serial_clps7111.c │ │ │ │ │ ├── serial_imx.c │ │ │ │ │ ├── serial_ixp.c │ │ │ │ │ ├── serial_ks8695.c │ │ │ │ │ ├── serial_lh7a40x.c │ │ │ │ │ ├── serial_lpc2292.c │ │ │ │ │ ├── serial_max3100.c │ │ │ │ │ ├── serial_mxc.c │ │ │ │ │ ├── serial_netarm.c │ │ │ │ │ ├── serial_pl01x.c │ │ │ │ │ ├── serial_pl01x.h │ │ │ │ │ ├── serial_pxa.c │ │ │ │ │ ├── serial_s3c24x0.c │ │ │ │ │ ├── serial_s3c44b0.c │ │ │ │ │ ├── serial_s5p.c │ │ │ │ │ ├── serial_sa1100.c │ │ │ │ │ ├── serial_sh.c │ │ │ │ │ ├── serial_sh.h │ │ │ │ │ ├── serial_xuartlite.c │ │ │ │ │ ├── usbtty.c │ │ │ │ │ └── usbtty.h │ │ │ │ ├── spi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── altera_spi.c │ │ │ │ │ ├── andes_spi.c │ │ │ │ │ ├── andes_spi.h │ │ │ │ │ ├── armada100_spi.c │ │ │ │ │ ├── atmel_dataflash_spi.c │ │ │ │ │ ├── atmel_spi.c │ │ │ │ │ ├── atmel_spi.h │ │ │ │ │ ├── bfin_spi.c │ │ │ │ │ ├── cf_spi.c │ │ │ │ │ ├── davinci_spi.c │ │ │ │ │ ├── davinci_spi.h │ │ │ │ │ ├── fsl_espi.c │ │ │ │ │ ├── ipq_spi.c │ │ │ │ │ ├── ipq_spi.h │ │ │ │ │ ├── kirkwood_spi.c │ │ │ │ │ ├── mpc52xx_spi.c │ │ │ │ │ ├── mpc8xxx_spi.c │ │ │ │ │ ├── mxc_spi.c │ │ │ │ │ ├── mxs_spi.c │ │ │ │ │ ├── oc_tiny_spi.c │ │ │ │ │ ├── omap3_spi.c │ │ │ │ │ ├── omap3_spi.h │ │ │ │ │ ├── qca_qup_spi.c │ │ │ │ │ ├── qca_qup_spi.h │ │ │ │ │ ├── qca_qup_spi_bam.c │ │ │ │ │ ├── qca_qup_spi_bam.h │ │ │ │ │ ├── sh_spi.c │ │ │ │ │ ├── sh_spi.h │ │ │ │ │ ├── soft_spi.c │ │ │ │ │ └── tegra_spi.c │ │ │ │ ├── tpm │ │ │ │ │ ├── Makefile │ │ │ │ │ └── generic_lpc_tpm.c │ │ │ │ ├── twserial │ │ │ │ │ ├── Makefile │ │ │ │ │ └── soft_tws.c │ │ │ │ ├── usb │ │ │ │ │ ├── eth │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── asix.c │ │ │ │ │ │ ├── smsc95xx.c │ │ │ │ │ │ └── usb_ether.c │ │ │ │ │ ├── gadget │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── composite.c │ │ │ │ │ │ ├── config.c │ │ │ │ │ │ ├── core.c │ │ │ │ │ │ ├── designware_udc.c │ │ │ │ │ │ ├── ep0.c │ │ │ │ │ │ ├── ep0.h │ │ │ │ │ │ ├── epautoconf.c │ │ │ │ │ │ ├── ether.c │ │ │ │ │ │ ├── gadget_chips.h │ │ │ │ │ │ ├── mpc8xx_udc.c │ │ │ │ │ │ ├── mv_udc.c │ │ │ │ │ │ ├── ndis.h │ │ │ │ │ │ ├── omap1510_udc.c │ │ │ │ │ │ ├── pxa27x_udc.c │ │ │ │ │ │ ├── regs-otg.h │ │ │ │ │ │ ├── rndis.c │ │ │ │ │ │ ├── rndis.h │ │ │ │ │ │ ├── s3c_udc_otg.c │ │ │ │ │ │ ├── s3c_udc_otg_xfer_dma.c │ │ │ │ │ │ └── usbstring.c │ │ │ │ │ ├── host │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ehci-armada100.c │ │ │ │ │ │ ├── ehci-atmel.c │ │ │ │ │ │ ├── ehci-core.h │ │ │ │ │ │ ├── ehci-exynos.c │ │ │ │ │ │ ├── ehci-fsl.c │ │ │ │ │ │ ├── ehci-hcd.c │ │ │ │ │ │ ├── ehci-ixp4xx.c │ │ │ │ │ │ ├── ehci-marvell.c │ │ │ │ │ │ ├── ehci-mpc512x.c │ │ │ │ │ │ ├── ehci-mx5.c │ │ │ │ │ │ ├── ehci-mx6.c │ │ │ │ │ │ ├── ehci-mxc.c │ │ │ │ │ │ ├── ehci-mxs.c │ │ │ │ │ │ ├── ehci-omap.c │ │ │ │ │ │ ├── ehci-pci.c │ │ │ │ │ │ ├── ehci-ppc4xx.c │ │ │ │ │ │ ├── ehci-tegra.c │ │ │ │ │ │ ├── ehci-vct.c │ │ │ │ │ │ ├── ehci.h │ │ │ │ │ │ ├── isp116x-hcd.c │ │ │ │ │ │ ├── isp116x.h │ │ │ │ │ │ ├── ohci-at91.c │ │ │ │ │ │ ├── ohci-hcd.c │ │ │ │ │ │ ├── ohci.h │ │ │ │ │ │ ├── r8a66597-hcd.c │ │ │ │ │ │ ├── r8a66597.h │ │ │ │ │ │ ├── s3c64xx-hcd.c │ │ │ │ │ │ ├── sl811-hcd.c │ │ │ │ │ │ ├── sl811.h │ │ │ │ │ │ ├── utmi-armada100.c │ │ │ │ │ │ ├── xhci-exynos5.c │ │ │ │ │ │ ├── xhci-ipq.c │ │ │ │ │ │ ├── xhci-ipq40xx.c │ │ │ │ │ │ ├── xhci-mem.c │ │ │ │ │ │ ├── xhci-ring.c │ │ │ │ │ │ ├── xhci.c │ │ │ │ │ │ └── xhci.h │ │ │ │ │ ├── musb │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── am35x.c │ │ │ │ │ │ ├── am35x.h │ │ │ │ │ │ ├── blackfin_usb.c │ │ │ │ │ │ ├── blackfin_usb.h │ │ │ │ │ │ ├── da8xx.c │ │ │ │ │ │ ├── da8xx.h │ │ │ │ │ │ ├── davinci.c │ │ │ │ │ │ ├── davinci.h │ │ │ │ │ │ ├── musb_core.c │ │ │ │ │ │ ├── musb_core.h │ │ │ │ │ │ ├── musb_debug.h │ │ │ │ │ │ ├── musb_hcd.c │ │ │ │ │ │ ├── musb_hcd.h │ │ │ │ │ │ ├── musb_udc.c │ │ │ │ │ │ ├── omap3.c │ │ │ │ │ │ └── omap3.h │ │ │ │ │ ├── phy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── twl4030.c │ │ │ │ │ └── ulpi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── omap-ulpi-viewport.c │ │ │ │ │ │ ├── ulpi-viewport.c │ │ │ │ │ │ └── ulpi.c │ │ │ │ ├── video │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── amba.c │ │ │ │ │ ├── ati_ids.h │ │ │ │ │ ├── ati_radeon_fb.c │ │ │ │ │ ├── ati_radeon_fb.h │ │ │ │ │ ├── atmel_hlcdfb.c │ │ │ │ │ ├── atmel_lcdfb.c │ │ │ │ │ ├── bus_vcxk.c │ │ │ │ │ ├── cfb_console.c │ │ │ │ │ ├── ct69000.c │ │ │ │ │ ├── da8xx-fb.c │ │ │ │ │ ├── exynos_fb.c │ │ │ │ │ ├── exynos_fb.h │ │ │ │ │ ├── exynos_fimd.c │ │ │ │ │ ├── exynos_mipi_dsi.c │ │ │ │ │ ├── exynos_mipi_dsi_common.c │ │ │ │ │ ├── exynos_mipi_dsi_common.h │ │ │ │ │ ├── exynos_mipi_dsi_lowlevel.c │ │ │ │ │ ├── exynos_mipi_dsi_lowlevel.h │ │ │ │ │ ├── fsl_diu_fb.c │ │ │ │ │ ├── ipu.h │ │ │ │ │ ├── ipu_common.c │ │ │ │ │ ├── ipu_disp.c │ │ │ │ │ ├── ipu_regs.h │ │ │ │ │ ├── mb862xx.c │ │ │ │ │ ├── mb86r0xgdc.c │ │ │ │ │ ├── mx3fb.c │ │ │ │ │ ├── mxc_ipuv3_fb.c │ │ │ │ │ ├── mxcfb.h │ │ │ │ │ ├── omap3_dss.c │ │ │ │ │ ├── s6e63d6.c │ │ │ │ │ ├── s6e8ax0.c │ │ │ │ │ ├── sed13806.c │ │ │ │ │ ├── sed156x.c │ │ │ │ │ ├── sm501.c │ │ │ │ │ ├── smiLynxEM.c │ │ │ │ │ ├── videomodes.c │ │ │ │ │ └── videomodes.h │ │ │ │ └── watchdog │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── at91sam9_wdt.c │ │ │ │ │ └── ftwdt010_wdt.c │ │ │ │ ├── dts │ │ │ │ └── Makefile │ │ │ │ ├── examples │ │ │ │ ├── api │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── crt0.S │ │ │ │ │ ├── demo.c │ │ │ │ │ ├── glue.c │ │ │ │ │ ├── glue.h │ │ │ │ │ └── libgenwrap.c │ │ │ │ └── standalone │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── 82559_eeprom.c │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.smc91111_eeprom │ │ │ │ │ ├── atmel_df_pow2.c │ │ │ │ │ ├── eepro100_eeprom.c │ │ │ │ │ ├── hello_world.c │ │ │ │ │ ├── interrupt.c │ │ │ │ │ ├── mem_to_mem_idma2intr.c │ │ │ │ │ ├── mips.lds │ │ │ │ │ ├── nds32.lds │ │ │ │ │ ├── ppc_longjmp.S │ │ │ │ │ ├── ppc_setjmp.S │ │ │ │ │ ├── sched.c │ │ │ │ │ ├── smc91111_eeprom.c │ │ │ │ │ ├── smc911x_eeprom.c │ │ │ │ │ ├── sparc.lds │ │ │ │ │ ├── stubs.c │ │ │ │ │ ├── test_burst.c │ │ │ │ │ ├── test_burst.h │ │ │ │ │ ├── test_burst_lib.S │ │ │ │ │ ├── timer.c │ │ │ │ │ └── x86-testapp.c │ │ │ │ ├── fs │ │ │ │ ├── Makefile │ │ │ │ ├── cramfs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cramfs.c │ │ │ │ │ └── uncompress.c │ │ │ │ ├── ext2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dev.c │ │ │ │ │ └── ext2fs.c │ │ │ │ ├── fat │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fat.c │ │ │ │ │ ├── fat_write.c │ │ │ │ │ └── file.c │ │ │ │ ├── fdos │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dev.c │ │ │ │ │ ├── dos.h │ │ │ │ │ ├── fat.c │ │ │ │ │ ├── fdos.c │ │ │ │ │ ├── fdos.h │ │ │ │ │ ├── fs.c │ │ │ │ │ ├── subdir.c │ │ │ │ │ └── vfat.c │ │ │ │ ├── jffs2 │ │ │ │ │ ├── LICENCE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── compr_lzo.c │ │ │ │ │ ├── compr_rtime.c │ │ │ │ │ ├── compr_rubin.c │ │ │ │ │ ├── compr_zlib.c │ │ │ │ │ ├── jffs2_1pass.c │ │ │ │ │ ├── jffs2_nand_1pass.c │ │ │ │ │ ├── jffs2_nand_private.h │ │ │ │ │ ├── jffs2_private.h │ │ │ │ │ ├── mini_inflate.c │ │ │ │ │ └── summary.h │ │ │ │ ├── reiserfs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dev.c │ │ │ │ │ ├── mode_string.c │ │ │ │ │ ├── reiserfs.c │ │ │ │ │ └── reiserfs_private.h │ │ │ │ ├── ubifs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── budget.c │ │ │ │ │ ├── crc16.c │ │ │ │ │ ├── crc16.h │ │ │ │ │ ├── debug.c │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── io.c │ │ │ │ │ ├── key.h │ │ │ │ │ ├── log.c │ │ │ │ │ ├── lprops.c │ │ │ │ │ ├── lpt.c │ │ │ │ │ ├── lpt_commit.c │ │ │ │ │ ├── master.c │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── orphan.c │ │ │ │ │ ├── recovery.c │ │ │ │ │ ├── replay.c │ │ │ │ │ ├── sb.c │ │ │ │ │ ├── scan.c │ │ │ │ │ ├── super.c │ │ │ │ │ ├── tnc.c │ │ │ │ │ ├── tnc_misc.c │ │ │ │ │ ├── ubifs-media.h │ │ │ │ │ ├── ubifs.c │ │ │ │ │ └── ubifs.h │ │ │ │ └── yaffs2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README-linux │ │ │ │ │ ├── devextras.h │ │ │ │ │ ├── yaffs_checkptrw.c │ │ │ │ │ ├── yaffs_checkptrw.h │ │ │ │ │ ├── yaffs_ecc.c │ │ │ │ │ ├── yaffs_ecc.h │ │ │ │ │ ├── yaffs_flashif.h │ │ │ │ │ ├── yaffs_guts.c │ │ │ │ │ ├── yaffs_guts.h │ │ │ │ │ ├── yaffs_malloc.h │ │ │ │ │ ├── yaffs_mtdif.c │ │ │ │ │ ├── yaffs_mtdif.h │ │ │ │ │ ├── yaffs_mtdif2.c │ │ │ │ │ ├── yaffs_mtdif2.h │ │ │ │ │ ├── yaffs_nand.c │ │ │ │ │ ├── yaffs_nand.h │ │ │ │ │ ├── yaffs_nandemul2k.h │ │ │ │ │ ├── yaffs_packedtags1.c │ │ │ │ │ ├── yaffs_packedtags1.h │ │ │ │ │ ├── yaffs_packedtags2.c │ │ │ │ │ ├── yaffs_packedtags2.h │ │ │ │ │ ├── yaffs_qsort.c │ │ │ │ │ ├── yaffs_qsort.h │ │ │ │ │ ├── yaffs_ramdisk.h │ │ │ │ │ ├── yaffs_tagscompat.c │ │ │ │ │ ├── yaffs_tagscompat.h │ │ │ │ │ ├── yaffs_tagsvalidity.c │ │ │ │ │ ├── yaffs_tagsvalidity.h │ │ │ │ │ ├── yaffscfg.c │ │ │ │ │ ├── yaffscfg.h │ │ │ │ │ ├── yaffsfs.c │ │ │ │ │ ├── yaffsfs.h │ │ │ │ │ ├── yaffsinterface.h │ │ │ │ │ ├── ydirectenv.h │ │ │ │ │ └── yportenv.h │ │ │ │ ├── httpd │ │ │ │ ├── Makefile │ │ │ │ ├── fs.c │ │ │ │ ├── fs.h │ │ │ │ ├── fsdata.h │ │ │ │ ├── httpd.c │ │ │ │ ├── httpd.h │ │ │ │ ├── main.c │ │ │ │ ├── tapdev.c │ │ │ │ ├── tapdev.h │ │ │ │ ├── uip.c │ │ │ │ ├── uip.h │ │ │ │ ├── uip_arch.c │ │ │ │ ├── uip_arch.h │ │ │ │ ├── uip_arp.c │ │ │ │ ├── uip_arp.h │ │ │ │ ├── uipopt.h │ │ │ │ └── vendors │ │ │ │ │ ├── general │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── art.html │ │ │ │ │ ├── fail.html │ │ │ │ │ ├── flashing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── style.css │ │ │ │ │ └── uboot.html │ │ │ │ │ ├── makefsdatac │ │ │ │ │ ├── oem │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── fail.html │ │ │ │ │ ├── flashing.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ │ ├── teltonika │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── fail.html │ │ │ │ │ ├── flashing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── style.css │ │ │ │ │ └── tlt_networks_logo.svg │ │ │ │ │ └── yuicompressor-2.4.8.jar │ │ │ │ ├── include │ │ │ │ ├── .gitignore │ │ │ │ ├── 74xx_7xx.h │ │ │ │ ├── ACEX1K.h │ │ │ │ ├── MCD_dma.h │ │ │ │ ├── MCD_progCheck.h │ │ │ │ ├── MCD_tasksInit.h │ │ │ │ ├── SA-1100.h │ │ │ │ ├── _exports.h │ │ │ │ ├── addr_map.h │ │ │ │ ├── aes.h │ │ │ │ ├── ahci.h │ │ │ │ ├── ali512x.h │ │ │ │ ├── altera.h │ │ │ │ ├── amba_clcd.h │ │ │ │ ├── ambapp.h │ │ │ │ ├── andestech │ │ │ │ │ └── andes_pcu.h │ │ │ │ ├── api_public.h │ │ │ │ ├── arm925t.h │ │ │ │ ├── armcoremodule.h │ │ │ │ ├── asm-generic │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── signal.h │ │ │ │ │ └── unaligned.h │ │ │ │ ├── asm-offsets.h │ │ │ │ ├── at45.h │ │ │ │ ├── at91rm9200_i2c.h │ │ │ │ ├── at91rm9200_net.h │ │ │ │ ├── ata.h │ │ │ │ ├── atmel_hlcdc.h │ │ │ │ ├── atmel_lcdc.h │ │ │ │ ├── atmel_mci.h │ │ │ │ ├── bcd.h │ │ │ │ ├── bcm5221.h │ │ │ │ ├── bedbug │ │ │ │ │ ├── bedbug.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── regs.h │ │ │ │ │ ├── tables.h │ │ │ │ │ └── type.h │ │ │ │ ├── bmp_layout.h │ │ │ │ ├── bootstage.h │ │ │ │ ├── bus_vcxk.h │ │ │ │ ├── bzlib.h │ │ │ │ ├── circbuf.h │ │ │ │ ├── clps7111.h │ │ │ │ ├── cmd_spl.h │ │ │ │ ├── command.h │ │ │ │ ├── common.h │ │ │ │ ├── commproc.h │ │ │ │ ├── compiler.h │ │ │ │ ├── config_cmd_all.h │ │ │ │ ├── config_cmd_default.h │ │ │ │ ├── config_cmd_defaults.h │ │ │ │ ├── config_defaults.h │ │ │ │ ├── config_fallbacks.h │ │ │ │ ├── config_phylib_all_drivers.h │ │ │ │ ├── configs │ │ │ │ │ ├── A3000.h │ │ │ │ │ ├── ADCIOP.h │ │ │ │ │ ├── ADS860.h │ │ │ │ │ ├── AMX860.h │ │ │ │ │ ├── AP1000.h │ │ │ │ │ ├── APC405.h │ │ │ │ │ ├── AR405.h │ │ │ │ │ ├── ASH405.h │ │ │ │ │ ├── Adder.h │ │ │ │ │ ├── AdderUSB.h │ │ │ │ │ ├── Alaska8220.h │ │ │ │ │ ├── BC3450.h │ │ │ │ │ ├── BMW.h │ │ │ │ │ ├── BSC9131RDB.h │ │ │ │ │ ├── CANBT.h │ │ │ │ │ ├── CATcenter.h │ │ │ │ │ ├── CMS700.h │ │ │ │ │ ├── CPC45.h │ │ │ │ │ ├── CPCI2DP.h │ │ │ │ │ ├── CPCI405.h │ │ │ │ │ ├── CPCI4052.h │ │ │ │ │ ├── CPCI405AB.h │ │ │ │ │ ├── CPCI405DT.h │ │ │ │ │ ├── CPCI750.h │ │ │ │ │ ├── CPCIISER4.h │ │ │ │ │ ├── CPU86.h │ │ │ │ │ ├── CPU87.h │ │ │ │ │ ├── CRAYL1.h │ │ │ │ │ ├── CU824.h │ │ │ │ │ ├── DASA_SIM.h │ │ │ │ │ ├── DB64360.h │ │ │ │ │ ├── DB64460.h │ │ │ │ │ ├── DP405.h │ │ │ │ │ ├── DU405.h │ │ │ │ │ ├── DU440.h │ │ │ │ │ ├── EB+MCF-EV123.h │ │ │ │ │ ├── ELPPC.h │ │ │ │ │ ├── ELPT860.h │ │ │ │ │ ├── EP88x.h │ │ │ │ │ ├── ESTEEM192E.h │ │ │ │ │ ├── ETX094.h │ │ │ │ │ ├── EVB64260.h │ │ │ │ │ ├── EXBITGEN.h │ │ │ │ │ ├── FADS823.h │ │ │ │ │ ├── FADS850SAR.h │ │ │ │ │ ├── FADS860T.h │ │ │ │ │ ├── FLAGADM.h │ │ │ │ │ ├── FPS850L.h │ │ │ │ │ ├── FPS860L.h │ │ │ │ │ ├── G2000.h │ │ │ │ │ ├── GEN860T.h │ │ │ │ │ ├── GENIETV.h │ │ │ │ │ ├── HH405.h │ │ │ │ │ ├── HIDDEN_DRAGON.h │ │ │ │ │ ├── HUB405.h │ │ │ │ │ ├── HWW1U1A.h │ │ │ │ │ ├── IAD210.h │ │ │ │ │ ├── ICU862.h │ │ │ │ │ ├── IDS8247.h │ │ │ │ │ ├── IP860.h │ │ │ │ │ ├── IPHASE4539.h │ │ │ │ │ ├── ISPAN.h │ │ │ │ │ ├── IVML24.h │ │ │ │ │ ├── IVMS8.h │ │ │ │ │ ├── IceCube.h │ │ │ │ │ ├── JSE.h │ │ │ │ │ ├── KAREF.h │ │ │ │ │ ├── KUP4K.h │ │ │ │ │ ├── KUP4X.h │ │ │ │ │ ├── LANTEC.h │ │ │ │ │ ├── M5208EVBE.h │ │ │ │ │ ├── M52277EVB.h │ │ │ │ │ ├── M5235EVB.h │ │ │ │ │ ├── M5249EVB.h │ │ │ │ │ ├── M5253DEMO.h │ │ │ │ │ ├── M5253EVBE.h │ │ │ │ │ ├── M5271EVB.h │ │ │ │ │ ├── M5272C3.h │ │ │ │ │ ├── M5275EVB.h │ │ │ │ │ ├── M5282EVB.h │ │ │ │ │ ├── M53017EVB.h │ │ │ │ │ ├── M5329EVB.h │ │ │ │ │ ├── M5373EVB.h │ │ │ │ │ ├── M54451EVB.h │ │ │ │ │ ├── M54455EVB.h │ │ │ │ │ ├── M5475EVB.h │ │ │ │ │ ├── M5485EVB.h │ │ │ │ │ ├── MBX.h │ │ │ │ │ ├── MBX860T.h │ │ │ │ │ ├── MERGERBOX.h │ │ │ │ │ ├── METROBOX.h │ │ │ │ │ ├── MHPC.h │ │ │ │ │ ├── MIP405.h │ │ │ │ │ ├── ML2.h │ │ │ │ │ ├── MOUSSE.h │ │ │ │ │ ├── MPC8260ADS.h │ │ │ │ │ ├── MPC8266ADS.h │ │ │ │ │ ├── MPC8308RDB.h │ │ │ │ │ ├── MPC8313ERDB.h │ │ │ │ │ ├── MPC8315ERDB.h │ │ │ │ │ ├── MPC8323ERDB.h │ │ │ │ │ ├── MPC832XEMDS.h │ │ │ │ │ ├── MPC8349EMDS.h │ │ │ │ │ ├── MPC8349ITX.h │ │ │ │ │ ├── MPC8360EMDS.h │ │ │ │ │ ├── MPC8360ERDK.h │ │ │ │ │ ├── MPC837XEMDS.h │ │ │ │ │ ├── MPC837XERDB.h │ │ │ │ │ ├── MPC8536DS.h │ │ │ │ │ ├── MPC8540ADS.h │ │ │ │ │ ├── MPC8541CDS.h │ │ │ │ │ ├── MPC8544DS.h │ │ │ │ │ ├── MPC8548CDS.h │ │ │ │ │ ├── MPC8555CDS.h │ │ │ │ │ ├── MPC8560ADS.h │ │ │ │ │ ├── MPC8568MDS.h │ │ │ │ │ ├── MPC8569MDS.h │ │ │ │ │ ├── MPC8572DS.h │ │ │ │ │ ├── MPC8610HPCD.h │ │ │ │ │ ├── MPC8641HPCN.h │ │ │ │ │ ├── MPC86xADS.h │ │ │ │ │ ├── MPC885ADS.h │ │ │ │ │ ├── MUSENKI.h │ │ │ │ │ ├── MVBC_P.h │ │ │ │ │ ├── MVBLM7.h │ │ │ │ │ ├── MVBLUE.h │ │ │ │ │ ├── MVS1.h │ │ │ │ │ ├── MVSMR.h │ │ │ │ │ ├── MigoR.h │ │ │ │ │ ├── NETPHONE.h │ │ │ │ │ ├── NETTA.h │ │ │ │ │ ├── NETTA2.h │ │ │ │ │ ├── NETVIA.h │ │ │ │ │ ├── NSCU.h │ │ │ │ │ ├── NX823.h │ │ │ │ │ ├── OCRTC.h │ │ │ │ │ ├── ORSG.h │ │ │ │ │ ├── P1010RDB.h │ │ │ │ │ ├── P1022DS.h │ │ │ │ │ ├── P1023RDS.h │ │ │ │ │ ├── P1_P2_RDB.h │ │ │ │ │ ├── P2020COME.h │ │ │ │ │ ├── P2020DS.h │ │ │ │ │ ├── P2041RDB.h │ │ │ │ │ ├── P3041DS.h │ │ │ │ │ ├── P3060QDS.h │ │ │ │ │ ├── P3G4.h │ │ │ │ │ ├── P4080DS.h │ │ │ │ │ ├── P5020DS.h │ │ │ │ │ ├── PATI.h │ │ │ │ │ ├── PCI405.h │ │ │ │ │ ├── PCI5441.h │ │ │ │ │ ├── PCIPPC2.h │ │ │ │ │ ├── PCIPPC6.h │ │ │ │ │ ├── PIP405.h │ │ │ │ │ ├── PK1C20.h │ │ │ │ │ ├── PLU405.h │ │ │ │ │ ├── PM520.h │ │ │ │ │ ├── PM826.h │ │ │ │ │ ├── PM828.h │ │ │ │ │ ├── PMC405.h │ │ │ │ │ ├── PMC405DE.h │ │ │ │ │ ├── PMC440.h │ │ │ │ │ ├── PN62.h │ │ │ │ │ ├── PPChameleonEVB.h │ │ │ │ │ ├── QS823.h │ │ │ │ │ ├── QS850.h │ │ │ │ │ ├── QS860T.h │ │ │ │ │ ├── R360MPI.h │ │ │ │ │ ├── RBC823.h │ │ │ │ │ ├── RPXClassic.h │ │ │ │ │ ├── RPXlite.h │ │ │ │ │ ├── RPXlite_DW.h │ │ │ │ │ ├── RPXsuper.h │ │ │ │ │ ├── RRvision.h │ │ │ │ │ ├── Rattler.h │ │ │ │ │ ├── SBC8540.h │ │ │ │ │ ├── SCM.h │ │ │ │ │ ├── SIMPC8313.h │ │ │ │ │ ├── SM850.h │ │ │ │ │ ├── SPD823TS.h │ │ │ │ │ ├── SX1.h │ │ │ │ │ ├── SXNI855T.h │ │ │ │ │ ├── Sandpoint8240.h │ │ │ │ │ ├── Sandpoint8245.h │ │ │ │ │ ├── TASREG.h │ │ │ │ │ ├── TB5200.h │ │ │ │ │ ├── TK885D.h │ │ │ │ │ ├── TOP5200.h │ │ │ │ │ ├── TOP860.h │ │ │ │ │ ├── TQM5200.h │ │ │ │ │ ├── TQM823L.h │ │ │ │ │ ├── TQM823M.h │ │ │ │ │ ├── TQM8260.h │ │ │ │ │ ├── TQM8272.h │ │ │ │ │ ├── TQM834x.h │ │ │ │ │ ├── TQM850L.h │ │ │ │ │ ├── TQM850M.h │ │ │ │ │ ├── TQM855L.h │ │ │ │ │ ├── TQM855M.h │ │ │ │ │ ├── TQM85xx.h │ │ │ │ │ ├── TQM860L.h │ │ │ │ │ ├── TQM860M.h │ │ │ │ │ ├── TQM862L.h │ │ │ │ │ ├── TQM862M.h │ │ │ │ │ ├── TQM866M.h │ │ │ │ │ ├── TQM885D.h │ │ │ │ │ ├── Total5200.h │ │ │ │ │ ├── VCMA9.h │ │ │ │ │ ├── VOH405.h │ │ │ │ │ ├── VOM405.h │ │ │ │ │ ├── VoVPN-GW.h │ │ │ │ │ ├── W7OLMC.h │ │ │ │ │ ├── W7OLMG.h │ │ │ │ │ ├── WUH405.h │ │ │ │ │ ├── Yukon8220.h │ │ │ │ │ ├── ZPC1900.h │ │ │ │ │ ├── ZUMA.h │ │ │ │ │ ├── a320evb.h │ │ │ │ │ ├── a4m072.h │ │ │ │ │ ├── acadia.h │ │ │ │ │ ├── actux1.h │ │ │ │ │ ├── actux2.h │ │ │ │ │ ├── actux3.h │ │ │ │ │ ├── actux4.h │ │ │ │ │ ├── adp-ag101.h │ │ │ │ │ ├── adp-ag101p.h │ │ │ │ │ ├── adp-ag102.h │ │ │ │ │ ├── aev.h │ │ │ │ │ ├── afeb9260.h │ │ │ │ │ ├── alpr.h │ │ │ │ │ ├── am335x_evm.h │ │ │ │ │ ├── am3517_crane.h │ │ │ │ │ ├── am3517_evm.h │ │ │ │ │ ├── amcc-common.h │ │ │ │ │ ├── ap325rxa.h │ │ │ │ │ ├── ap_sh4a_4a.h │ │ │ │ │ ├── apollon.h │ │ │ │ │ ├── aria.h │ │ │ │ │ ├── aspenite.h │ │ │ │ │ ├── astro_mcf5373l.h │ │ │ │ │ ├── at91rm9200ek.h │ │ │ │ │ ├── at91sam9260ek.h │ │ │ │ │ ├── at91sam9261ek.h │ │ │ │ │ ├── at91sam9263ek.h │ │ │ │ │ ├── at91sam9m10g45ek.h │ │ │ │ │ ├── at91sam9rlek.h │ │ │ │ │ ├── atc.h │ │ │ │ │ ├── atngw100.h │ │ │ │ │ ├── atstk1002.h │ │ │ │ │ ├── atstk1003.h │ │ │ │ │ ├── atstk1004.h │ │ │ │ │ ├── atstk1006.h │ │ │ │ │ ├── balloon3.h │ │ │ │ │ ├── bamboo.h │ │ │ │ │ ├── bct-brettl2.h │ │ │ │ │ ├── bf506f-ezkit.h │ │ │ │ │ ├── bf518f-ezbrd.h │ │ │ │ │ ├── bf525-ucr2.h │ │ │ │ │ ├── bf526-ezbrd.h │ │ │ │ │ ├── bf527-ad7160-eval.h │ │ │ │ │ ├── bf527-ezkit.h │ │ │ │ │ ├── bf527-sdp.h │ │ │ │ │ ├── bf533-ezkit.h │ │ │ │ │ ├── bf533-stamp.h │ │ │ │ │ ├── bf537-minotaur.h │ │ │ │ │ ├── bf537-pnav.h │ │ │ │ │ ├── bf537-srv1.h │ │ │ │ │ ├── bf537-stamp.h │ │ │ │ │ ├── bf538f-ezkit.h │ │ │ │ │ ├── bf548-ezkit.h │ │ │ │ │ ├── bf561-acvilon.h │ │ │ │ │ ├── bf561-ezkit.h │ │ │ │ │ ├── bfin_adi_common.h │ │ │ │ │ ├── blackstamp.h │ │ │ │ │ ├── blackvme.h │ │ │ │ │ ├── bluestone.h │ │ │ │ │ ├── br4.h │ │ │ │ │ ├── bubinga.h │ │ │ │ │ ├── c2mon.h │ │ │ │ │ ├── ca9x4_ct_vxp.h │ │ │ │ │ ├── calimain.h │ │ │ │ │ ├── cam_enc_4xx.h │ │ │ │ │ ├── canmb.h │ │ │ │ │ ├── canyonlands.h │ │ │ │ │ ├── charon.h │ │ │ │ │ ├── cm-bf527.h │ │ │ │ │ ├── cm-bf533.h │ │ │ │ │ ├── cm-bf537e.h │ │ │ │ │ ├── cm-bf537u.h │ │ │ │ │ ├── cm-bf548.h │ │ │ │ │ ├── cm-bf561.h │ │ │ │ │ ├── cm4008.h │ │ │ │ │ ├── cm41xx.h │ │ │ │ │ ├── cm5200.h │ │ │ │ │ ├── cm_t35.h │ │ │ │ │ ├── cmi_mpc5xx.h │ │ │ │ │ ├── cobra5272.h │ │ │ │ │ ├── cogent_common.h │ │ │ │ │ ├── cogent_mpc8260.h │ │ │ │ │ ├── cogent_mpc8xx.h │ │ │ │ │ ├── colibri_pxa270.h │ │ │ │ │ ├── coreboot.h │ │ │ │ │ ├── corenet_ds.h │ │ │ │ │ ├── cpci5200.h │ │ │ │ │ ├── cpu9260.h │ │ │ │ │ ├── cpuat91.h │ │ │ │ │ ├── csb272.h │ │ │ │ │ ├── csb472.h │ │ │ │ │ ├── da830evm.h │ │ │ │ │ ├── da850evm.h │ │ │ │ │ ├── davinci_dm355evm.h │ │ │ │ │ ├── davinci_dm355leopard.h │ │ │ │ │ ├── davinci_dm365evm.h │ │ │ │ │ ├── davinci_dm6467evm.h │ │ │ │ │ ├── davinci_dvevm.h │ │ │ │ │ ├── davinci_schmoogie.h │ │ │ │ │ ├── davinci_sffsdr.h │ │ │ │ │ ├── davinci_sonata.h │ │ │ │ │ ├── dbau1x00.h │ │ │ │ │ ├── debris.h │ │ │ │ │ ├── devkit3250.h │ │ │ │ │ ├── devkit8000.h │ │ │ │ │ ├── dig297.h │ │ │ │ │ ├── digsy_mtc.h │ │ │ │ │ ├── dkb.h │ │ │ │ │ ├── dlvision-10g.h │ │ │ │ │ ├── dlvision.h │ │ │ │ │ ├── dnp5370.h │ │ │ │ │ ├── dns325.h │ │ │ │ │ ├── dockstar.h │ │ │ │ │ ├── dreamplug.h │ │ │ │ │ ├── dvlhost.h │ │ │ │ │ ├── eNET.h │ │ │ │ │ ├── eXalion.h │ │ │ │ │ ├── ea20.h │ │ │ │ │ ├── eb_cpux9k2.h │ │ │ │ │ ├── ebony.h │ │ │ │ │ ├── ecovec.h │ │ │ │ │ ├── edminiv2.h │ │ │ │ │ ├── efikamx.h │ │ │ │ │ ├── enbw_cmc.h │ │ │ │ │ ├── ep8248.h │ │ │ │ │ ├── ep8260.h │ │ │ │ │ ├── ep82xxm.h │ │ │ │ │ ├── espt.h │ │ │ │ │ ├── ethernut5.h │ │ │ │ │ ├── favr-32-ezkit.h │ │ │ │ │ ├── flea3.h │ │ │ │ │ ├── fx12mm.h │ │ │ │ │ ├── galaxy5200.h │ │ │ │ │ ├── gdppc440etx.h │ │ │ │ │ ├── gplugd.h │ │ │ │ │ ├── gr_cpci_ax2000.h │ │ │ │ │ ├── gr_ep2s60.h │ │ │ │ │ ├── gr_xc3s_1500.h │ │ │ │ │ ├── grasshopper.h │ │ │ │ │ ├── grsim.h │ │ │ │ │ ├── grsim_leon2.h │ │ │ │ │ ├── gth2.h │ │ │ │ │ ├── guruplug.h │ │ │ │ │ ├── gw8260.h │ │ │ │ │ ├── h2_p2_dbg_board.h │ │ │ │ │ ├── hammerhead.h │ │ │ │ │ ├── harmony.h │ │ │ │ │ ├── hawkboard.h │ │ │ │ │ ├── hermes.h │ │ │ │ │ ├── highbank.h │ │ │ │ │ ├── hmi1001.h │ │ │ │ │ ├── hymod.h │ │ │ │ │ ├── ib62x0.h │ │ │ │ │ ├── ibf-dsp561.h │ │ │ │ │ ├── icon.h │ │ │ │ │ ├── idmr.h │ │ │ │ │ ├── igep00x0.h │ │ │ │ │ ├── ima3-mx53.h │ │ │ │ │ ├── imx27lite-common.h │ │ │ │ │ ├── imx27lite.h │ │ │ │ │ ├── imx31_litekit.h │ │ │ │ │ ├── imx31_phycore.h │ │ │ │ │ ├── incaip.h │ │ │ │ │ ├── inka4x0.h │ │ │ │ │ ├── integratorap.h │ │ │ │ │ ├── integratorcp.h │ │ │ │ │ ├── intip.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── io64.h │ │ │ │ │ ├── iocon.h │ │ │ │ │ ├── ip04.h │ │ │ │ │ ├── ipek01.h │ │ │ │ │ ├── ipq40xx_cdp.h │ │ │ │ │ ├── ipq806x_cdp.h │ │ │ │ │ ├── jadecpu.h │ │ │ │ │ ├── jornada.h │ │ │ │ │ ├── jupiter.h │ │ │ │ │ ├── katmai.h │ │ │ │ │ ├── kilauea.h │ │ │ │ │ ├── km │ │ │ │ │ │ ├── keymile-common.h │ │ │ │ │ │ ├── km-powerpc.h │ │ │ │ │ │ ├── km82xx-common.h │ │ │ │ │ │ ├── km8321-common.h │ │ │ │ │ │ ├── km83xx-common.h │ │ │ │ │ │ └── km_arm.h │ │ │ │ │ ├── km8360.h │ │ │ │ │ ├── km_kirkwood.h │ │ │ │ │ ├── korat.h │ │ │ │ │ ├── kvme080.h │ │ │ │ │ ├── lacie_kw.h │ │ │ │ │ ├── linkstation.h │ │ │ │ │ ├── lsxl.h │ │ │ │ │ ├── luan.h │ │ │ │ │ ├── lubbock.h │ │ │ │ │ ├── lwmon.h │ │ │ │ │ ├── lwmon5.h │ │ │ │ │ ├── m28evk.h │ │ │ │ │ ├── magnesium.h │ │ │ │ │ ├── makalu.h │ │ │ │ │ ├── manroland │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ └── mpc5200-common.h │ │ │ │ │ ├── mcc200.h │ │ │ │ │ ├── mcx.h │ │ │ │ │ ├── mecp5123.h │ │ │ │ │ ├── mecp5200.h │ │ │ │ │ ├── medcom.h │ │ │ │ │ ├── meesc.h │ │ │ │ │ ├── mgcoge.h │ │ │ │ │ ├── mgcoge3ne.h │ │ │ │ │ ├── microblaze-generic.h │ │ │ │ │ ├── mimc200.h │ │ │ │ │ ├── ml507.h │ │ │ │ │ ├── motionpro.h │ │ │ │ │ ├── mpc5121-common.h │ │ │ │ │ ├── mpc5121ads.h │ │ │ │ │ ├── mpc7448hpc2.h │ │ │ │ │ ├── mpc8308_p1m.h │ │ │ │ │ ├── mpq101.h │ │ │ │ │ ├── mpr2.h │ │ │ │ │ ├── ms7720se.h │ │ │ │ │ ├── ms7722se.h │ │ │ │ │ ├── ms7750se.h │ │ │ │ │ ├── mt_ventoux.h │ │ │ │ │ ├── muas3001.h │ │ │ │ │ ├── mucmc52.h │ │ │ │ │ ├── munices.h │ │ │ │ │ ├── mv-common.h │ │ │ │ │ ├── mv88f6281gtw_ge.h │ │ │ │ │ ├── mx1ads.h │ │ │ │ │ ├── mx25pdk.h │ │ │ │ │ ├── mx28evk.h │ │ │ │ │ ├── mx31ads.h │ │ │ │ │ ├── mx31pdk.h │ │ │ │ │ ├── mx35pdk.h │ │ │ │ │ ├── mx51evk.h │ │ │ │ │ ├── mx53ard.h │ │ │ │ │ ├── mx53evk.h │ │ │ │ │ ├── mx53loco.h │ │ │ │ │ ├── mx53smd.h │ │ │ │ │ ├── mx6qarm2.h │ │ │ │ │ ├── mx6qsabrelite.h │ │ │ │ │ ├── neo.h │ │ │ │ │ ├── nhk8815.h │ │ │ │ │ ├── nios2-generic.h │ │ │ │ │ ├── ns9750dev.h │ │ │ │ │ ├── o2dnt.h │ │ │ │ │ ├── ocotea.h │ │ │ │ │ ├── omap1510.h │ │ │ │ │ ├── omap1510inn.h │ │ │ │ │ ├── omap2420h4.h │ │ │ │ │ ├── omap3_beagle.h │ │ │ │ │ ├── omap3_evm.h │ │ │ │ │ ├── omap3_evm_common.h │ │ │ │ │ ├── omap3_evm_quick_mmc.h │ │ │ │ │ ├── omap3_evm_quick_nand.h │ │ │ │ │ ├── omap3_logic.h │ │ │ │ │ ├── omap3_mvblx.h │ │ │ │ │ ├── omap3_overo.h │ │ │ │ │ ├── omap3_pandora.h │ │ │ │ │ ├── omap3_sdp3430.h │ │ │ │ │ ├── omap3_zoom1.h │ │ │ │ │ ├── omap3_zoom2.h │ │ │ │ │ ├── omap4_common.h │ │ │ │ │ ├── omap4_panda.h │ │ │ │ │ ├── omap4_sdp4430.h │ │ │ │ │ ├── omap5912osk.h │ │ │ │ │ ├── omap5_evm.h │ │ │ │ │ ├── omap730.h │ │ │ │ │ ├── omap730p2.h │ │ │ │ │ ├── openrd.h │ │ │ │ │ ├── openrisc-generic.h │ │ │ │ │ ├── origen.h │ │ │ │ │ ├── otc570.h │ │ │ │ │ ├── p1_p2_rdb_pc.h │ │ │ │ │ ├── p3mx.h │ │ │ │ │ ├── p3p440.h │ │ │ │ │ ├── palmld.h │ │ │ │ │ ├── palmtc.h │ │ │ │ │ ├── paz00.h │ │ │ │ │ ├── pb1x00.h │ │ │ │ │ ├── pcm030.h │ │ │ │ │ ├── pcs440ep.h │ │ │ │ │ ├── pdm360ng.h │ │ │ │ │ ├── pdnb3.h │ │ │ │ │ ├── pf5200.h │ │ │ │ │ ├── plutux.h │ │ │ │ │ ├── pm9261.h │ │ │ │ │ ├── pm9263.h │ │ │ │ │ ├── pm9g45.h │ │ │ │ │ ├── pogo_e02.h │ │ │ │ │ ├── ppmc7xx.h │ │ │ │ │ ├── ppmc8260.h │ │ │ │ │ ├── pr1.h │ │ │ │ │ ├── pxa-common.h │ │ │ │ │ ├── pxa255_idp.h │ │ │ │ │ ├── qemu-mips.h │ │ │ │ │ ├── qi_lb60.h │ │ │ │ │ ├── qong.h │ │ │ │ │ ├── quad100hd.h │ │ │ │ │ ├── quantum.h │ │ │ │ │ ├── r0p7734.h │ │ │ │ │ ├── r2dplus.h │ │ │ │ │ ├── r7780mp.h │ │ │ │ │ ├── rd6281a.h │ │ │ │ │ ├── redwood.h │ │ │ │ │ ├── rsdproto.h │ │ │ │ │ ├── rsk7203.h │ │ │ │ │ ├── rsk7264.h │ │ │ │ │ ├── rsk7269.h │ │ │ │ │ ├── s5p_goni.h │ │ │ │ │ ├── s5pc210_universal.h │ │ │ │ │ ├── sacsng.h │ │ │ │ │ ├── sandbox.h │ │ │ │ │ ├── sbc35_a9g20.h │ │ │ │ │ ├── sbc405.h │ │ │ │ │ ├── sbc8349.h │ │ │ │ │ ├── sbc8548.h │ │ │ │ │ ├── sbc8560.h │ │ │ │ │ ├── sbc8641d.h │ │ │ │ │ ├── sc3.h │ │ │ │ │ ├── scb9328.h │ │ │ │ │ ├── seaboard.h │ │ │ │ │ ├── sequoia.h │ │ │ │ │ ├── sh7757lcr.h │ │ │ │ │ ├── sh7763rdp.h │ │ │ │ │ ├── sh7785lcr.h │ │ │ │ │ ├── sheevaplug.h │ │ │ │ │ ├── shmin.h │ │ │ │ │ ├── smdk2410.h │ │ │ │ │ ├── smdk5250.h │ │ │ │ │ ├── smdk6400.h │ │ │ │ │ ├── smdkc100.h │ │ │ │ │ ├── smdkv310.h │ │ │ │ │ ├── snapper9260.h │ │ │ │ │ ├── socrates.h │ │ │ │ │ ├── sorcery.h │ │ │ │ │ ├── spc1920.h │ │ │ │ │ ├── spear-common.h │ │ │ │ │ ├── spear3xx_evb.h │ │ │ │ │ ├── spear6xx_evb.h │ │ │ │ │ ├── spieval.h │ │ │ │ │ ├── stxgp3.h │ │ │ │ │ ├── stxssa.h │ │ │ │ │ ├── stxxtc.h │ │ │ │ │ ├── suvd3.h │ │ │ │ │ ├── svm_sc8xx.h │ │ │ │ │ ├── t3corp.h │ │ │ │ │ ├── taihu.h │ │ │ │ │ ├── taishan.h │ │ │ │ │ ├── tam3517-common.h │ │ │ │ │ ├── tb0229.h │ │ │ │ │ ├── tcm-bf518.h │ │ │ │ │ ├── tcm-bf537.h │ │ │ │ │ ├── tec.h │ │ │ │ │ ├── tegra2-common-post.h │ │ │ │ │ ├── tegra2-common.h │ │ │ │ │ ├── tk71.h │ │ │ │ │ ├── tnetv107x_evm.h │ │ │ │ │ ├── tny_a9260.h │ │ │ │ │ ├── top9000.h │ │ │ │ │ ├── trats.h │ │ │ │ │ ├── tricorder.h │ │ │ │ │ ├── trimslice.h │ │ │ │ │ ├── trizepsiv.h │ │ │ │ │ ├── tt01.h │ │ │ │ │ ├── tuxx1.h │ │ │ │ │ ├── twister.h │ │ │ │ │ ├── tx25.h │ │ │ │ │ ├── u8500_href.h │ │ │ │ │ ├── uc100.h │ │ │ │ │ ├── uc101.h │ │ │ │ │ ├── utx8245.h │ │ │ │ │ ├── v37.h │ │ │ │ │ ├── v38b.h │ │ │ │ │ ├── v5fx30teval.h │ │ │ │ │ ├── vct.h │ │ │ │ │ ├── ve8313.h │ │ │ │ │ ├── ventana.h │ │ │ │ │ ├── versatile.h │ │ │ │ │ ├── virtlab2.h │ │ │ │ │ ├── vision2.h │ │ │ │ │ ├── vl_ma2sc.h │ │ │ │ │ ├── vme8349.h │ │ │ │ │ ├── vpac270.h │ │ │ │ │ ├── walnut.h │ │ │ │ │ ├── whistler.h │ │ │ │ │ ├── xaeniax.h │ │ │ │ │ ├── xilinx-ppc.h │ │ │ │ │ ├── xilinx-ppc405-generic.h │ │ │ │ │ ├── xilinx-ppc405.h │ │ │ │ │ ├── xilinx-ppc440-generic.h │ │ │ │ │ ├── xilinx-ppc440.h │ │ │ │ │ ├── xpedite1000.h │ │ │ │ │ ├── xpedite517x.h │ │ │ │ │ ├── xpedite520x.h │ │ │ │ │ ├── xpedite537x.h │ │ │ │ │ ├── xpedite550x.h │ │ │ │ │ ├── yosemite.h │ │ │ │ │ ├── yucca.h │ │ │ │ │ ├── zeus.h │ │ │ │ │ ├── zipitz2.h │ │ │ │ │ └── zmx25.h │ │ │ │ ├── cramfs │ │ │ │ │ ├── cramfs_fs.h │ │ │ │ │ └── cramfs_fs_sb.h │ │ │ │ ├── crc.h │ │ │ │ ├── da9030.h │ │ │ │ ├── dataflash.h │ │ │ │ ├── ddr_spd.h │ │ │ │ ├── dialog_pmic.h │ │ │ │ ├── div64.h │ │ │ │ ├── dm9000.h │ │ │ │ ├── dm9161.h │ │ │ │ ├── dp83848.h │ │ │ │ ├── ds1722.h │ │ │ │ ├── ds4510.h │ │ │ │ ├── dtt.h │ │ │ │ ├── e500.h │ │ │ │ ├── elf.h │ │ │ │ ├── environment.h │ │ │ │ ├── errno.h │ │ │ │ ├── exports.h │ │ │ │ ├── ext2fs.h │ │ │ │ ├── faraday │ │ │ │ │ ├── ftahbc020s.h │ │ │ │ │ ├── ftpmu010.h │ │ │ │ │ ├── ftsdc010.h │ │ │ │ │ ├── ftsdmc020.h │ │ │ │ │ ├── ftsdmc021.h │ │ │ │ │ ├── ftsmc020.h │ │ │ │ │ ├── fttmr010.h │ │ │ │ │ └── ftwdt010_wdt.h │ │ │ │ ├── fat.h │ │ │ │ ├── fdc.h │ │ │ │ ├── fdt.h │ │ │ │ ├── fdt_support.h │ │ │ │ ├── fdtdec.h │ │ │ │ ├── fis.h │ │ │ │ ├── flash.h │ │ │ │ ├── fm_eth.h │ │ │ │ ├── fpga.h │ │ │ │ ├── fsl_diu_fb.h │ │ │ │ ├── fsl_esdhc.h │ │ │ │ ├── fsl_mdio.h │ │ │ │ ├── fsl_nfc.h │ │ │ │ ├── fsl_pmic.h │ │ │ │ ├── fwtool.h │ │ │ │ ├── galileo │ │ │ │ │ ├── core.h │ │ │ │ │ ├── gt64260R.h │ │ │ │ │ ├── memory.h │ │ │ │ │ └── pci.h │ │ │ │ ├── gdsys_fpga.h │ │ │ │ ├── hush.h │ │ │ │ ├── hwconfig.h │ │ │ │ ├── i2c.h │ │ │ │ ├── i8042.h │ │ │ │ ├── ide.h │ │ │ │ ├── image.h │ │ │ │ ├── input.h │ │ │ │ ├── iomux.h │ │ │ │ ├── ioports.h │ │ │ │ ├── ipu_pixfmt.h │ │ │ │ ├── jffs2 │ │ │ │ │ ├── compr_rubin.h │ │ │ │ │ ├── jffs2.h │ │ │ │ │ ├── jffs2_1pass.h │ │ │ │ │ ├── load_kernel.h │ │ │ │ │ └── mini_inflate.h │ │ │ │ ├── key_matrix.h │ │ │ │ ├── keyboard.h │ │ │ │ ├── kgdb.h │ │ │ │ ├── ks8721.h │ │ │ │ ├── lattice.h │ │ │ │ ├── lcd.h │ │ │ │ ├── lcdvideo.h │ │ │ │ ├── led-display.h │ │ │ │ ├── lh7a400.h │ │ │ │ ├── lh7a404.h │ │ │ │ ├── lh7a40x.h │ │ │ │ ├── libata.h │ │ │ │ ├── libfdt.h │ │ │ │ ├── libfdt_env.h │ │ │ │ ├── libtizen.h │ │ │ │ ├── linux │ │ │ │ │ ├── apm_bios.h │ │ │ │ │ ├── bch.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── byteorder │ │ │ │ │ │ ├── big_endian.h │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ ├── little_endian.h │ │ │ │ │ │ └── swab.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── compiler-gcc.h │ │ │ │ │ ├── compiler-gcc11.h │ │ │ │ │ ├── compiler-gcc3.h │ │ │ │ │ ├── compiler-gcc4.h │ │ │ │ │ ├── compiler-gcc5.h │ │ │ │ │ ├── compiler-gcc7.h │ │ │ │ │ ├── compiler-gcc8.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── crc7.h │ │ │ │ │ ├── ctype.h │ │ │ │ │ ├── edd.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ethtool.h │ │ │ │ │ ├── fb.h │ │ │ │ │ ├── input.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ioport.h │ │ │ │ │ ├── kbuild.h │ │ │ │ │ ├── linkage.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── math64.h │ │ │ │ │ ├── mc146818rtc.h │ │ │ │ │ ├── mdio.h │ │ │ │ │ ├── mii.h │ │ │ │ │ ├── mtd │ │ │ │ │ │ ├── bbm.h │ │ │ │ │ │ ├── blktrans.h │ │ │ │ │ │ ├── concat.h │ │ │ │ │ │ ├── doc2000.h │ │ │ │ │ │ ├── fsl_upm.h │ │ │ │ │ │ ├── fsmc_nand.h │ │ │ │ │ │ ├── inftl-user.h │ │ │ │ │ │ ├── ipq_nand.h │ │ │ │ │ │ ├── jffs2-user.h │ │ │ │ │ │ ├── mtd-abi.h │ │ │ │ │ │ ├── mtd.h │ │ │ │ │ │ ├── nand.h │ │ │ │ │ │ ├── nand_bch.h │ │ │ │ │ │ ├── nand_ecc.h │ │ │ │ │ │ ├── ndfc.h │ │ │ │ │ │ ├── nftl-user.h │ │ │ │ │ │ ├── nftl.h │ │ │ │ │ │ ├── onenand.h │ │ │ │ │ │ ├── onenand_regs.h │ │ │ │ │ │ ├── partitions.h │ │ │ │ │ │ ├── samsung_onenand.h │ │ │ │ │ │ ├── st_smi.h │ │ │ │ │ │ └── ubi.h │ │ │ │ │ ├── netdevice.h │ │ │ │ │ ├── poison.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── rbtree.h │ │ │ │ │ ├── screen_info.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── stddef.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── unaligned │ │ │ │ │ │ ├── access_ok.h │ │ │ │ │ │ ├── be_byteshift.h │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ └── le_byteshift.h │ │ │ │ │ └── usb │ │ │ │ │ │ ├── cdc.h │ │ │ │ │ │ ├── ch9.h │ │ │ │ │ │ ├── composite.h │ │ │ │ │ │ ├── dwc3.h │ │ │ │ │ │ ├── gadget.h │ │ │ │ │ │ └── msm_usb30.h │ │ │ │ ├── linux_logo.h │ │ │ │ ├── lmb.h │ │ │ │ ├── logbuff.h │ │ │ │ ├── lpd7a400_cpld.h │ │ │ │ ├── lxt971a.h │ │ │ │ ├── lynxkdi.h │ │ │ │ ├── lzma │ │ │ │ │ ├── LzmaDec.h │ │ │ │ │ ├── LzmaTools.h │ │ │ │ │ └── LzmaTypes.h │ │ │ │ ├── malloc.h │ │ │ │ ├── max8997_pmic.h │ │ │ │ ├── max8998_pmic.h │ │ │ │ ├── mb862xx.h │ │ │ │ ├── mc13783.h │ │ │ │ ├── mc13892.h │ │ │ │ ├── mc9sdz60.h │ │ │ │ ├── menu.h │ │ │ │ ├── micrel.h │ │ │ │ ├── mii_phy.h │ │ │ │ ├── miiphy.h │ │ │ │ ├── mk48t59.h │ │ │ │ ├── mmc.h │ │ │ │ ├── mnf_info.h │ │ │ │ ├── mpc106.h │ │ │ │ ├── mpc5xx.h │ │ │ │ ├── mpc5xxx.h │ │ │ │ ├── mpc5xxx_sdma.h │ │ │ │ ├── mpc8220.h │ │ │ │ ├── mpc824x.h │ │ │ │ ├── mpc8260.h │ │ │ │ ├── mpc8260_irq.h │ │ │ │ ├── mpc83xx.h │ │ │ │ ├── mpc85xx.h │ │ │ │ ├── mpc86xx.h │ │ │ │ ├── mpc8xx.h │ │ │ │ ├── mpc8xx_irq.h │ │ │ │ ├── mtd │ │ │ │ │ ├── cfi_flash.h │ │ │ │ │ └── ubi-user.h │ │ │ │ ├── mtd_node.h │ │ │ │ ├── mvmfp.h │ │ │ │ ├── nand.h │ │ │ │ ├── net.h │ │ │ │ ├── netdev.h │ │ │ │ ├── nios2-epcs.h │ │ │ │ ├── nios2-io.h │ │ │ │ ├── nios2-yanu.h │ │ │ │ ├── nios2.h │ │ │ │ ├── nomadik.h │ │ │ │ ├── ns16550.h │ │ │ │ ├── ns87308.h │ │ │ │ ├── ns9750_bbus.h │ │ │ │ ├── ns9750_mem.h │ │ │ │ ├── ns9750_ser.h │ │ │ │ ├── ns9750_sys.h │ │ │ │ ├── onenand_uboot.h │ │ │ │ ├── os.h │ │ │ │ ├── part.h │ │ │ │ ├── pc_keyb.h │ │ │ │ ├── pca953x.h │ │ │ │ ├── pca9564.h │ │ │ │ ├── pca9698.h │ │ │ │ ├── pci.h │ │ │ │ ├── pci_ids.h │ │ │ │ ├── pcmcia.h │ │ │ │ ├── pcmcia │ │ │ │ │ ├── cirrus.h │ │ │ │ │ ├── i82365.h │ │ │ │ │ ├── ss.h │ │ │ │ │ ├── ti113x.h │ │ │ │ │ └── yenta.h │ │ │ │ ├── phy.h │ │ │ │ ├── pmic.h │ │ │ │ ├── post.h │ │ │ │ ├── ppc_asm.tmpl │ │ │ │ ├── ppc_defs.h │ │ │ │ ├── ps2mult.h │ │ │ │ ├── pwm.h │ │ │ │ ├── radeon.h │ │ │ │ ├── reiserfs.h │ │ │ │ ├── rtc.h │ │ │ │ ├── s6e63d6.h │ │ │ │ ├── s_record.h │ │ │ │ ├── sata.h │ │ │ │ ├── scsi.h │ │ │ │ ├── sdhci.h │ │ │ │ ├── search.h │ │ │ │ ├── sed13806.h │ │ │ │ ├── sed156x.h │ │ │ │ ├── serial.h │ │ │ │ ├── sha256.h │ │ │ │ ├── sja1000.h │ │ │ │ ├── sm501.h │ │ │ │ ├── smiLynxEM.h │ │ │ │ ├── spartan2.h │ │ │ │ ├── spartan3.h │ │ │ │ ├── spd.h │ │ │ │ ├── spd_sdram.h │ │ │ │ ├── spi.h │ │ │ │ ├── spi_flash.h │ │ │ │ ├── status_led.h │ │ │ │ ├── stdio_dev.h │ │ │ │ ├── stratixII.h │ │ │ │ ├── sym53c8xx.h │ │ │ │ ├── synopsys │ │ │ │ │ └── dwcddr21mctl.h │ │ │ │ ├── systemace.h │ │ │ │ ├── tegra-kbc.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── tpm.h │ │ │ │ ├── tps6586x.h │ │ │ │ ├── tsec.h │ │ │ │ ├── tsi108.h │ │ │ │ ├── tsi148.h │ │ │ │ ├── twl4030.h │ │ │ │ ├── twl6030.h │ │ │ │ ├── twl6035.h │ │ │ │ ├── tws.h │ │ │ │ ├── u-boot-sha1.h │ │ │ │ ├── u-boot │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── u-boot.lds.h │ │ │ │ │ └── zlib.h │ │ │ │ ├── ubi_uboot.h │ │ │ │ ├── universe.h │ │ │ │ ├── usb.h │ │ │ │ ├── usb │ │ │ │ │ ├── designware_udc.h │ │ │ │ │ ├── ehci-fsl.h │ │ │ │ │ ├── lin_gadget_compat.h │ │ │ │ │ ├── mpc8xx_udc.h │ │ │ │ │ ├── musb_udc.h │ │ │ │ │ ├── mv_udc.h │ │ │ │ │ ├── omap1510_udc.h │ │ │ │ │ ├── pxa27x_udc.h │ │ │ │ │ ├── s3c_udc.h │ │ │ │ │ └── ulpi.h │ │ │ │ ├── usb_cdc_acm.h │ │ │ │ ├── usb_defs.h │ │ │ │ ├── usb_ether.h │ │ │ │ ├── usbdescriptors.h │ │ │ │ ├── usbdevice.h │ │ │ │ ├── version.h │ │ │ │ ├── video.h │ │ │ │ ├── video_ad7176.h │ │ │ │ ├── video_ad7177.h │ │ │ │ ├── video_ad7179.h │ │ │ │ ├── video_easylogo.h │ │ │ │ ├── video_fb.h │ │ │ │ ├── video_font.h │ │ │ │ ├── video_font_data.h │ │ │ │ ├── video_logo.h │ │ │ │ ├── virtex2.h │ │ │ │ ├── vsc7385.h │ │ │ │ ├── vsprintf.h │ │ │ │ ├── vxworks.h │ │ │ │ ├── w83c553f.h │ │ │ │ ├── watchdog.h │ │ │ │ ├── xilinx.h │ │ │ │ └── xyzModem.h │ │ │ │ ├── lib │ │ │ │ ├── Makefile │ │ │ │ ├── addr_map.c │ │ │ │ ├── aes.c │ │ │ │ ├── asm-offsets.c │ │ │ │ ├── bch.c │ │ │ │ ├── bzlib.c │ │ │ │ ├── bzlib_crctable.c │ │ │ │ ├── bzlib_decompress.c │ │ │ │ ├── bzlib_huffman.c │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── bzlib_randtable.c │ │ │ │ ├── circbuf.c │ │ │ │ ├── crc16.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc7.c │ │ │ │ ├── ctype.c │ │ │ │ ├── display_options.c │ │ │ │ ├── div64.c │ │ │ │ ├── errno.c │ │ │ │ ├── fdtdec.c │ │ │ │ ├── fdtdec_test.c │ │ │ │ ├── fwtool.c │ │ │ │ ├── gunzip.c │ │ │ │ ├── hashtable.c │ │ │ │ ├── ldiv.c │ │ │ │ ├── libfdt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── fdt.c │ │ │ │ │ ├── fdt_ro.c │ │ │ │ │ ├── fdt_rw.c │ │ │ │ │ ├── fdt_strerror.c │ │ │ │ │ ├── fdt_sw.c │ │ │ │ │ ├── fdt_wip.c │ │ │ │ │ └── libfdt_internal.h │ │ │ │ ├── lmb.c │ │ │ │ ├── lzma │ │ │ │ │ ├── LzmaDec.c │ │ │ │ │ ├── LzmaDec.h │ │ │ │ │ ├── LzmaTools.c │ │ │ │ │ ├── LzmaTools.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── history.txt │ │ │ │ │ ├── import_lzmasdk.sh │ │ │ │ │ ├── license.txt │ │ │ │ │ └── lzma.txt │ │ │ │ ├── lzo │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lzo1x_decompress.c │ │ │ │ │ └── lzodefs.h │ │ │ │ ├── md5.c │ │ │ │ ├── mnf_info.c │ │ │ │ ├── net_utils.c │ │ │ │ ├── qsort.c │ │ │ │ ├── rand.c │ │ │ │ ├── rbtree.c │ │ │ │ ├── sha1.c │ │ │ │ ├── sha256.c │ │ │ │ ├── string.c │ │ │ │ ├── strmhz.c │ │ │ │ ├── time.c │ │ │ │ ├── tizen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── tizen.c │ │ │ │ │ ├── tizen_hd_logo.h │ │ │ │ │ └── tizen_hd_logo_data.h │ │ │ │ ├── uuid.c │ │ │ │ ├── vsprintf.c │ │ │ │ └── zlib │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── adler32.c │ │ │ │ │ ├── inffast.c │ │ │ │ │ ├── inffast.h │ │ │ │ │ ├── inffixed.h │ │ │ │ │ ├── inflate.c │ │ │ │ │ ├── inflate.h │ │ │ │ │ ├── inftrees.c │ │ │ │ │ ├── inftrees.h │ │ │ │ │ ├── zlib.c │ │ │ │ │ ├── zlib.h │ │ │ │ │ ├── zutil.c │ │ │ │ │ └── zutil.h │ │ │ │ ├── mkconfig │ │ │ │ ├── nand_spl │ │ │ │ ├── board │ │ │ │ │ ├── amcc │ │ │ │ │ │ ├── acadia │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── bamboo │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── sdram.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── canyonlands │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── ddr2_fixed.c │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── kilauea │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ └── sequoia │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── freescale │ │ │ │ │ │ ├── mpc8313erdb │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc8315erdb │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── mpc8536ds │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ │ ├── mpc8569mds │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ │ ├── mpc8572ds │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ │ ├── mx31pdk │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ │ ├── p1010rdb │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ │ ├── p1023rds │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ │ ├── p1_p2_rdb │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ │ └── p1_p2_rdb_pc │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── nand_boot.c │ │ │ │ │ ├── karo │ │ │ │ │ │ └── tx25 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ ├── samsung │ │ │ │ │ │ └── smdk6400 │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ └── u-boot.lds │ │ │ │ │ └── sheldon │ │ │ │ │ │ └── simpc8313 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── u-boot.lds │ │ │ │ ├── nand_boot.c │ │ │ │ ├── nand_boot_fsl_elbc.c │ │ │ │ ├── nand_boot_fsl_ifc.c │ │ │ │ └── nand_boot_fsl_nfc.c │ │ │ │ ├── net │ │ │ │ ├── Makefile │ │ │ │ ├── arp.c │ │ │ │ ├── arp.h │ │ │ │ ├── bootp.c │ │ │ │ ├── bootp.h │ │ │ │ ├── cdp.c │ │ │ │ ├── cdp.h │ │ │ │ ├── dns.c │ │ │ │ ├── dns.h │ │ │ │ ├── eth.c │ │ │ │ ├── httpd.c │ │ │ │ ├── httpd.h │ │ │ │ ├── link_local.c │ │ │ │ ├── link_local.h │ │ │ │ ├── net.c │ │ │ │ ├── net_rand.h │ │ │ │ ├── nfs.c │ │ │ │ ├── nfs.h │ │ │ │ ├── ping.c │ │ │ │ ├── ping.h │ │ │ │ ├── rarp.c │ │ │ │ ├── rarp.h │ │ │ │ ├── sntp.c │ │ │ │ ├── sntp.h │ │ │ │ ├── tftp.c │ │ │ │ └── tftp.h │ │ │ │ ├── onenand_ipl │ │ │ │ ├── board │ │ │ │ │ └── apollon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── apollon.c │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ └── u-boot.onenand.lds │ │ │ │ ├── onenand_boot.c │ │ │ │ ├── onenand_ipl.h │ │ │ │ └── onenand_read.c │ │ │ │ ├── post │ │ │ │ ├── Makefile │ │ │ │ ├── board │ │ │ │ │ ├── lwmon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── sysmon.c │ │ │ │ │ ├── lwmon5 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dsp.c │ │ │ │ │ │ ├── dspic.c │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ ├── gdc.c │ │ │ │ │ │ ├── sysmon.c │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ ├── netta │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── codec.c │ │ │ │ │ │ └── dsp.c │ │ │ │ │ └── pdm360ng │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── coproc_com.c │ │ │ │ ├── cpu │ │ │ │ │ ├── mpc83xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── ecc.c │ │ │ │ │ ├── mpc8xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── cache_8xx.S │ │ │ │ │ │ ├── ether.c │ │ │ │ │ │ ├── spr.c │ │ │ │ │ │ ├── uart.c │ │ │ │ │ │ ├── usb.c │ │ │ │ │ │ └── watchdog.c │ │ │ │ │ └── ppc4xx │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cache.c │ │ │ │ │ │ ├── cache_4xx.S │ │ │ │ │ │ ├── denali_ecc.c │ │ │ │ │ │ ├── ether.c │ │ │ │ │ │ ├── fpu.c │ │ │ │ │ │ ├── ocm.c │ │ │ │ │ │ ├── spr.c │ │ │ │ │ │ ├── uart.c │ │ │ │ │ │ └── watchdog.c │ │ │ │ ├── drivers │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── i2c.c │ │ │ │ │ ├── memory.c │ │ │ │ │ └── rtc.c │ │ │ │ ├── lib_powerpc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── andi.c │ │ │ │ │ ├── asm.S │ │ │ │ │ ├── b.c │ │ │ │ │ ├── cmp.c │ │ │ │ │ ├── cmpi.c │ │ │ │ │ ├── complex.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu_asm.h │ │ │ │ │ ├── cr.c │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── 20001122-1.c │ │ │ │ │ │ ├── 20010114-2.c │ │ │ │ │ │ ├── 20010226-1.c │ │ │ │ │ │ ├── 980619-1.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── acc1.c │ │ │ │ │ │ ├── compare-fp-1.c │ │ │ │ │ │ ├── darwin-ldouble.c │ │ │ │ │ │ ├── fpu.c │ │ │ │ │ │ └── mul-subnormal-single-1.c │ │ │ │ │ ├── load.c │ │ │ │ │ ├── multi.c │ │ │ │ │ ├── rlwimi.c │ │ │ │ │ ├── rlwinm.c │ │ │ │ │ ├── rlwnm.c │ │ │ │ │ ├── srawi.c │ │ │ │ │ ├── store.c │ │ │ │ │ ├── string.c │ │ │ │ │ ├── three.c │ │ │ │ │ ├── threei.c │ │ │ │ │ ├── threex.c │ │ │ │ │ ├── two.c │ │ │ │ │ └── twox.c │ │ │ │ ├── post.c │ │ │ │ ├── rules.mk │ │ │ │ └── tests.c │ │ │ │ ├── rules.mk │ │ │ │ ├── snapshot.commit │ │ │ │ ├── spl │ │ │ │ ├── .gitignore │ │ │ │ └── Makefile │ │ │ │ ├── test │ │ │ │ ├── Makefile │ │ │ │ ├── munit.c │ │ │ │ ├── munit.h │ │ │ │ └── nand_ut.c │ │ │ │ └── tools │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── aisimage.c │ │ │ │ ├── aisimage.h │ │ │ │ ├── bddb │ │ │ │ ├── README │ │ │ │ ├── badsubmit.php │ │ │ │ ├── bddb.css │ │ │ │ ├── brlog.php │ │ │ │ ├── browse.php │ │ │ │ ├── config.php │ │ │ │ ├── create_tables.sql │ │ │ │ ├── defs.php │ │ │ │ ├── dodelete.php │ │ │ │ ├── dodellog.php │ │ │ │ ├── doedit.php │ │ │ │ ├── doedlog.php │ │ │ │ ├── donew.php │ │ │ │ ├── donewlog.php │ │ │ │ ├── edit.php │ │ │ │ ├── edlog.php │ │ │ │ ├── execute.php │ │ │ │ ├── index.php │ │ │ │ ├── new.php │ │ │ │ └── newlog.php │ │ │ │ ├── bin2header.c │ │ │ │ ├── bmp_logo.c │ │ │ │ ├── checkpatch.pl │ │ │ │ ├── checkstack.pl │ │ │ │ ├── default_image.c │ │ │ │ ├── dumpimage.c │ │ │ │ ├── dumpimage.h │ │ │ │ ├── easylogo │ │ │ │ ├── Makefile │ │ │ │ ├── easylogo.c │ │ │ │ ├── linux_blackfin.tga │ │ │ │ ├── linux_logo.tga │ │ │ │ └── runme.sh │ │ │ │ ├── env │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── fw_env.c │ │ │ │ ├── fw_env.config │ │ │ │ ├── fw_env.h │ │ │ │ └── fw_env_main.c │ │ │ │ ├── envcrc.c │ │ │ │ ├── fdt_host.h │ │ │ │ ├── fit_image.c │ │ │ │ ├── gcc-version.sh │ │ │ │ ├── gdb │ │ │ │ ├── Makefile │ │ │ │ ├── error.c │ │ │ │ ├── error.h │ │ │ │ ├── gdbcont.c │ │ │ │ ├── gdbsend.c │ │ │ │ ├── remote.c │ │ │ │ ├── remote.h │ │ │ │ ├── serial.c │ │ │ │ └── serial.h │ │ │ │ ├── gen_eth_addr.c │ │ │ │ ├── getline.c │ │ │ │ ├── getline.h │ │ │ │ ├── imagetool.c │ │ │ │ ├── imagetool.h │ │ │ │ ├── img2brec.sh │ │ │ │ ├── img2srec.c │ │ │ │ ├── imls │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── imls.c │ │ │ │ ├── imximage.c │ │ │ │ ├── imximage.h │ │ │ │ ├── jtagconsole │ │ │ │ ├── kwbimage.c │ │ │ │ ├── kwbimage.h │ │ │ │ ├── kwboot.c │ │ │ │ ├── logos │ │ │ │ ├── atmel.bmp │ │ │ │ ├── denx.bmp │ │ │ │ ├── esd.bmp │ │ │ │ ├── freescale.bmp │ │ │ │ ├── intercontrol.bmp │ │ │ │ ├── linux_logo_ttcontrol.bmp │ │ │ │ ├── linux_logo_ttcontrol_palfin.bmp │ │ │ │ ├── ronetix.bmp │ │ │ │ └── syteco.bmp │ │ │ │ ├── mingw_support.c │ │ │ │ ├── mingw_support.h │ │ │ │ ├── mkenvimage.c │ │ │ │ ├── mkexynosspl.c │ │ │ │ ├── mkheader.py │ │ │ │ ├── mkimage.c │ │ │ │ ├── mkimage.h │ │ │ │ ├── mpc86x_clk.c │ │ │ │ ├── mxsboot.c │ │ │ │ ├── ncb.c │ │ │ │ ├── netconsole │ │ │ │ ├── omap │ │ │ │ └── clocks_get_m_n.c │ │ │ │ ├── omapimage.c │ │ │ │ ├── omapimage.h │ │ │ │ ├── os_support.c │ │ │ │ ├── os_support.h │ │ │ │ ├── pack.py │ │ │ │ ├── patman │ │ │ │ ├── .gitignore │ │ │ │ ├── README │ │ │ │ ├── checkpatch.py │ │ │ │ ├── command.py │ │ │ │ ├── commit.py │ │ │ │ ├── gitutil.py │ │ │ │ ├── patchstream.py │ │ │ │ ├── patman │ │ │ │ ├── patman.py │ │ │ │ ├── series.py │ │ │ │ ├── settings.py │ │ │ │ ├── terminal.py │ │ │ │ └── test.py │ │ │ │ ├── scripts │ │ │ │ ├── README │ │ │ │ ├── define2mk.sed │ │ │ │ ├── dot.kermrc │ │ │ │ ├── flash_param │ │ │ │ ├── make-asm-offsets │ │ │ │ ├── send_cmd │ │ │ │ └── send_image │ │ │ │ ├── setlocalversion │ │ │ │ ├── ublimage.c │ │ │ │ ├── ublimage.h │ │ │ │ ├── ubsha1.c │ │ │ │ ├── updater │ │ │ │ ├── Makefile │ │ │ │ ├── cmd_flash.c │ │ │ │ ├── ctype.c │ │ │ │ ├── dummy.c │ │ │ │ ├── flash.c │ │ │ │ ├── flash_hw.c │ │ │ │ ├── junk │ │ │ │ ├── ppcstring.S │ │ │ │ ├── string.c │ │ │ │ ├── update.c │ │ │ │ └── utils.c │ │ │ │ └── xway-swap-bytes.c │ │ └── uboot-mvebu │ │ │ └── Makefile │ ├── firmware │ │ └── linux-firmware │ │ │ └── netxen.mk │ ├── modems │ │ ├── Makefile │ │ └── src │ │ │ ├── README.md │ │ │ └── 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 │ │ │ ├── 05c6-9215 │ │ │ ├── 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 │ │ │ ├── 2c7c-0121 │ │ │ ├── 2c7c-0125 │ │ │ ├── 2c7c-0296 │ │ │ ├── 2c7c-0306 │ │ │ ├── 2c7c-0512 │ │ │ ├── 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 │ ├── network │ │ ├── config │ │ │ └── firewall │ │ │ │ └── patches │ │ │ │ └── fullconenat.patch │ │ ├── ipv6 │ │ │ └── 6in4 │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ └── 6in4.sh │ │ ├── services │ │ │ └── dnsmasq │ │ │ │ └── patches │ │ │ │ └── 999-remove-nftset-logs.patch │ │ └── utils │ │ │ └── wwan │ │ │ └── files │ │ │ └── data │ │ │ ├── 05c6-9215 │ │ │ ├── 2c7c-0121 │ │ │ ├── 2c7c-0296 │ │ │ ├── 2c7c-0306 │ │ │ └── 2c7c-0512 │ └── utils │ │ └── wmt │ │ ├── Makefile │ │ └── files │ │ ├── wmt.defaults │ │ └── wmt.init ├── scripts │ ├── mkits-rutx.sh │ └── mkits-tlt-rutx-fit.sh ├── target │ └── linux │ │ └── bcm27xx │ │ └── image │ │ └── cmdline.txt └── tools │ └── dwarves │ ├── Makefile │ └── patches │ └── 100-reproducible-builds.patch ├── config ├── config-armsr64 ├── config-bpi-r1 ├── config-bpi-r2 ├── config-bpi-r3 ├── config-bpi-r3-mini ├── config-bpi-r4 ├── config-bpi-r4-poe ├── config-bpi-r64 ├── config-cudy_tr3000-256mb-v1 ├── config-espressobin ├── config-gl-mt2500 ├── config-gl-mt3000 ├── config-gl-mt6000 ├── config-p2w_r619ac ├── config-qnap-301w ├── config-r2s ├── config-r4s ├── config-r5c ├── config-r5s ├── config-r6s ├── config-r7800 ├── config-rpi2 ├── config-rpi3 ├── config-rpi4 ├── config-rpi5 ├── config-rutx ├── config-rutx12 ├── config-rutx50 ├── config-ubnt-erx ├── config-wrt3200acm ├── config-wrt32x ├── config-x86 ├── config-x86_64 ├── config-z8102ax-emmc ├── config-z8102ax_128m ├── config-z8102ax_64m ├── config-z8109ax_128m ├── config-z8109ax_512m ├── contributors ├── anaelorlinski.md ├── asmodehn.md ├── example.md ├── kawiso.md ├── mateoust.md └── welterrocks.md ├── deploy_rsa.enc ├── patches ├── bbr2-5.15.patch ├── bbr2.patch ├── check-rsync.patch ├── download-ipv4.patch ├── gtime.patch ├── images.patch ├── ipt-nat6.patch ├── luci-base-add_array_sort_utilities.patch ├── luci-nftables.patch ├── luci-occitan.patch ├── luci-syslog-6.10.patch ├── luci-syslog-6.6.patch ├── luci-syslog.patch ├── luci-unbound-logread.patch ├── meson.patch ├── nanqinlang.patch ├── nocheck.6.6.patch ├── nocheck.patch ├── package-too-long.patch ├── remove_abi.patch ├── smsc75xx.patch └── uefi.patch └── sign.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hardware_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/ISSUE_TEMPLATE/hardware_support.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/ISSUE_TEMPLATE/help.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | sdk 2 | source 3 | feeds 4 | -------------------------------------------------------------------------------- /5.4/include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/include/kernel-defaults.mk -------------------------------------------------------------------------------- /5.4/include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/include/kernel-version.mk -------------------------------------------------------------------------------- /5.4/include/meson.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/include/meson.mk -------------------------------------------------------------------------------- /5.4/include/netfilter.mk.iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/include/netfilter.mk.iptables -------------------------------------------------------------------------------- /5.4/include/target.mk.iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/include/target.mk.iptables -------------------------------------------------------------------------------- /5.4/package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/Makefile -------------------------------------------------------------------------------- /5.4/package/boot/uboot-rockchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/boot/uboot-rockchip/Makefile -------------------------------------------------------------------------------- /5.4/package/firmware/cypress-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/firmware/cypress-firmware/Makefile -------------------------------------------------------------------------------- /5.4/package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /5.4/package/kernel/bcm27xx-gpu-fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/bcm27xx-gpu-fw/Makefile -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/crypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/crypto.mk -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/input.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/input.mk -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/netfilter.mk -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/netsupport.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/netsupport.mk -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/other.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/other.mk -------------------------------------------------------------------------------- /5.4/package/kernel/linux/modules/sound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/linux/modules/sound.mk -------------------------------------------------------------------------------- /5.4/package/kernel/r2ec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/r2ec/Makefile -------------------------------------------------------------------------------- /5.4/package/kernel/r2ec/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += r2ec.o -------------------------------------------------------------------------------- /5.4/package/kernel/r2ec/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/r2ec/src/io.h -------------------------------------------------------------------------------- /5.4/package/kernel/r2ec/src/r2ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/package/kernel/r2ec/src/r2ec.c -------------------------------------------------------------------------------- /5.4/target/linux/bcm27xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/bcm27xx/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/generic/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/generic/config-5.4 -------------------------------------------------------------------------------- /5.4/target/linux/generic/hack-5.4/693-tcp_bbr2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/generic/hack-5.4/693-tcp_bbr2.patch -------------------------------------------------------------------------------- /5.4/target/linux/generic/hack-5.4/999-ndpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/generic/hack-5.4/999-ndpi.patch -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/bin/board_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/bin/board_detect -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/bin/board_modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/bin/board_modem -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/bin/board_track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/bin/board_track -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/bin/ipcalc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/bin/ipcalc.sh -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/etc/init.d/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/etc/init.d/boot -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/etc/init.d/done: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/etc/init.d/done -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/etc/init.d/led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/etc/init.d/led -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/sbin/mctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/sbin/mctl -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/base-files/sbin/mnf_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/base-files/sbin/mnf_info -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/config-5.4 -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/dts/platform_name.dtsi: -------------------------------------------------------------------------------- 1 | / { platform = "RUTX"; }; -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/image/generic.mk -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/image/uboot_fw/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/image/uboot_fw/pack.py -------------------------------------------------------------------------------- /5.4/target/linux/ipq40xx/patches-5.4/099.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq40xx/patches-5.4/099.patch -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/base-files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/base-files/etc/inittab -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/config-5.4 -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/generic/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/generic/config-default -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/generic/target.mk -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/image/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/ipq60xx_32/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/ipq60xx_32/config-default -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/ipq60xx_32/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/ipq60xx_32/target.mk -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/profiles/00-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/profiles/00-default.mk -------------------------------------------------------------------------------- /5.4/target/linux/ipq60xx/profiles/qsdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq60xx/profiles/qsdk.mk -------------------------------------------------------------------------------- /5.4/target/linux/ipq807x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq807x/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/ipq807x/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq807x/config-5.4 -------------------------------------------------------------------------------- /5.4/target/linux/ipq807x/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /5.4/target/linux/ipq807x/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq807x/image/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/ipq807x/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/ipq807x/image/generic.mk -------------------------------------------------------------------------------- /5.4/target/linux/rockchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/rockchip/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/rockchip/armv8/config-5.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/rockchip/armv8/config-5.14 -------------------------------------------------------------------------------- /5.4/target/linux/rockchip/armv8/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/rockchip/armv8/config-5.15 -------------------------------------------------------------------------------- /5.4/target/linux/rockchip/armv8/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/rockchip/armv8/config-6.1 -------------------------------------------------------------------------------- /5.4/target/linux/rockchip/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/rockchip/image/Makefile -------------------------------------------------------------------------------- /5.4/target/linux/rockchip/image/armv8.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/rockchip/image/armv8.mk -------------------------------------------------------------------------------- /5.4/target/linux/x86/config-5.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/x86/config-5.14 -------------------------------------------------------------------------------- /5.4/target/linux/x86/image/grub-efi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/target/linux/x86/image/grub-efi.cfg -------------------------------------------------------------------------------- /5.4/tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /5.4/tools/meson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/tools/meson/Makefile -------------------------------------------------------------------------------- /5.4/tools/meson/files/openwrt-cross.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/tools/meson/files/openwrt-cross.txt.in -------------------------------------------------------------------------------- /5.4/tools/meson/files/openwrt-native.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/tools/meson/files/openwrt-native.txt.in -------------------------------------------------------------------------------- /5.4/tools/meson/patches/010-wsl2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/tools/meson/patches/010-wsl2.patch -------------------------------------------------------------------------------- /5.4/tools/ninja/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/5.4/tools/ninja/Makefile -------------------------------------------------------------------------------- /6.1/package/firmware/linux-firmware/broadcom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/firmware/linux-firmware/broadcom.mk -------------------------------------------------------------------------------- /6.1/package/firmware/linux-firmware/intel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/firmware/linux-firmware/intel.mk -------------------------------------------------------------------------------- /6.1/package/kernel/bcm27xx-gpu-fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/kernel/bcm27xx-gpu-fw/Makefile -------------------------------------------------------------------------------- /6.1/package/kernel/linux/modules/other.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/kernel/linux/modules/other.mk -------------------------------------------------------------------------------- /6.1/package/kernel/r2ec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/kernel/r2ec/Makefile -------------------------------------------------------------------------------- /6.1/package/kernel/r2ec/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += r2ec.o -------------------------------------------------------------------------------- /6.1/package/kernel/r2ec/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/kernel/r2ec/src/io.h -------------------------------------------------------------------------------- /6.1/package/kernel/r2ec/src/r2ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/kernel/r2ec/src/r2ec.c -------------------------------------------------------------------------------- /6.1/package/kernel/rtl8812au-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/kernel/rtl8812au-ct/Makefile -------------------------------------------------------------------------------- /6.1/package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /6.1/package/network/utils/iwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/package/network/utils/iwinfo/Makefile -------------------------------------------------------------------------------- /6.1/target/linux/bcm27xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/bcm27xx/Makefile -------------------------------------------------------------------------------- /6.1/target/linux/bcm27xx/base-files/etc/diag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/bcm27xx/base-files/etc/diag.sh -------------------------------------------------------------------------------- /6.1/target/linux/bcm27xx/bcm2712/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/bcm27xx/bcm2712/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/bcm27xx/bcm2712/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/bcm27xx/bcm2712/target.mk -------------------------------------------------------------------------------- /6.1/target/linux/bcm27xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/bcm27xx/image/Makefile -------------------------------------------------------------------------------- /6.1/target/linux/bcm27xx/image/distroconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/bcm27xx/image/distroconfig.txt -------------------------------------------------------------------------------- /6.1/target/linux/generic/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/generic/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/generic/config-6.1.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/generic/config-6.1.old -------------------------------------------------------------------------------- /6.1/target/linux/generic/hack-6.1/997-BBRv3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/generic/hack-6.1/997-BBRv3.patch -------------------------------------------------------------------------------- /6.1/target/linux/generic/hack-6.1/999-BBRv1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/generic/hack-6.1/999-BBRv1.patch -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/bin/board_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/bin/board_detect -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/bin/board_modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/bin/board_modem -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/bin/board_track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/bin/board_track -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/bin/ipcalc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/bin/ipcalc.sh -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/etc/init.d/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/etc/init.d/boot -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/etc/init.d/done: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/etc/init.d/done -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/etc/init.d/led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/etc/init.d/led -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/sbin/mctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/sbin/mctl -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/base-files/sbin/mnf_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/base-files/sbin/mnf_info -------------------------------------------------------------------------------- /6.1/target/linux/ipq40xx/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ipq40xx/image/generic.mk -------------------------------------------------------------------------------- /6.1/target/linux/mediatek/image/filogic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/mediatek/image/filogic.mk -------------------------------------------------------------------------------- /6.1/target/linux/ramips/mt7621/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/ramips/mt7621/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/x86/64/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/x86/64/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/x86/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/x86/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/x86/generic/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/x86/generic/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/x86/geode/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/x86/geode/config-6.1 -------------------------------------------------------------------------------- /6.1/target/linux/x86/legacy/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/target/linux/x86/legacy/config-6.1 -------------------------------------------------------------------------------- /6.1/toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.1/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /6.10/include/kernel-6.10: -------------------------------------------------------------------------------- 1 | LINUX_VERSION-6.10 = 2 | -------------------------------------------------------------------------------- /6.10/include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/include/kernel-defaults.mk -------------------------------------------------------------------------------- /6.10/package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /6.10/package/kernel/linux/modules/video.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/kernel/linux/modules/video.mk -------------------------------------------------------------------------------- /6.10/package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /6.10/package/libs/mbedtls/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/libs/mbedtls/Config.in -------------------------------------------------------------------------------- /6.10/package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /6.10/package/network/utils/iwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/network/utils/iwinfo/Makefile -------------------------------------------------------------------------------- /6.10/package/network/utils/nftables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/package/network/utils/nftables/Makefile -------------------------------------------------------------------------------- /6.10/target/linux/generic/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/generic/config-6.10 -------------------------------------------------------------------------------- /6.10/target/linux/mediatek/filogic/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/mediatek/filogic/config-6.10 -------------------------------------------------------------------------------- /6.10/target/linux/mediatek/image/filogic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/mediatek/image/filogic.mk -------------------------------------------------------------------------------- /6.10/target/linux/rockchip/armv8/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/rockchip/armv8/config-6.6 -------------------------------------------------------------------------------- /6.10/target/linux/rockchip/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/rockchip/modules.mk -------------------------------------------------------------------------------- /6.10/target/linux/x86/64/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/x86/64/config-6.10 -------------------------------------------------------------------------------- /6.10/target/linux/x86/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/x86/config-6.10 -------------------------------------------------------------------------------- /6.10/target/linux/x86/generic/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/x86/generic/config-6.10 -------------------------------------------------------------------------------- /6.10/target/linux/x86/geode/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/x86/geode/config-6.10 -------------------------------------------------------------------------------- /6.10/target/linux/x86/legacy/config-6.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/target/linux/x86/legacy/config-6.10 -------------------------------------------------------------------------------- /6.10/toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.10/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /6.12/package/kernel/nat46/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/package/kernel/nat46/Makefile -------------------------------------------------------------------------------- /6.12/package/system/apk/files/customfeeds.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6.12/target/linux/generic/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/generic/config-6.12 -------------------------------------------------------------------------------- /6.12/target/linux/generic/hack-6.12/0002-bbr3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/generic/hack-6.12/0002-bbr3.patch -------------------------------------------------------------------------------- /6.12/target/linux/ipq40xx/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/ipq40xx/config-6.12 -------------------------------------------------------------------------------- /6.12/target/linux/ipq40xx/generic/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/ipq40xx/generic/config-default -------------------------------------------------------------------------------- /6.12/target/linux/ipq40xx/mikrotik/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/ipq40xx/mikrotik/config-default -------------------------------------------------------------------------------- /6.12/target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /6.12/target/linux/ipq806x/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/ipq806x/config-6.12 -------------------------------------------------------------------------------- /6.12/target/linux/mediatek/image/filogic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.12/target/linux/mediatek/image/filogic.mk -------------------------------------------------------------------------------- /6.6/package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /6.6/package/network/utils/nftables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/package/network/utils/nftables/Makefile -------------------------------------------------------------------------------- /6.6/target/linux/bcm27xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/bcm27xx/image/Makefile -------------------------------------------------------------------------------- /6.6/target/linux/generic/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/generic/config-6.6 -------------------------------------------------------------------------------- /6.6/target/linux/generic/hack-6.6/997-BBRv3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/generic/hack-6.6/997-BBRv3.patch -------------------------------------------------------------------------------- /6.6/target/linux/mediatek/image/filogic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/mediatek/image/filogic.mk -------------------------------------------------------------------------------- /6.6/target/linux/x86/64/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/x86/64/config-6.6 -------------------------------------------------------------------------------- /6.6/target/linux/x86/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/x86/config-6.6 -------------------------------------------------------------------------------- /6.6/target/linux/x86/generic/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/x86/generic/config-6.6 -------------------------------------------------------------------------------- /6.6/target/linux/x86/geode/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/x86/geode/config-6.6 -------------------------------------------------------------------------------- /6.6/target/linux/x86/legacy/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/6.6/target/linux/x86/legacy/config-6.6 -------------------------------------------------------------------------------- /CLA-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/CLA-entity.md -------------------------------------------------------------------------------- /CLA-individual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/CLA-individual.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/README.md -------------------------------------------------------------------------------- /common/include/bpf_mptcp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/include/bpf_mptcp.mk -------------------------------------------------------------------------------- /common/package/base-files/files/bin/config_generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/base-files/files/bin/config_generate -------------------------------------------------------------------------------- /common/package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /common/package/base-files/files/etc/rc.button/reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/base-files/files/etc/rc.button/reset -------------------------------------------------------------------------------- /common/package/base-files/files/sbin/sysupgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/base-files/files/sbin/sysupgrade -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/.gitignore -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/COPYING -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/CREDITS -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/MAINTAINERS -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/MAKEALL -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/README -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/README.md: -------------------------------------------------------------------------------- 1 | # uboot-ipq40xx 2 | 3 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/api/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/api/README -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/api/api.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/api/api_net.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/arm/cpu/armv7/highbank/config.mk: -------------------------------------------------------------------------------- 1 | PLATFORM_CPPFLAGS += -march=armv7-a 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/arm/include/asm/arch-tnetv107x/emif_defs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/avr32/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/avr32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf527/BF523_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF522_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf527/BF523_def.h: -------------------------------------------------------------------------------- 1 | #include "BF522_def.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf527/BF525_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF524_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf527/BF525_def.h: -------------------------------------------------------------------------------- 1 | #include "BF524_def.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf527/BF527_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF526_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf527/BF527_def.h: -------------------------------------------------------------------------------- 1 | #include "BF526_def.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf533/BF532_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF531_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf533/BF533_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF532_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf537/BF537_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF536_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf537/BF537_def.h: -------------------------------------------------------------------------------- 1 | #include "BF536_def.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf538/BF539_cdef.h: -------------------------------------------------------------------------------- 1 | #include "BF538_cdef.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/mach-bf538/BF539_def.h: -------------------------------------------------------------------------------- 1 | #include "BF538_def.h" 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/blackfin/lib/.gitignore: -------------------------------------------------------------------------------- 1 | u-boot.lds 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/m68k/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/microblaze/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/nios2/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/openrisc/include/asm/byteorder.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/openrisc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/openrisc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/powerpc/cpu/mpc824x/.gitignore: -------------------------------------------------------------------------------- 1 | /bedbug_603e.c 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/powerpc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/sh/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/sparc/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/x86/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/avnet/fx12mm/.gitignore: -------------------------------------------------------------------------------- 1 | config.tmp 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/avnet/v5fx30teval/.gitignore: -------------------------------------------------------------------------------- 1 | /config.tmp 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/samsung/smdk6400/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | 5 | /config.tmp 6 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/sandpoint/dinkdl: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | tr -d "\r" <$1 >/dev/tts/1 3 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/xilinx/ml507/.gitignore: -------------------------------------------------------------------------------- 1 | /config.tmp 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/xilinx/ppc405-generic/.gitignore: -------------------------------------------------------------------------------- 1 | config.tmp 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/board/xilinx/ppc440-generic/.gitignore: -------------------------------------------------------------------------------- 1 | /config.tmp 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/boards.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/boards.cfg -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/flash.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/hush.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/image.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/iomux.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/kgdb.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/lcd.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/main.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/menu.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/modem.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/stdio.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/common/usb.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/config.mk -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/disk/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/disk/part.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.LED -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.MBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.MBX -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.OFT -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.OXC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.OXC -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.SPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.SPL -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.cfi -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.cmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.cmi -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.dns -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.m28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.m28 -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.pxe -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.sh -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.ubi -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/README.usb -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/git-mailrc -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/kwboot.1 -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/doc/mkimage.1 -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/dts/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ext2/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ext2/dev.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fat/fat.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fat/file.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/dev.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/dos.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/fat.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/fdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/fdos.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/fdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/fdos.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/fs.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/fdos/vfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/fdos/vfat.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ubifs/io.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ubifs/key.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ubifs/log.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ubifs/sb.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/fs.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/fs.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/fsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/fsdata.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/httpd.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/httpd.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/main.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/tapdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/tapdev.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/tapdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/tapdev.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/uip.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/uip.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/httpd/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/httpd/uipopt.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/aes.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/ahci.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/at45.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/at45.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/ata.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/bcd.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/crc.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/dtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/dtt.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/e500.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/elf.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/fat.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/fdc.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/fdt.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/fis.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/fpga.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/hush.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/i2c.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/ide.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/kgdb.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/lcd.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/lmb.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/menu.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/mmc.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/nand.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/net.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/os.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/part.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/include/pci.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/aes.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/bch.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/bzlib.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/crc16.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/crc32.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/crc7.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/ctype.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/div64.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/fdtdec.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/fwtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/fwtool.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/gunzip.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/ldiv.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/lmb.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/md5.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/qsort.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/rand.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/rbtree.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/sha1.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/sha256.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/string.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/strmhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/strmhz.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/time.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/lib/uuid.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/mkconfig -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/nand_spl/board/karo/tx25/config.mk: -------------------------------------------------------------------------------- 1 | PAD_TO := 2048 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/arp.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/arp.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/bootp.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/bootp.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/cdp.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/cdp.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/dns.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/dns.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/eth.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/httpd.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/httpd.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/net.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/nfs.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/nfs.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/ping.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/ping.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/rarp.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/rarp.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/sntp.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/sntp.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/tftp.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/net/tftp.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/post/post.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/post/tests.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/rules.mk -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/spl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/spl/Makefile -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/test/munit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/test/munit.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/test/munit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/test/munit.h -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-ipq40xx/src/tools/ncb.c -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /common/package/boot/uboot-ipq40xx/src/tools/updater/dummy.c: -------------------------------------------------------------------------------- 1 | volatile int __dummy = 0xDEADBEEF; 2 | -------------------------------------------------------------------------------- /common/package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /common/package/firmware/linux-firmware/netxen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/firmware/linux-firmware/netxen.mk -------------------------------------------------------------------------------- /common/package/modems/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/Makefile -------------------------------------------------------------------------------- /common/package/modems/src/README.md: -------------------------------------------------------------------------------- 1 | # modems 2 | 3 | -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-03a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-03a7 -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-060d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-060d -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-060e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-060e -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-0612: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-0612 -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-0619: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-0619 -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-061e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-061e -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-0623: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-0623 -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-0629: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-0629 -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-062d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-062d -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-062f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-062f -------------------------------------------------------------------------------- /common/package/modems/src/data/0421-0638: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0421-0638 -------------------------------------------------------------------------------- /common/package/modems/src/data/05c6-0016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/05c6-0016 -------------------------------------------------------------------------------- /common/package/modems/src/data/05c6-0023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/05c6-0023 -------------------------------------------------------------------------------- /common/package/modems/src/data/05c6-00a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/05c6-00a0 -------------------------------------------------------------------------------- /common/package/modems/src/data/05c6-6000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/05c6-6000 -------------------------------------------------------------------------------- /common/package/modems/src/data/05c6-9000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/05c6-9000 -------------------------------------------------------------------------------- /common/package/modems/src/data/05c6-9215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/05c6-9215 -------------------------------------------------------------------------------- /common/package/modems/src/data/07d1-3e01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/07d1-3e01 -------------------------------------------------------------------------------- /common/package/modems/src/data/07d1-3e02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/07d1-3e02 -------------------------------------------------------------------------------- /common/package/modems/src/data/07d1-7e11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/07d1-7e11 -------------------------------------------------------------------------------- /common/package/modems/src/data/0af0-4005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0af0-4005 -------------------------------------------------------------------------------- /common/package/modems/src/data/0af0-6901: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0af0-6901 -------------------------------------------------------------------------------- /common/package/modems/src/data/0af0-7201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0af0-7201 -------------------------------------------------------------------------------- /common/package/modems/src/data/0af0-8120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0af0-8120 -------------------------------------------------------------------------------- /common/package/modems/src/data/0af0-9200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0af0-9200 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c000 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c001 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c002 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c003 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c004 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c005 -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c00a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c00a -------------------------------------------------------------------------------- /common/package/modems/src/data/0b3c-c00b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0b3c-c00b -------------------------------------------------------------------------------- /common/package/modems/src/data/0bdb-1900: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0bdb-1900 -------------------------------------------------------------------------------- /common/package/modems/src/data/0bdb-1902: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0bdb-1902 -------------------------------------------------------------------------------- /common/package/modems/src/data/0bdb-190a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0bdb-190a -------------------------------------------------------------------------------- /common/package/modems/src/data/0bdb-190d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0bdb-190d -------------------------------------------------------------------------------- /common/package/modems/src/data/0bdb-1910: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0bdb-1910 -------------------------------------------------------------------------------- /common/package/modems/src/data/0c88-17da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0c88-17da -------------------------------------------------------------------------------- /common/package/modems/src/data/0c88-180a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0c88-180a -------------------------------------------------------------------------------- /common/package/modems/src/data/0f3d-68a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0f3d-68a2 -------------------------------------------------------------------------------- /common/package/modems/src/data/0f3d-68aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/0f3d-68aa -------------------------------------------------------------------------------- /common/package/modems/src/data/1004-6124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1004-6124 -------------------------------------------------------------------------------- /common/package/modems/src/data/1004-6141: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1004-6141 -------------------------------------------------------------------------------- /common/package/modems/src/data/1004-6157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1004-6157 -------------------------------------------------------------------------------- /common/package/modems/src/data/1004-618f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1004-618f -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3711: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3711 -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3714: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3714 -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3715: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3715 -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3716: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3716 -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3717: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3717 -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3718: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3718 -------------------------------------------------------------------------------- /common/package/modems/src/data/106c-3721: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/106c-3721 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0017 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0018 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0019 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0020 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0021 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0022 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0023 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0024 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0025 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0026: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0026 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0027 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0028 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0112 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0120 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0218 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0220: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0220 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0224 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-0301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-0301 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6802 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6803: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6803 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6804: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6804 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6805 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6808: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6808 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6809 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6813: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6813 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6815: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6815 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6816: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6816 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6820: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6820 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6821: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6821 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6822 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6833: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6833 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6834: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6834 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6835: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6835 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6838: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6838 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6839: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6839 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-683a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-683a -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-683b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-683b -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6850: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6850 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6851: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6851 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6852: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6852 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6853: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6853 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6855: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6855 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6856: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6856 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6859: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6859 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-685a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-685a -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6880: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6880 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6890: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6890 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6891: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6891 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6892: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6892 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-6893: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-6893 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-68a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-68a2 -------------------------------------------------------------------------------- /common/package/modems/src/data/1199-68aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1199-68aa -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1035: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1035 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1404: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1404 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1406: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1406 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-140b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-140b -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-140c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-140c -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1412: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1412 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-141b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-141b -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1433 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1436: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1436 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1444: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1444 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-144e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-144e -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1464: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1464 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1465: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1465 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1491: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1491 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14a5 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14a8 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14ac -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14ae -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14c6 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14c8 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14c9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14c9 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14ca -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14cb -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14cc -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14cf -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-14d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-14d2 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1506: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1506 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-150a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-150a -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-150c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-150c -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-150f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-150f -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-151b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-151b -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-151d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-151d -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-156c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-156c -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1576: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1576 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1577: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1577 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1578: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1578 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1589: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1589 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c05 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c07 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c08 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c10 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c12 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c1e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c1e -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c1f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c1f -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1c23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1c23 -------------------------------------------------------------------------------- /common/package/modems/src/data/12d1-1f16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/12d1-1f16 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-1400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-1400 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-1410: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-1410 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-1420: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-1420 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-1430: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-1430 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-1450: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-1450 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2100 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2110 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2120 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2130 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2400 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2410: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2410 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-2420: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-2420 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-4100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-4100 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-4400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-4400 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-6000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-6000 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-6001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-6001 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-6002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-6002 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-6010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-6010 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-7001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-7001 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-7003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-7003 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-7030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-7030 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-7031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-7031 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-7041: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-7041 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-7042: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-7042 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-9011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-9011 -------------------------------------------------------------------------------- /common/package/modems/src/data/1410-b001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1410-b001 -------------------------------------------------------------------------------- /common/package/modems/src/data/1529-3100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1529-3100 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d5-6202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d5-6202 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d5-6501: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d5-6501 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d5-6502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d5-6502 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d5-6603: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d5-6603 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d5-900d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d5-900d -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-5141: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-5141 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-5533: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-5533 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-5543: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-5543 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-5553: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-5553 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6002 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6006 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6007 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6008 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6522: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6522 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6523: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6523 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6532: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6532 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6533: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6533 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-6543: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-6543 -------------------------------------------------------------------------------- /common/package/modems/src/data/16d8-680a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/16d8-680a -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0001 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0002 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0015 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0016 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0017 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0018 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0019 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0022 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0024 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0025 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0031 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0033: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0033 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0037: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0037 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0039: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0039 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0042: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0042 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0052: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0052 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0055: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0055 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0057: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0057 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0063: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0063 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0064: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0064 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0066 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0073: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0073 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0079: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0079 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0082: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0082 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0086: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0086 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0091: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0091 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0094: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0094 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0104 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0108 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0116 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0117 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0121 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0124 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0128 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0142 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0143 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0152: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0152 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0157 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0167: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0167 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0170 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0199: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0199 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0257: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0257 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0265: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0265 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0284: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0284 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-0326: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-0326 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1003 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1008 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1010 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1015 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1018 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1172 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1173: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1173 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1176: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1176 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1177: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1177 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1181: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1181 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1203 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1208 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1211 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1212: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1212 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1217 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1218 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1220: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1220 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1222 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1245: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1245 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1252: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1252 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1254: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1254 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1256 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1270: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1270 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1401: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1401 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1402: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1402 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1426: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1426 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1512 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1515: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1515 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1518 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1519: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1519 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1522: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1522 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1525: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1525 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1527: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1527 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1537: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1537 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1538: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1538 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-1544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-1544 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-2002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-2002 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-2003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-2003 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-ffdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-ffdd -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-ffe4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-ffe4 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-ffe9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-ffe9 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-fff1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-fff1 -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-fffb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-fffb -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-fffc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-fffc -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-fffd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-fffd -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-fffe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-fffe -------------------------------------------------------------------------------- /common/package/modems/src/data/19d2-ffff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/19d2-ffff -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-1002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-1002 -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-1003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-1003 -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-1007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-1007 -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-1009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-1009 -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-100c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-100c -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-100d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-100d -------------------------------------------------------------------------------- /common/package/modems/src/data/1a8d-2006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1a8d-2006 -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-0000 -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-0012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-0012 -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-0017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-0017 -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-0052: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-0052 -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-00b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-00b7 -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-00ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-00ca -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-011e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-011e -------------------------------------------------------------------------------- /common/package/modems/src/data/1bbb-0203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1bbb-0203 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-6060: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-6060 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-6061: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-6061 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-9000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-9000 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-9603: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-9603 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-9605: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-9605 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-9607: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-9607 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-9801: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-9801 -------------------------------------------------------------------------------- /common/package/modems/src/data/1c9e-9900: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1c9e-9900 -------------------------------------------------------------------------------- /common/package/modems/src/data/1e0e-9000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1e0e-9000 -------------------------------------------------------------------------------- /common/package/modems/src/data/1e0e-9100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1e0e-9100 -------------------------------------------------------------------------------- /common/package/modems/src/data/1e0e-9200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1e0e-9200 -------------------------------------------------------------------------------- /common/package/modems/src/data/1e0e-ce16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1e0e-ce16 -------------------------------------------------------------------------------- /common/package/modems/src/data/1e0e-cefe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/1e0e-cefe -------------------------------------------------------------------------------- /common/package/modems/src/data/2001-7d00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2001-7d00 -------------------------------------------------------------------------------- /common/package/modems/src/data/2001-7d01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2001-7d01 -------------------------------------------------------------------------------- /common/package/modems/src/data/2001-7d02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2001-7d02 -------------------------------------------------------------------------------- /common/package/modems/src/data/2001-7d03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2001-7d03 -------------------------------------------------------------------------------- /common/package/modems/src/data/211f-6801: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/211f-6801 -------------------------------------------------------------------------------- /common/package/modems/src/data/2357-0201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2357-0201 -------------------------------------------------------------------------------- /common/package/modems/src/data/2357-0202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2357-0202 -------------------------------------------------------------------------------- /common/package/modems/src/data/2357-0203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2357-0203 -------------------------------------------------------------------------------- /common/package/modems/src/data/2357-9000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2357-9000 -------------------------------------------------------------------------------- /common/package/modems/src/data/2c7c-0121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2c7c-0121 -------------------------------------------------------------------------------- /common/package/modems/src/data/2c7c-0125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2c7c-0125 -------------------------------------------------------------------------------- /common/package/modems/src/data/2c7c-0296: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2c7c-0296 -------------------------------------------------------------------------------- /common/package/modems/src/data/2c7c-0306: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2c7c-0306 -------------------------------------------------------------------------------- /common/package/modems/src/data/2c7c-0512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/2c7c-0512 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8114 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8115 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8116 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8117 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8118: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8118 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8128 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8129 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8133: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8133 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8134 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8135: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8135 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8136: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8136 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8137: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8137 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8138: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8138 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8147: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8147 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8180: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8180 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8181: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8181 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8182: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8182 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8186: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8186 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8194: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8194 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8195 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-8196: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-8196 -------------------------------------------------------------------------------- /common/package/modems/src/data/413c-819b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/modems/src/data/413c-819b -------------------------------------------------------------------------------- /common/package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /common/package/network/ipv6/6in4/files/6in4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/network/ipv6/6in4/files/6in4.sh -------------------------------------------------------------------------------- /common/package/utils/wmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/utils/wmt/Makefile -------------------------------------------------------------------------------- /common/package/utils/wmt/files/wmt.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/utils/wmt/files/wmt.defaults -------------------------------------------------------------------------------- /common/package/utils/wmt/files/wmt.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/package/utils/wmt/files/wmt.init -------------------------------------------------------------------------------- /common/scripts/mkits-rutx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/scripts/mkits-rutx.sh -------------------------------------------------------------------------------- /common/scripts/mkits-tlt-rutx-fit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/scripts/mkits-tlt-rutx-fit.sh -------------------------------------------------------------------------------- /common/target/linux/bcm27xx/image/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/target/linux/bcm27xx/image/cmdline.txt -------------------------------------------------------------------------------- /common/tools/dwarves/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/common/tools/dwarves/Makefile -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config -------------------------------------------------------------------------------- /config-armsr64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-armsr64 -------------------------------------------------------------------------------- /config-bpi-r1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r1 -------------------------------------------------------------------------------- /config-bpi-r2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r2 -------------------------------------------------------------------------------- /config-bpi-r3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r3 -------------------------------------------------------------------------------- /config-bpi-r3-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r3-mini -------------------------------------------------------------------------------- /config-bpi-r4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r4 -------------------------------------------------------------------------------- /config-bpi-r4-poe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r4-poe -------------------------------------------------------------------------------- /config-bpi-r64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-bpi-r64 -------------------------------------------------------------------------------- /config-cudy_tr3000-256mb-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-cudy_tr3000-256mb-v1 -------------------------------------------------------------------------------- /config-espressobin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-espressobin -------------------------------------------------------------------------------- /config-gl-mt2500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-gl-mt2500 -------------------------------------------------------------------------------- /config-gl-mt3000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-gl-mt3000 -------------------------------------------------------------------------------- /config-gl-mt6000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-gl-mt6000 -------------------------------------------------------------------------------- /config-p2w_r619ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-p2w_r619ac -------------------------------------------------------------------------------- /config-qnap-301w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-qnap-301w -------------------------------------------------------------------------------- /config-r2s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-r2s -------------------------------------------------------------------------------- /config-r4s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-r4s -------------------------------------------------------------------------------- /config-r5c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-r5c -------------------------------------------------------------------------------- /config-r5s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-r5s -------------------------------------------------------------------------------- /config-r6s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-r6s -------------------------------------------------------------------------------- /config-r7800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-r7800 -------------------------------------------------------------------------------- /config-rpi2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rpi2 -------------------------------------------------------------------------------- /config-rpi3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rpi3 -------------------------------------------------------------------------------- /config-rpi4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rpi4 -------------------------------------------------------------------------------- /config-rpi5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rpi5 -------------------------------------------------------------------------------- /config-rutx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rutx -------------------------------------------------------------------------------- /config-rutx12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rutx12 -------------------------------------------------------------------------------- /config-rutx50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-rutx50 -------------------------------------------------------------------------------- /config-ubnt-erx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-ubnt-erx -------------------------------------------------------------------------------- /config-wrt3200acm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-wrt3200acm -------------------------------------------------------------------------------- /config-wrt32x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-wrt32x -------------------------------------------------------------------------------- /config-x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-x86 -------------------------------------------------------------------------------- /config-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-x86_64 -------------------------------------------------------------------------------- /config-z8102ax-emmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-z8102ax-emmc -------------------------------------------------------------------------------- /config-z8102ax_128m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-z8102ax_128m -------------------------------------------------------------------------------- /config-z8102ax_64m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-z8102ax_64m -------------------------------------------------------------------------------- /config-z8109ax_128m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-z8109ax_128m -------------------------------------------------------------------------------- /config-z8109ax_512m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/config-z8109ax_512m -------------------------------------------------------------------------------- /contributors/anaelorlinski.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/contributors/anaelorlinski.md -------------------------------------------------------------------------------- /contributors/asmodehn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/contributors/asmodehn.md -------------------------------------------------------------------------------- /contributors/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/contributors/example.md -------------------------------------------------------------------------------- /contributors/kawiso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/contributors/kawiso.md -------------------------------------------------------------------------------- /contributors/mateoust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/contributors/mateoust.md -------------------------------------------------------------------------------- /contributors/welterrocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/contributors/welterrocks.md -------------------------------------------------------------------------------- /deploy_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/deploy_rsa.enc -------------------------------------------------------------------------------- /patches/bbr2-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/bbr2-5.15.patch -------------------------------------------------------------------------------- /patches/bbr2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/bbr2.patch -------------------------------------------------------------------------------- /patches/check-rsync.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/check-rsync.patch -------------------------------------------------------------------------------- /patches/download-ipv4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/download-ipv4.patch -------------------------------------------------------------------------------- /patches/gtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/gtime.patch -------------------------------------------------------------------------------- /patches/images.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/images.patch -------------------------------------------------------------------------------- /patches/ipt-nat6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/ipt-nat6.patch -------------------------------------------------------------------------------- /patches/luci-base-add_array_sort_utilities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-base-add_array_sort_utilities.patch -------------------------------------------------------------------------------- /patches/luci-nftables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-nftables.patch -------------------------------------------------------------------------------- /patches/luci-occitan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-occitan.patch -------------------------------------------------------------------------------- /patches/luci-syslog-6.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-syslog-6.10.patch -------------------------------------------------------------------------------- /patches/luci-syslog-6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-syslog-6.6.patch -------------------------------------------------------------------------------- /patches/luci-syslog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-syslog.patch -------------------------------------------------------------------------------- /patches/luci-unbound-logread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/luci-unbound-logread.patch -------------------------------------------------------------------------------- /patches/meson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/meson.patch -------------------------------------------------------------------------------- /patches/nanqinlang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/nanqinlang.patch -------------------------------------------------------------------------------- /patches/nocheck.6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/nocheck.6.6.patch -------------------------------------------------------------------------------- /patches/nocheck.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/nocheck.patch -------------------------------------------------------------------------------- /patches/package-too-long.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/package-too-long.patch -------------------------------------------------------------------------------- /patches/remove_abi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/remove_abi.patch -------------------------------------------------------------------------------- /patches/smsc75xx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/smsc75xx.patch -------------------------------------------------------------------------------- /patches/uefi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/patches/uefi.patch -------------------------------------------------------------------------------- /sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ysurac/openmptcprouter/HEAD/sign.sh --------------------------------------------------------------------------------