├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README_CN.md ├── ipq40xx-nor-apps.img ├── uboot-gl-ap1300-b1300-s1300-b2200-20220826-md5-b599d2fa9955ca701fc25e6d29659c86.bin └── uboot ├── .checkpatch.conf ├── .gitignore ├── COPYING ├── CREDITS ├── MAINTAINERS ├── MAKEALL ├── Makefile ├── README ├── 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 │ ├── armv7 │ │ ├── Makefile │ │ ├── cache_v7.c │ │ ├── config.mk │ │ ├── cpu.c │ │ ├── qca │ │ │ ├── Makefile │ │ │ ├── asm-offsets.c │ │ │ ├── clock.c │ │ │ ├── cmd_blowsecfuse.c │ │ │ ├── cmd_bootqca.c │ │ │ ├── cmd_dumpqca_data.c │ │ │ ├── gpio.c │ │ │ ├── scm.c │ │ │ ├── smem.c │ │ │ └── timer.c │ │ ├── start.S │ │ └── syslib.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 ├── board └── 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 ├── 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_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_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 ├── gl │ ├── Makefile │ └── gl_ipq40xx_api.c ├── gpio │ ├── Makefile │ ├── altera_pio.c │ ├── at91_gpio.c │ ├── da8xx_gpio.c │ ├── gl_ipq40xx_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 │ ├── cleanwrt │ ├── 404.html │ ├── art.html │ ├── fail.html │ ├── flashing.html │ ├── index.html │ ├── style.css │ └── uboot.html │ ├── makefsdatac │ └── 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 ├── addrspace.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 │ ├── ipq40xx_cdp.h │ └── ipq806x_cdp.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 ├── galileo │ ├── core.h │ ├── gt64260R.h │ ├── memory.h │ └── pci.h ├── gdsys_fpga.h ├── gl │ └── gl_ipq40xx_api.h ├── gl_config.h ├── hush.h ├── hwconfig.h ├── i2c.h ├── i8042.h ├── ide.h ├── image.h ├── input.h ├── inttypes.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-gcc3.h │ ├── compiler-gcc4.h │ ├── compiler-gcc5.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 ├── md.h ├── menu.h ├── micrel.h ├── mii_phy.h ├── miiphy.h ├── mk48t59.h ├── mmc.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 ├── sha1.h ├── sha256.h ├── sha512.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 ├── aes.h ├── 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 ├── 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 ├── net_utils.c ├── qsort.c ├── rand.c ├── rbtree.c ├── sha1.c ├── sha256.c ├── sha512.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 ├── lib_rsa ├── Makefile ├── aes.c ├── asn1parse.c ├── bignum.c ├── gl_rsa_verify.c ├── md.c ├── md5.c ├── md_wrap.c ├── oid.c ├── polarssl │ ├── aes.h │ ├── asn1.h │ ├── bignum.h │ ├── bn_mul.h │ ├── config.h │ ├── md.h │ ├── md5.h │ ├── md_wrap.h │ ├── oid.h │ ├── pk.h │ ├── rsa.h │ ├── sha1.h │ └── sha256.h ├── rsa.c ├── sha1.c └── sha256.c ├── 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 └── uip ├── Makefile ├── README ├── apps ├── dhcpc │ ├── Makefile │ ├── Makefile.dhcpc │ ├── dhcpc.c │ └── dhcpc.h └── dhcpd │ ├── Makefile │ ├── dhcpd.c │ └── dhcpd.h ├── uip-1.0-changelog.txt ├── uip ├── Makefile ├── Makefile.include ├── clock.h ├── lc-addrlabels.h ├── lc-switch.h ├── lc.h ├── psock.c ├── psock.h ├── pt.h ├── timer.c ├── timer.h ├── uip-fw.c ├── uip-fw.h ├── uip-neighbor.c ├── uip-neighbor.h ├── uip-split.c ├── uip-split.h ├── uip.c ├── uip.h ├── uip_arch.h ├── uip_arp.c ├── uip_arp.h ├── uiplib.c ├── uiplib.h └── uipopt.h └── unix ├── Makefile ├── clock-arch.c ├── clock-arch.h ├── main.c ├── types.h └── uip-conf.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/README_CN.md -------------------------------------------------------------------------------- /ipq40xx-nor-apps.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/ipq40xx-nor-apps.img -------------------------------------------------------------------------------- /uboot/.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/.checkpatch.conf -------------------------------------------------------------------------------- /uboot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/.gitignore -------------------------------------------------------------------------------- /uboot/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/COPYING -------------------------------------------------------------------------------- /uboot/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/CREDITS -------------------------------------------------------------------------------- /uboot/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/MAINTAINERS -------------------------------------------------------------------------------- /uboot/MAKEALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/MAKEALL -------------------------------------------------------------------------------- /uboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/Makefile -------------------------------------------------------------------------------- /uboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/README -------------------------------------------------------------------------------- /uboot/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/Makefile -------------------------------------------------------------------------------- /uboot/api/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/README -------------------------------------------------------------------------------- /uboot/api/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/api.c -------------------------------------------------------------------------------- /uboot/api/api_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/api_display.c -------------------------------------------------------------------------------- /uboot/api/api_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/api_net.c -------------------------------------------------------------------------------- /uboot/api/api_platform-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/api_platform-arm.c -------------------------------------------------------------------------------- /uboot/api/api_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/api_private.h -------------------------------------------------------------------------------- /uboot/api/api_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/api/api_storage.c -------------------------------------------------------------------------------- /uboot/arch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/.gitignore -------------------------------------------------------------------------------- /uboot/arch/arm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/config.mk -------------------------------------------------------------------------------- /uboot/arch/arm/include/asm/arch-tnetv107x/emif_defs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uboot/arch/arm/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uboot/arch/arm/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/Makefile -------------------------------------------------------------------------------- /uboot/arch/arm/lib/_divsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/_divsi3.S -------------------------------------------------------------------------------- /uboot/arch/arm/lib/_modsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/_modsi3.S -------------------------------------------------------------------------------- /uboot/arch/arm/lib/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/board.c -------------------------------------------------------------------------------- /uboot/arch/arm/lib/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/bootm.c -------------------------------------------------------------------------------- /uboot/arch/arm/lib/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/cache.c -------------------------------------------------------------------------------- /uboot/arch/arm/lib/div0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/div0.c -------------------------------------------------------------------------------- /uboot/arch/arm/lib/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/memcpy.S -------------------------------------------------------------------------------- /uboot/arch/arm/lib/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/memset.S -------------------------------------------------------------------------------- /uboot/arch/arm/lib/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/arch/arm/lib/reset.c -------------------------------------------------------------------------------- /uboot/boards.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/boards.cfg -------------------------------------------------------------------------------- /uboot/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/Makefile -------------------------------------------------------------------------------- /uboot/common/bedbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/bedbug.c -------------------------------------------------------------------------------- /uboot/common/bootstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/bootstage.c -------------------------------------------------------------------------------- /uboot/common/cmd_ambapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ambapp.c -------------------------------------------------------------------------------- /uboot/common/cmd_bdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_bdinfo.c -------------------------------------------------------------------------------- /uboot/common/cmd_bedbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_bedbug.c -------------------------------------------------------------------------------- /uboot/common/cmd_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_bmp.c -------------------------------------------------------------------------------- /uboot/common/cmd_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_boot.c -------------------------------------------------------------------------------- /uboot/common/cmd_bootldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_bootldr.c -------------------------------------------------------------------------------- /uboot/common/cmd_bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_bootm.c -------------------------------------------------------------------------------- /uboot/common/cmd_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_cache.c -------------------------------------------------------------------------------- /uboot/common/cmd_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_console.c -------------------------------------------------------------------------------- /uboot/common/cmd_cplbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_cplbinfo.c -------------------------------------------------------------------------------- /uboot/common/cmd_cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_cramfs.c -------------------------------------------------------------------------------- /uboot/common/cmd_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_date.c -------------------------------------------------------------------------------- /uboot/common/cmd_dcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_dcr.c -------------------------------------------------------------------------------- /uboot/common/cmd_df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_df.c -------------------------------------------------------------------------------- /uboot/common/cmd_diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_diag.c -------------------------------------------------------------------------------- /uboot/common/cmd_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_display.c -------------------------------------------------------------------------------- /uboot/common/cmd_dtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_dtt.c -------------------------------------------------------------------------------- /uboot/common/cmd_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_echo.c -------------------------------------------------------------------------------- /uboot/common/cmd_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_eeprom.c -------------------------------------------------------------------------------- /uboot/common/cmd_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_elf.c -------------------------------------------------------------------------------- /uboot/common/cmd_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_exit.c -------------------------------------------------------------------------------- /uboot/common/cmd_ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ext2.c -------------------------------------------------------------------------------- /uboot/common/cmd_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_fat.c -------------------------------------------------------------------------------- /uboot/common/cmd_fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_fdc.c -------------------------------------------------------------------------------- /uboot/common/cmd_fdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_fdos.c -------------------------------------------------------------------------------- /uboot/common/cmd_fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_fdt.c -------------------------------------------------------------------------------- /uboot/common/cmd_fitupd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_fitupd.c -------------------------------------------------------------------------------- /uboot/common/cmd_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_flash.c -------------------------------------------------------------------------------- /uboot/common/cmd_fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_fpga.c -------------------------------------------------------------------------------- /uboot/common/cmd_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_gpio.c -------------------------------------------------------------------------------- /uboot/common/cmd_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_help.c -------------------------------------------------------------------------------- /uboot/common/cmd_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_i2c.c -------------------------------------------------------------------------------- /uboot/common/cmd_ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ide.c -------------------------------------------------------------------------------- /uboot/common/cmd_immap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_immap.c -------------------------------------------------------------------------------- /uboot/common/cmd_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_irq.c -------------------------------------------------------------------------------- /uboot/common/cmd_itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_itest.c -------------------------------------------------------------------------------- /uboot/common/cmd_jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_jffs2.c -------------------------------------------------------------------------------- /uboot/common/cmd_ldrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ldrinfo.c -------------------------------------------------------------------------------- /uboot/common/cmd_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_led.c -------------------------------------------------------------------------------- /uboot/common/cmd_license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_license.c -------------------------------------------------------------------------------- /uboot/common/cmd_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_load.c -------------------------------------------------------------------------------- /uboot/common/cmd_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_log.c -------------------------------------------------------------------------------- /uboot/common/cmd_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mac.c -------------------------------------------------------------------------------- /uboot/common/cmd_md5sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_md5sum.c -------------------------------------------------------------------------------- /uboot/common/cmd_mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mdio.c -------------------------------------------------------------------------------- /uboot/common/cmd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mem.c -------------------------------------------------------------------------------- /uboot/common/cmd_mfsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mfsl.c -------------------------------------------------------------------------------- /uboot/common/cmd_mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mii.c -------------------------------------------------------------------------------- /uboot/common/cmd_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_misc.c -------------------------------------------------------------------------------- /uboot/common/cmd_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mmc.c -------------------------------------------------------------------------------- /uboot/common/cmd_mmc_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mmc_spi.c -------------------------------------------------------------------------------- /uboot/common/cmd_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mp.c -------------------------------------------------------------------------------- /uboot/common/cmd_mtdparts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_mtdparts.c -------------------------------------------------------------------------------- /uboot/common/cmd_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_nand.c -------------------------------------------------------------------------------- /uboot/common/cmd_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_net.c -------------------------------------------------------------------------------- /uboot/common/cmd_nvedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_nvedit.c -------------------------------------------------------------------------------- /uboot/common/cmd_onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_onenand.c -------------------------------------------------------------------------------- /uboot/common/cmd_otp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_otp.c -------------------------------------------------------------------------------- /uboot/common/cmd_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_pci.c -------------------------------------------------------------------------------- /uboot/common/cmd_pcmcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_pcmcia.c -------------------------------------------------------------------------------- /uboot/common/cmd_portio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_portio.c -------------------------------------------------------------------------------- /uboot/common/cmd_pxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_pxe.c -------------------------------------------------------------------------------- /uboot/common/cmd_reginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_reginfo.c -------------------------------------------------------------------------------- /uboot/common/cmd_reiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_reiser.c -------------------------------------------------------------------------------- /uboot/common/cmd_sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_sata.c -------------------------------------------------------------------------------- /uboot/common/cmd_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_scsi.c -------------------------------------------------------------------------------- /uboot/common/cmd_setexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_setexpr.c -------------------------------------------------------------------------------- /uboot/common/cmd_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_sf.c -------------------------------------------------------------------------------- /uboot/common/cmd_sha1sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_sha1sum.c -------------------------------------------------------------------------------- /uboot/common/cmd_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_source.c -------------------------------------------------------------------------------- /uboot/common/cmd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_spi.c -------------------------------------------------------------------------------- /uboot/common/cmd_spl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_spl.c -------------------------------------------------------------------------------- /uboot/common/cmd_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_strings.c -------------------------------------------------------------------------------- /uboot/common/cmd_terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_terminal.c -------------------------------------------------------------------------------- /uboot/common/cmd_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_test.c -------------------------------------------------------------------------------- /uboot/common/cmd_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_time.c -------------------------------------------------------------------------------- /uboot/common/cmd_tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_tpm.c -------------------------------------------------------------------------------- /uboot/common/cmd_tsi148.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_tsi148.c -------------------------------------------------------------------------------- /uboot/common/cmd_ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ubi.c -------------------------------------------------------------------------------- /uboot/common/cmd_ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ubifs.c -------------------------------------------------------------------------------- /uboot/common/cmd_universe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_universe.c -------------------------------------------------------------------------------- /uboot/common/cmd_unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_unzip.c -------------------------------------------------------------------------------- /uboot/common/cmd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_usb.c -------------------------------------------------------------------------------- /uboot/common/cmd_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_version.c -------------------------------------------------------------------------------- /uboot/common/cmd_ximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_ximg.c -------------------------------------------------------------------------------- /uboot/common/cmd_yaffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/cmd_yaffs2.c -------------------------------------------------------------------------------- /uboot/common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/command.c -------------------------------------------------------------------------------- /uboot/common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/console.c -------------------------------------------------------------------------------- /uboot/common/ddr_spd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/ddr_spd.c -------------------------------------------------------------------------------- /uboot/common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/dlmalloc.c -------------------------------------------------------------------------------- /uboot/common/dlmalloc.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/dlmalloc.src -------------------------------------------------------------------------------- /uboot/common/env_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_common.c -------------------------------------------------------------------------------- /uboot/common/env_dataflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_dataflash.c -------------------------------------------------------------------------------- /uboot/common/env_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_eeprom.c -------------------------------------------------------------------------------- /uboot/common/env_embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_embedded.c -------------------------------------------------------------------------------- /uboot/common/env_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_fat.c -------------------------------------------------------------------------------- /uboot/common/env_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_flash.c -------------------------------------------------------------------------------- /uboot/common/env_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_mmc.c -------------------------------------------------------------------------------- /uboot/common/env_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_nand.c -------------------------------------------------------------------------------- /uboot/common/env_nowhere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_nowhere.c -------------------------------------------------------------------------------- /uboot/common/env_nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_nvram.c -------------------------------------------------------------------------------- /uboot/common/env_onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_onenand.c -------------------------------------------------------------------------------- /uboot/common/env_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_remote.c -------------------------------------------------------------------------------- /uboot/common/env_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/env_sf.c -------------------------------------------------------------------------------- /uboot/common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/exports.c -------------------------------------------------------------------------------- /uboot/common/fdt_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/fdt_support.c -------------------------------------------------------------------------------- /uboot/common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/flash.c -------------------------------------------------------------------------------- /uboot/common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/hush.c -------------------------------------------------------------------------------- /uboot/common/hwconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/hwconfig.c -------------------------------------------------------------------------------- /uboot/common/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/image.c -------------------------------------------------------------------------------- /uboot/common/iomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/iomux.c -------------------------------------------------------------------------------- /uboot/common/kallsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/kallsyms.c -------------------------------------------------------------------------------- /uboot/common/kgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/kgdb.c -------------------------------------------------------------------------------- /uboot/common/kgdb_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/kgdb_stubs.c -------------------------------------------------------------------------------- /uboot/common/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/lcd.c -------------------------------------------------------------------------------- /uboot/common/lynxkdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/lynxkdi.c -------------------------------------------------------------------------------- /uboot/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/main.c -------------------------------------------------------------------------------- /uboot/common/memsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/memsize.c -------------------------------------------------------------------------------- /uboot/common/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/menu.c -------------------------------------------------------------------------------- /uboot/common/miiphyutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/miiphyutil.c -------------------------------------------------------------------------------- /uboot/common/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/modem.c -------------------------------------------------------------------------------- /uboot/common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/s_record.c -------------------------------------------------------------------------------- /uboot/common/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/serial.c -------------------------------------------------------------------------------- /uboot/common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/stdio.c -------------------------------------------------------------------------------- /uboot/common/system_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/system_map.c -------------------------------------------------------------------------------- /uboot/common/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/update.c -------------------------------------------------------------------------------- /uboot/common/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/usb.c -------------------------------------------------------------------------------- /uboot/common/usb_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/usb_hub.c -------------------------------------------------------------------------------- /uboot/common/usb_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/usb_kbd.c -------------------------------------------------------------------------------- /uboot/common/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/usb_storage.c -------------------------------------------------------------------------------- /uboot/common/xyzModem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/common/xyzModem.c -------------------------------------------------------------------------------- /uboot/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/config.mk -------------------------------------------------------------------------------- /uboot/disk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/Makefile -------------------------------------------------------------------------------- /uboot/disk/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part.c -------------------------------------------------------------------------------- /uboot/disk/part_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_amiga.c -------------------------------------------------------------------------------- /uboot/disk/part_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_amiga.h -------------------------------------------------------------------------------- /uboot/disk/part_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_dos.c -------------------------------------------------------------------------------- /uboot/disk/part_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_dos.h -------------------------------------------------------------------------------- /uboot/disk/part_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_efi.c -------------------------------------------------------------------------------- /uboot/disk/part_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_efi.h -------------------------------------------------------------------------------- /uboot/disk/part_iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_iso.c -------------------------------------------------------------------------------- /uboot/disk/part_iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_iso.h -------------------------------------------------------------------------------- /uboot/disk/part_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_mac.c -------------------------------------------------------------------------------- /uboot/disk/part_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/disk/part_mac.h -------------------------------------------------------------------------------- /uboot/doc/README-integrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README-integrator -------------------------------------------------------------------------------- /uboot/doc/README.ARM-SoC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ARM-SoC -------------------------------------------------------------------------------- /uboot/doc/README.AVR32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.AVR32 -------------------------------------------------------------------------------- /uboot/doc/README.COBRA5272: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.COBRA5272 -------------------------------------------------------------------------------- /uboot/doc/README.INCA-IP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.INCA-IP -------------------------------------------------------------------------------- /uboot/doc/README.IPHASE4539: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.IPHASE4539 -------------------------------------------------------------------------------- /uboot/doc/README.IceCube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.IceCube -------------------------------------------------------------------------------- /uboot/doc/README.JFFS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.JFFS2 -------------------------------------------------------------------------------- /uboot/doc/README.JFFS2_NAND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.JFFS2_NAND -------------------------------------------------------------------------------- /uboot/doc/README.LED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.LED -------------------------------------------------------------------------------- /uboot/doc/README.LED_display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.LED_display -------------------------------------------------------------------------------- /uboot/doc/README.MBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.MBX -------------------------------------------------------------------------------- /uboot/doc/README.MPC866: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.MPC866 -------------------------------------------------------------------------------- /uboot/doc/README.Modem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.Modem -------------------------------------------------------------------------------- /uboot/doc/README.N1213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.N1213 -------------------------------------------------------------------------------- /uboot/doc/README.NDS32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.NDS32 -------------------------------------------------------------------------------- /uboot/doc/README.NetConsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.NetConsole -------------------------------------------------------------------------------- /uboot/doc/README.OFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.OFT -------------------------------------------------------------------------------- /uboot/doc/README.OXC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.OXC -------------------------------------------------------------------------------- /uboot/doc/README.PIP405: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.PIP405 -------------------------------------------------------------------------------- /uboot/doc/README.POST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.POST -------------------------------------------------------------------------------- /uboot/doc/README.PlanetCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.PlanetCore -------------------------------------------------------------------------------- /uboot/doc/README.RPXClassic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.RPXClassic -------------------------------------------------------------------------------- /uboot/doc/README.RPXlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.RPXlite -------------------------------------------------------------------------------- /uboot/doc/README.SBC8560: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.SBC8560 -------------------------------------------------------------------------------- /uboot/doc/README.SNTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.SNTP -------------------------------------------------------------------------------- /uboot/doc/README.SPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.SPL -------------------------------------------------------------------------------- /uboot/doc/README.TQM8260: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.TQM8260 -------------------------------------------------------------------------------- /uboot/doc/README.VLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.VLAN -------------------------------------------------------------------------------- /uboot/doc/README.ag101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ag101 -------------------------------------------------------------------------------- /uboot/doc/README.ag102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ag102 -------------------------------------------------------------------------------- /uboot/doc/README.alaska8220: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.alaska8220 -------------------------------------------------------------------------------- /uboot/doc/README.amigaone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.amigaone -------------------------------------------------------------------------------- /uboot/doc/README.arm-caches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.arm-caches -------------------------------------------------------------------------------- /uboot/doc/README.at91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.at91 -------------------------------------------------------------------------------- /uboot/doc/README.at91-soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.at91-soc -------------------------------------------------------------------------------- /uboot/doc/README.atmel_mci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.atmel_mci -------------------------------------------------------------------------------- /uboot/doc/README.autoboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.autoboot -------------------------------------------------------------------------------- /uboot/doc/README.bamboo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.bamboo -------------------------------------------------------------------------------- /uboot/doc/README.bedbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.bedbug -------------------------------------------------------------------------------- /uboot/doc/README.bitbangMII: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.bitbangMII -------------------------------------------------------------------------------- /uboot/doc/README.blackfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.blackfin -------------------------------------------------------------------------------- /uboot/doc/README.bus_vcxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.bus_vcxk -------------------------------------------------------------------------------- /uboot/doc/README.cfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.cfi -------------------------------------------------------------------------------- /uboot/doc/README.cmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.cmi -------------------------------------------------------------------------------- /uboot/doc/README.commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.commands -------------------------------------------------------------------------------- /uboot/doc/README.console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.console -------------------------------------------------------------------------------- /uboot/doc/README.davinci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.davinci -------------------------------------------------------------------------------- /uboot/doc/README.db64360: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.db64360 -------------------------------------------------------------------------------- /uboot/doc/README.db64460: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.db64460 -------------------------------------------------------------------------------- /uboot/doc/README.dnp5370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.dnp5370 -------------------------------------------------------------------------------- /uboot/doc/README.dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.dns -------------------------------------------------------------------------------- /uboot/doc/README.drivers.eth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.drivers.eth -------------------------------------------------------------------------------- /uboot/doc/README.ebony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ebony -------------------------------------------------------------------------------- /uboot/doc/README.enetaddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.enetaddr -------------------------------------------------------------------------------- /uboot/doc/README.evb64260: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.evb64260 -------------------------------------------------------------------------------- /uboot/doc/README.fads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.fads -------------------------------------------------------------------------------- /uboot/doc/README.fdt-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.fdt-control -------------------------------------------------------------------------------- /uboot/doc/README.fsl-ddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.fsl-ddr -------------------------------------------------------------------------------- /uboot/doc/README.hawkboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.hawkboard -------------------------------------------------------------------------------- /uboot/doc/README.hwconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.hwconfig -------------------------------------------------------------------------------- /uboot/doc/README.idma2intr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.idma2intr -------------------------------------------------------------------------------- /uboot/doc/README.imx31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.imx31 -------------------------------------------------------------------------------- /uboot/doc/README.imx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.imx5 -------------------------------------------------------------------------------- /uboot/doc/README.imximage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.imximage -------------------------------------------------------------------------------- /uboot/doc/README.iomux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.iomux -------------------------------------------------------------------------------- /uboot/doc/README.kmeter1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.kmeter1 -------------------------------------------------------------------------------- /uboot/doc/README.korat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.korat -------------------------------------------------------------------------------- /uboot/doc/README.kwbimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.kwbimage -------------------------------------------------------------------------------- /uboot/doc/README.link-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.link-local -------------------------------------------------------------------------------- /uboot/doc/README.lynxkdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.lynxkdi -------------------------------------------------------------------------------- /uboot/doc/README.m28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m28 -------------------------------------------------------------------------------- /uboot/doc/README.m52277evb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m52277evb -------------------------------------------------------------------------------- /uboot/doc/README.m5253evbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m5253evbe -------------------------------------------------------------------------------- /uboot/doc/README.m53017evb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m53017evb -------------------------------------------------------------------------------- /uboot/doc/README.m5373evb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m5373evb -------------------------------------------------------------------------------- /uboot/doc/README.m54455evb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m54455evb -------------------------------------------------------------------------------- /uboot/doc/README.m5475evb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m5475evb -------------------------------------------------------------------------------- /uboot/doc/README.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.m68k -------------------------------------------------------------------------------- /uboot/doc/README.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.menu -------------------------------------------------------------------------------- /uboot/doc/README.mergerbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mergerbox -------------------------------------------------------------------------------- /uboot/doc/README.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mips -------------------------------------------------------------------------------- /uboot/doc/README.mpc5xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc5xx -------------------------------------------------------------------------------- /uboot/doc/README.mpc7448hpc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc7448hpc2 -------------------------------------------------------------------------------- /uboot/doc/README.mpc74xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc74xx -------------------------------------------------------------------------------- /uboot/doc/README.mpc8313erdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8313erdb -------------------------------------------------------------------------------- /uboot/doc/README.mpc8315erdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8315erdb -------------------------------------------------------------------------------- /uboot/doc/README.mpc8323erdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8323erdb -------------------------------------------------------------------------------- /uboot/doc/README.mpc832xemds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc832xemds -------------------------------------------------------------------------------- /uboot/doc/README.mpc8349itx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8349itx -------------------------------------------------------------------------------- /uboot/doc/README.mpc8360emds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8360emds -------------------------------------------------------------------------------- /uboot/doc/README.mpc837xemds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc837xemds -------------------------------------------------------------------------------- /uboot/doc/README.mpc837xerdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc837xerdb -------------------------------------------------------------------------------- /uboot/doc/README.mpc83xxads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc83xxads -------------------------------------------------------------------------------- /uboot/doc/README.mpc8536ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8536ds -------------------------------------------------------------------------------- /uboot/doc/README.mpc8544ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8544ds -------------------------------------------------------------------------------- /uboot/doc/README.mpc8569mds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8569mds -------------------------------------------------------------------------------- /uboot/doc/README.mpc8572ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8572ds -------------------------------------------------------------------------------- /uboot/doc/README.mpc85xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc85xx -------------------------------------------------------------------------------- /uboot/doc/README.mpc85xxads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc85xxads -------------------------------------------------------------------------------- /uboot/doc/README.mpc85xxcds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc85xxcds -------------------------------------------------------------------------------- /uboot/doc/README.mpc8610hpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8610hpcd -------------------------------------------------------------------------------- /uboot/doc/README.mpc8641hpcn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mpc8641hpcn -------------------------------------------------------------------------------- /uboot/doc/README.mvbc_p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mvbc_p -------------------------------------------------------------------------------- /uboot/doc/README.mvblm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mvblm7 -------------------------------------------------------------------------------- /uboot/doc/README.mvsmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mvsmr -------------------------------------------------------------------------------- /uboot/doc/README.mx28_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mx28_common -------------------------------------------------------------------------------- /uboot/doc/README.mx28evk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mx28evk -------------------------------------------------------------------------------- /uboot/doc/README.mx35pdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.mx35pdk -------------------------------------------------------------------------------- /uboot/doc/README.nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.nand -------------------------------------------------------------------------------- /uboot/doc/README.ne2000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ne2000 -------------------------------------------------------------------------------- /uboot/doc/README.nhk8815: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.nhk8815 -------------------------------------------------------------------------------- /uboot/doc/README.ns9750dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ns9750dev -------------------------------------------------------------------------------- /uboot/doc/README.ocotea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ocotea -------------------------------------------------------------------------------- /uboot/doc/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.omap3 -------------------------------------------------------------------------------- /uboot/doc/README.omap730p2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.omap730p2 -------------------------------------------------------------------------------- /uboot/doc/README.p1022ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.p1022ds -------------------------------------------------------------------------------- /uboot/doc/README.p1023rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.p1023rds -------------------------------------------------------------------------------- /uboot/doc/README.p2020rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.p2020rdb -------------------------------------------------------------------------------- /uboot/doc/README.p2041rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.p2041rdb -------------------------------------------------------------------------------- /uboot/doc/README.p3060qds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.p3060qds -------------------------------------------------------------------------------- /uboot/doc/README.p4080ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.p4080ds -------------------------------------------------------------------------------- /uboot/doc/README.ppc440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ppc440 -------------------------------------------------------------------------------- /uboot/doc/README.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.pxe -------------------------------------------------------------------------------- /uboot/doc/README.qemu_mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.qemu_mips -------------------------------------------------------------------------------- /uboot/doc/README.s5pc1xx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.s5pc1xx -------------------------------------------------------------------------------- /uboot/doc/README.sandbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sandbox -------------------------------------------------------------------------------- /uboot/doc/README.sata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sata -------------------------------------------------------------------------------- /uboot/doc/README.sbc8349: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sbc8349 -------------------------------------------------------------------------------- /uboot/doc/README.sbc8548: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sbc8548 -------------------------------------------------------------------------------- /uboot/doc/README.sbc8641d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sbc8641d -------------------------------------------------------------------------------- /uboot/doc/README.sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sched -------------------------------------------------------------------------------- /uboot/doc/README.scrapyard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.scrapyard -------------------------------------------------------------------------------- /uboot/doc/README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sh -------------------------------------------------------------------------------- /uboot/doc/README.sh7757lcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sh7757lcr -------------------------------------------------------------------------------- /uboot/doc/README.sh7785lcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sh7785lcr -------------------------------------------------------------------------------- /uboot/doc/README.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.sha1 -------------------------------------------------------------------------------- /uboot/doc/README.silent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.silent -------------------------------------------------------------------------------- /uboot/doc/README.simpc8313: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.simpc8313 -------------------------------------------------------------------------------- /uboot/doc/README.spear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.spear -------------------------------------------------------------------------------- /uboot/doc/README.standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.standalone -------------------------------------------------------------------------------- /uboot/doc/README.stxxtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.stxxtc -------------------------------------------------------------------------------- /uboot/doc/README.timll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.timll -------------------------------------------------------------------------------- /uboot/doc/README.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ubi -------------------------------------------------------------------------------- /uboot/doc/README.ublimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.ublimage -------------------------------------------------------------------------------- /uboot/doc/README.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.update -------------------------------------------------------------------------------- /uboot/doc/README.usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.usb -------------------------------------------------------------------------------- /uboot/doc/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.video -------------------------------------------------------------------------------- /uboot/doc/README.xpedite1k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.xpedite1k -------------------------------------------------------------------------------- /uboot/doc/README.zeus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/README.zeus -------------------------------------------------------------------------------- /uboot/doc/SPL/README.omap3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/SPL/README.omap3 -------------------------------------------------------------------------------- /uboot/doc/git-mailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/git-mailrc -------------------------------------------------------------------------------- /uboot/doc/kwboot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/kwboot.1 -------------------------------------------------------------------------------- /uboot/doc/mkimage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/doc/mkimage.1 -------------------------------------------------------------------------------- /uboot/drivers/block/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/block/Makefile -------------------------------------------------------------------------------- /uboot/drivers/block/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/block/ahci.c -------------------------------------------------------------------------------- /uboot/drivers/block/libata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/block/libata.c -------------------------------------------------------------------------------- /uboot/drivers/block/sil680.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/block/sil680.c -------------------------------------------------------------------------------- /uboot/drivers/dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/dma/Makefile -------------------------------------------------------------------------------- /uboot/drivers/dma/apbh_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/dma/apbh_dma.c -------------------------------------------------------------------------------- /uboot/drivers/dma/bam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/dma/bam.c -------------------------------------------------------------------------------- /uboot/drivers/dma/fsl_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/dma/fsl_dma.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/ACEX1K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/ACEX1K.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/Makefile -------------------------------------------------------------------------------- /uboot/drivers/fpga/altera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/altera.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/cyclon2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/cyclon2.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/fpga.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/lattice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/lattice.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/virtex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/virtex2.c -------------------------------------------------------------------------------- /uboot/drivers/fpga/xilinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/fpga/xilinx.c -------------------------------------------------------------------------------- /uboot/drivers/gl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gl/Makefile -------------------------------------------------------------------------------- /uboot/drivers/gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/Makefile -------------------------------------------------------------------------------- /uboot/drivers/gpio/kw_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/kw_gpio.c -------------------------------------------------------------------------------- /uboot/drivers/gpio/mvgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/mvgpio.c -------------------------------------------------------------------------------- /uboot/drivers/gpio/mvgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/mvgpio.h -------------------------------------------------------------------------------- /uboot/drivers/gpio/mvmfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/mvmfp.c -------------------------------------------------------------------------------- /uboot/drivers/gpio/pca953x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/pca953x.c -------------------------------------------------------------------------------- /uboot/drivers/gpio/pca9698.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/pca9698.c -------------------------------------------------------------------------------- /uboot/drivers/gpio/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/gpio/sandbox.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/Makefile -------------------------------------------------------------------------------- /uboot/drivers/hwmon/ds1621.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/ds1621.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/ds1722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/ds1722.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/ds1775.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/ds1775.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/lm63.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/lm63.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/lm73.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/lm73.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/lm75.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/lm75.c -------------------------------------------------------------------------------- /uboot/drivers/hwmon/lm81.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/hwmon/lm81.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/Makefile -------------------------------------------------------------------------------- /uboot/drivers/i2c/fsl_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/fsl_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/ipq_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/ipq_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/ipq_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/ipq_i2c.h -------------------------------------------------------------------------------- /uboot/drivers/i2c/mv_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/mv_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/mv_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/mv_i2c.h -------------------------------------------------------------------------------- /uboot/drivers/i2c/mvtwsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/mvtwsi.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/mxc_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/mxc_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/mxs_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/mxs_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/sh_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/sh_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/i2c/soft_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/i2c/soft_i2c.c -------------------------------------------------------------------------------- /uboot/drivers/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/input/Makefile -------------------------------------------------------------------------------- /uboot/drivers/input/i8042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/input/i8042.c -------------------------------------------------------------------------------- /uboot/drivers/input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/input/input.c -------------------------------------------------------------------------------- /uboot/drivers/input/ps2ser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/input/ps2ser.c -------------------------------------------------------------------------------- /uboot/drivers/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/misc/Makefile -------------------------------------------------------------------------------- /uboot/drivers/misc/ali512x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/misc/ali512x.c -------------------------------------------------------------------------------- /uboot/drivers/misc/ds4510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/misc/ds4510.c -------------------------------------------------------------------------------- /uboot/drivers/misc/fsl_law.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/misc/fsl_law.c -------------------------------------------------------------------------------- /uboot/drivers/misc/ns87308.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/misc/ns87308.c -------------------------------------------------------------------------------- /uboot/drivers/mmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/mmc/Makefile -------------------------------------------------------------------------------- /uboot/drivers/mmc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/mmc/mmc.c -------------------------------------------------------------------------------- /uboot/drivers/mmc/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/mmc/sdhci.c -------------------------------------------------------------------------------- /uboot/drivers/mtd/at45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/mtd/at45.c -------------------------------------------------------------------------------- /uboot/drivers/net/8390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/8390.h -------------------------------------------------------------------------------- /uboot/drivers/net/dnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/dnet.c -------------------------------------------------------------------------------- /uboot/drivers/net/dnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/dnet.h -------------------------------------------------------------------------------- /uboot/drivers/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/e1000.c -------------------------------------------------------------------------------- /uboot/drivers/net/e1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/e1000.h -------------------------------------------------------------------------------- /uboot/drivers/net/ethoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/ethoc.c -------------------------------------------------------------------------------- /uboot/drivers/net/fm/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/fm/fm.c -------------------------------------------------------------------------------- /uboot/drivers/net/fm/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/fm/fm.h -------------------------------------------------------------------------------- /uboot/drivers/net/greth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/greth.c -------------------------------------------------------------------------------- /uboot/drivers/net/greth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/greth.h -------------------------------------------------------------------------------- /uboot/drivers/net/macb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/macb.c -------------------------------------------------------------------------------- /uboot/drivers/net/macb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/macb.h -------------------------------------------------------------------------------- /uboot/drivers/net/mvgbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/mvgbe.c -------------------------------------------------------------------------------- /uboot/drivers/net/mvgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/mvgbe.h -------------------------------------------------------------------------------- /uboot/drivers/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/pcnet.c -------------------------------------------------------------------------------- /uboot/drivers/net/tsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/net/tsec.c -------------------------------------------------------------------------------- /uboot/drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/pci/pci.c -------------------------------------------------------------------------------- /uboot/drivers/qe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/Makefile -------------------------------------------------------------------------------- /uboot/drivers/qe/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/fdt.c -------------------------------------------------------------------------------- /uboot/drivers/qe/qe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/qe.c -------------------------------------------------------------------------------- /uboot/drivers/qe/qe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/qe.h -------------------------------------------------------------------------------- /uboot/drivers/qe/uccf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/uccf.c -------------------------------------------------------------------------------- /uboot/drivers/qe/uccf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/uccf.h -------------------------------------------------------------------------------- /uboot/drivers/qe/uec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/uec.c -------------------------------------------------------------------------------- /uboot/drivers/qe/uec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/qe/uec.h -------------------------------------------------------------------------------- /uboot/drivers/rtc/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/rtc/date.c -------------------------------------------------------------------------------- /uboot/drivers/rtc/mvrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/rtc/mvrtc.c -------------------------------------------------------------------------------- /uboot/drivers/rtc/mvrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/rtc/mvrtc.h -------------------------------------------------------------------------------- /uboot/drivers/rtc/pl031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/rtc/pl031.c -------------------------------------------------------------------------------- /uboot/drivers/rtc/x1205.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/rtc/x1205.c -------------------------------------------------------------------------------- /uboot/drivers/video/ipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/drivers/video/ipu.h -------------------------------------------------------------------------------- /uboot/dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/dts/Makefile -------------------------------------------------------------------------------- /uboot/examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /uboot/examples/api/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/examples/api/crt0.S -------------------------------------------------------------------------------- /uboot/examples/api/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/examples/api/demo.c -------------------------------------------------------------------------------- /uboot/examples/api/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/examples/api/glue.c -------------------------------------------------------------------------------- /uboot/examples/api/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/examples/api/glue.h -------------------------------------------------------------------------------- /uboot/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/Makefile -------------------------------------------------------------------------------- /uboot/fs/cramfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/cramfs/Makefile -------------------------------------------------------------------------------- /uboot/fs/cramfs/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/cramfs/cramfs.c -------------------------------------------------------------------------------- /uboot/fs/ext2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ext2/Makefile -------------------------------------------------------------------------------- /uboot/fs/ext2/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ext2/dev.c -------------------------------------------------------------------------------- /uboot/fs/ext2/ext2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ext2/ext2fs.c -------------------------------------------------------------------------------- /uboot/fs/fat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fat/Makefile -------------------------------------------------------------------------------- /uboot/fs/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fat/fat.c -------------------------------------------------------------------------------- /uboot/fs/fat/fat_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fat/fat_write.c -------------------------------------------------------------------------------- /uboot/fs/fat/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fat/file.c -------------------------------------------------------------------------------- /uboot/fs/fdos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/Makefile -------------------------------------------------------------------------------- /uboot/fs/fdos/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/dev.c -------------------------------------------------------------------------------- /uboot/fs/fdos/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/dos.h -------------------------------------------------------------------------------- /uboot/fs/fdos/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/fat.c -------------------------------------------------------------------------------- /uboot/fs/fdos/fdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/fdos.c -------------------------------------------------------------------------------- /uboot/fs/fdos/fdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/fdos.h -------------------------------------------------------------------------------- /uboot/fs/fdos/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/fs.c -------------------------------------------------------------------------------- /uboot/fs/fdos/subdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/subdir.c -------------------------------------------------------------------------------- /uboot/fs/fdos/vfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/fdos/vfat.c -------------------------------------------------------------------------------- /uboot/fs/jffs2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/jffs2/LICENCE -------------------------------------------------------------------------------- /uboot/fs/jffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/jffs2/Makefile -------------------------------------------------------------------------------- /uboot/fs/jffs2/summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/jffs2/summary.h -------------------------------------------------------------------------------- /uboot/fs/reiserfs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/reiserfs/dev.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/Makefile -------------------------------------------------------------------------------- /uboot/fs/ubifs/budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/budget.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/crc16.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/crc16.h -------------------------------------------------------------------------------- /uboot/fs/ubifs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/debug.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/debug.h -------------------------------------------------------------------------------- /uboot/fs/ubifs/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/io.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/key.h -------------------------------------------------------------------------------- /uboot/fs/ubifs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/log.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/lprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/lprops.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/lpt.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/master.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/misc.h -------------------------------------------------------------------------------- /uboot/fs/ubifs/orphan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/orphan.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/recovery.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/replay.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/sb.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/scan.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/super.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/tnc.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/tnc_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/tnc_misc.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/ubifs.c -------------------------------------------------------------------------------- /uboot/fs/ubifs/ubifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/ubifs/ubifs.h -------------------------------------------------------------------------------- /uboot/fs/yaffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/yaffs2/Makefile -------------------------------------------------------------------------------- /uboot/fs/yaffs2/yaffsfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/yaffs2/yaffsfs.c -------------------------------------------------------------------------------- /uboot/fs/yaffs2/yaffsfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/fs/yaffs2/yaffsfs.h -------------------------------------------------------------------------------- /uboot/httpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/Makefile -------------------------------------------------------------------------------- /uboot/httpd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/fs.c -------------------------------------------------------------------------------- /uboot/httpd/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/fs.h -------------------------------------------------------------------------------- /uboot/httpd/fsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/fsdata.h -------------------------------------------------------------------------------- /uboot/httpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/httpd.c -------------------------------------------------------------------------------- /uboot/httpd/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/httpd.h -------------------------------------------------------------------------------- /uboot/httpd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/main.c -------------------------------------------------------------------------------- /uboot/httpd/tapdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/tapdev.c -------------------------------------------------------------------------------- /uboot/httpd/tapdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/tapdev.h -------------------------------------------------------------------------------- /uboot/httpd/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uip.c -------------------------------------------------------------------------------- /uboot/httpd/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uip.h -------------------------------------------------------------------------------- /uboot/httpd/uip_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uip_arch.c -------------------------------------------------------------------------------- /uboot/httpd/uip_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uip_arch.h -------------------------------------------------------------------------------- /uboot/httpd/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uip_arp.c -------------------------------------------------------------------------------- /uboot/httpd/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uip_arp.h -------------------------------------------------------------------------------- /uboot/httpd/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/httpd/uipopt.h -------------------------------------------------------------------------------- /uboot/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/.gitignore -------------------------------------------------------------------------------- /uboot/include/74xx_7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/74xx_7xx.h -------------------------------------------------------------------------------- /uboot/include/ACEX1K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ACEX1K.h -------------------------------------------------------------------------------- /uboot/include/MCD_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/MCD_dma.h -------------------------------------------------------------------------------- /uboot/include/SA-1100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/SA-1100.h -------------------------------------------------------------------------------- /uboot/include/_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/_exports.h -------------------------------------------------------------------------------- /uboot/include/addr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/addr_map.h -------------------------------------------------------------------------------- /uboot/include/addrspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/addrspace.h -------------------------------------------------------------------------------- /uboot/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/aes.h -------------------------------------------------------------------------------- /uboot/include/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ahci.h -------------------------------------------------------------------------------- /uboot/include/ali512x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ali512x.h -------------------------------------------------------------------------------- /uboot/include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/altera.h -------------------------------------------------------------------------------- /uboot/include/amba_clcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/amba_clcd.h -------------------------------------------------------------------------------- /uboot/include/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ambapp.h -------------------------------------------------------------------------------- /uboot/include/arm925t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/arm925t.h -------------------------------------------------------------------------------- /uboot/include/at45.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/at45.h -------------------------------------------------------------------------------- /uboot/include/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ata.h -------------------------------------------------------------------------------- /uboot/include/atmel_mci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/atmel_mci.h -------------------------------------------------------------------------------- /uboot/include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/bcd.h -------------------------------------------------------------------------------- /uboot/include/bcm5221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/bcm5221.h -------------------------------------------------------------------------------- /uboot/include/bootstage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/bootstage.h -------------------------------------------------------------------------------- /uboot/include/bus_vcxk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/bus_vcxk.h -------------------------------------------------------------------------------- /uboot/include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/bzlib.h -------------------------------------------------------------------------------- /uboot/include/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/circbuf.h -------------------------------------------------------------------------------- /uboot/include/clps7111.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/clps7111.h -------------------------------------------------------------------------------- /uboot/include/cmd_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/cmd_spl.h -------------------------------------------------------------------------------- /uboot/include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/command.h -------------------------------------------------------------------------------- /uboot/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/common.h -------------------------------------------------------------------------------- /uboot/include/commproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/commproc.h -------------------------------------------------------------------------------- /uboot/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/compiler.h -------------------------------------------------------------------------------- /uboot/include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/crc.h -------------------------------------------------------------------------------- /uboot/include/da9030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/da9030.h -------------------------------------------------------------------------------- /uboot/include/dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/dataflash.h -------------------------------------------------------------------------------- /uboot/include/ddr_spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ddr_spd.h -------------------------------------------------------------------------------- /uboot/include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/div64.h -------------------------------------------------------------------------------- /uboot/include/dm9000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/dm9000.h -------------------------------------------------------------------------------- /uboot/include/dm9161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/dm9161.h -------------------------------------------------------------------------------- /uboot/include/dp83848.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/dp83848.h -------------------------------------------------------------------------------- /uboot/include/ds1722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ds1722.h -------------------------------------------------------------------------------- /uboot/include/ds4510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ds4510.h -------------------------------------------------------------------------------- /uboot/include/dtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/dtt.h -------------------------------------------------------------------------------- /uboot/include/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/e500.h -------------------------------------------------------------------------------- /uboot/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/elf.h -------------------------------------------------------------------------------- /uboot/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/errno.h -------------------------------------------------------------------------------- /uboot/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/exports.h -------------------------------------------------------------------------------- /uboot/include/ext2fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ext2fs.h -------------------------------------------------------------------------------- /uboot/include/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fat.h -------------------------------------------------------------------------------- /uboot/include/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fdc.h -------------------------------------------------------------------------------- /uboot/include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fdt.h -------------------------------------------------------------------------------- /uboot/include/fdtdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fdtdec.h -------------------------------------------------------------------------------- /uboot/include/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fis.h -------------------------------------------------------------------------------- /uboot/include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/flash.h -------------------------------------------------------------------------------- /uboot/include/fm_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fm_eth.h -------------------------------------------------------------------------------- /uboot/include/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fpga.h -------------------------------------------------------------------------------- /uboot/include/fsl_esdhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fsl_esdhc.h -------------------------------------------------------------------------------- /uboot/include/fsl_mdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fsl_mdio.h -------------------------------------------------------------------------------- /uboot/include/fsl_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fsl_nfc.h -------------------------------------------------------------------------------- /uboot/include/fsl_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/fsl_pmic.h -------------------------------------------------------------------------------- /uboot/include/gl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/gl_config.h -------------------------------------------------------------------------------- /uboot/include/hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/hush.h -------------------------------------------------------------------------------- /uboot/include/hwconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/hwconfig.h -------------------------------------------------------------------------------- /uboot/include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/i2c.h -------------------------------------------------------------------------------- /uboot/include/i8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/i8042.h -------------------------------------------------------------------------------- /uboot/include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ide.h -------------------------------------------------------------------------------- /uboot/include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/image.h -------------------------------------------------------------------------------- /uboot/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/input.h -------------------------------------------------------------------------------- /uboot/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/inttypes.h -------------------------------------------------------------------------------- /uboot/include/iomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/iomux.h -------------------------------------------------------------------------------- /uboot/include/ioports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ioports.h -------------------------------------------------------------------------------- /uboot/include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/keyboard.h -------------------------------------------------------------------------------- /uboot/include/kgdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/kgdb.h -------------------------------------------------------------------------------- /uboot/include/ks8721.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ks8721.h -------------------------------------------------------------------------------- /uboot/include/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lattice.h -------------------------------------------------------------------------------- /uboot/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lcd.h -------------------------------------------------------------------------------- /uboot/include/lcdvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lcdvideo.h -------------------------------------------------------------------------------- /uboot/include/lh7a400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lh7a400.h -------------------------------------------------------------------------------- /uboot/include/lh7a404.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lh7a404.h -------------------------------------------------------------------------------- /uboot/include/lh7a40x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lh7a40x.h -------------------------------------------------------------------------------- /uboot/include/libata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/libata.h -------------------------------------------------------------------------------- /uboot/include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/libfdt.h -------------------------------------------------------------------------------- /uboot/include/libtizen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/libtizen.h -------------------------------------------------------------------------------- /uboot/include/linux/bch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/linux/bch.h -------------------------------------------------------------------------------- /uboot/include/linux/edd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/linux/edd.h -------------------------------------------------------------------------------- /uboot/include/linux/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/linux/err.h -------------------------------------------------------------------------------- /uboot/include/linux/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/linux/fb.h -------------------------------------------------------------------------------- /uboot/include/linux/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/linux/lzo.h -------------------------------------------------------------------------------- /uboot/include/linux/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/linux/mii.h -------------------------------------------------------------------------------- /uboot/include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lmb.h -------------------------------------------------------------------------------- /uboot/include/logbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/logbuff.h -------------------------------------------------------------------------------- /uboot/include/lxt971a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lxt971a.h -------------------------------------------------------------------------------- /uboot/include/lynxkdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/lynxkdi.h -------------------------------------------------------------------------------- /uboot/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/malloc.h -------------------------------------------------------------------------------- /uboot/include/mb862xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mb862xx.h -------------------------------------------------------------------------------- /uboot/include/mc13783.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mc13783.h -------------------------------------------------------------------------------- /uboot/include/mc13892.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mc13892.h -------------------------------------------------------------------------------- /uboot/include/mc9sdz60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mc9sdz60.h -------------------------------------------------------------------------------- /uboot/include/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/md.h -------------------------------------------------------------------------------- /uboot/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/menu.h -------------------------------------------------------------------------------- /uboot/include/micrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/micrel.h -------------------------------------------------------------------------------- /uboot/include/mii_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mii_phy.h -------------------------------------------------------------------------------- /uboot/include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/miiphy.h -------------------------------------------------------------------------------- /uboot/include/mk48t59.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mk48t59.h -------------------------------------------------------------------------------- /uboot/include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mmc.h -------------------------------------------------------------------------------- /uboot/include/mpc106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc106.h -------------------------------------------------------------------------------- /uboot/include/mpc5xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc5xx.h -------------------------------------------------------------------------------- /uboot/include/mpc5xxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc5xxx.h -------------------------------------------------------------------------------- /uboot/include/mpc8220.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc8220.h -------------------------------------------------------------------------------- /uboot/include/mpc824x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc824x.h -------------------------------------------------------------------------------- /uboot/include/mpc8260.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc8260.h -------------------------------------------------------------------------------- /uboot/include/mpc83xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc83xx.h -------------------------------------------------------------------------------- /uboot/include/mpc85xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc85xx.h -------------------------------------------------------------------------------- /uboot/include/mpc86xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc86xx.h -------------------------------------------------------------------------------- /uboot/include/mpc8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mpc8xx.h -------------------------------------------------------------------------------- /uboot/include/mtd_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mtd_node.h -------------------------------------------------------------------------------- /uboot/include/mvmfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/mvmfp.h -------------------------------------------------------------------------------- /uboot/include/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/nand.h -------------------------------------------------------------------------------- /uboot/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/net.h -------------------------------------------------------------------------------- /uboot/include/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/netdev.h -------------------------------------------------------------------------------- /uboot/include/nios2-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/nios2-io.h -------------------------------------------------------------------------------- /uboot/include/nios2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/nios2.h -------------------------------------------------------------------------------- /uboot/include/nomadik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/nomadik.h -------------------------------------------------------------------------------- /uboot/include/ns16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ns16550.h -------------------------------------------------------------------------------- /uboot/include/ns87308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ns87308.h -------------------------------------------------------------------------------- /uboot/include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/os.h -------------------------------------------------------------------------------- /uboot/include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/part.h -------------------------------------------------------------------------------- /uboot/include/pc_keyb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pc_keyb.h -------------------------------------------------------------------------------- /uboot/include/pca953x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pca953x.h -------------------------------------------------------------------------------- /uboot/include/pca9564.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pca9564.h -------------------------------------------------------------------------------- /uboot/include/pca9698.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pca9698.h -------------------------------------------------------------------------------- /uboot/include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pci.h -------------------------------------------------------------------------------- /uboot/include/pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pci_ids.h -------------------------------------------------------------------------------- /uboot/include/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pcmcia.h -------------------------------------------------------------------------------- /uboot/include/pcmcia/ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pcmcia/ss.h -------------------------------------------------------------------------------- /uboot/include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/phy.h -------------------------------------------------------------------------------- /uboot/include/pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pmic.h -------------------------------------------------------------------------------- /uboot/include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/post.h -------------------------------------------------------------------------------- /uboot/include/ppc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ppc_defs.h -------------------------------------------------------------------------------- /uboot/include/ps2mult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ps2mult.h -------------------------------------------------------------------------------- /uboot/include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/pwm.h -------------------------------------------------------------------------------- /uboot/include/radeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/radeon.h -------------------------------------------------------------------------------- /uboot/include/reiserfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/reiserfs.h -------------------------------------------------------------------------------- /uboot/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/rtc.h -------------------------------------------------------------------------------- /uboot/include/s6e63d6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/s6e63d6.h -------------------------------------------------------------------------------- /uboot/include/s_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/s_record.h -------------------------------------------------------------------------------- /uboot/include/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sata.h -------------------------------------------------------------------------------- /uboot/include/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/scsi.h -------------------------------------------------------------------------------- /uboot/include/sdhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sdhci.h -------------------------------------------------------------------------------- /uboot/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/search.h -------------------------------------------------------------------------------- /uboot/include/sed13806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sed13806.h -------------------------------------------------------------------------------- /uboot/include/sed156x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sed156x.h -------------------------------------------------------------------------------- /uboot/include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/serial.h -------------------------------------------------------------------------------- /uboot/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sha1.h -------------------------------------------------------------------------------- /uboot/include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sha256.h -------------------------------------------------------------------------------- /uboot/include/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sha512.h -------------------------------------------------------------------------------- /uboot/include/sja1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sja1000.h -------------------------------------------------------------------------------- /uboot/include/sm501.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sm501.h -------------------------------------------------------------------------------- /uboot/include/smiLynxEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/smiLynxEM.h -------------------------------------------------------------------------------- /uboot/include/spartan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/spartan2.h -------------------------------------------------------------------------------- /uboot/include/spartan3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/spartan3.h -------------------------------------------------------------------------------- /uboot/include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/spd.h -------------------------------------------------------------------------------- /uboot/include/spd_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/spd_sdram.h -------------------------------------------------------------------------------- /uboot/include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/spi.h -------------------------------------------------------------------------------- /uboot/include/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/spi_flash.h -------------------------------------------------------------------------------- /uboot/include/stdio_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/stdio_dev.h -------------------------------------------------------------------------------- /uboot/include/stratixII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/stratixII.h -------------------------------------------------------------------------------- /uboot/include/sym53c8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/sym53c8xx.h -------------------------------------------------------------------------------- /uboot/include/systemace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/systemace.h -------------------------------------------------------------------------------- /uboot/include/tegra-kbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tegra-kbc.h -------------------------------------------------------------------------------- /uboot/include/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/timestamp.h -------------------------------------------------------------------------------- /uboot/include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tpm.h -------------------------------------------------------------------------------- /uboot/include/tps6586x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tps6586x.h -------------------------------------------------------------------------------- /uboot/include/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tsec.h -------------------------------------------------------------------------------- /uboot/include/tsi108.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tsi108.h -------------------------------------------------------------------------------- /uboot/include/tsi148.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tsi148.h -------------------------------------------------------------------------------- /uboot/include/twl4030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/twl4030.h -------------------------------------------------------------------------------- /uboot/include/twl6030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/twl6030.h -------------------------------------------------------------------------------- /uboot/include/twl6035.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/twl6035.h -------------------------------------------------------------------------------- /uboot/include/tws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/tws.h -------------------------------------------------------------------------------- /uboot/include/ubi_uboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/ubi_uboot.h -------------------------------------------------------------------------------- /uboot/include/universe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/universe.h -------------------------------------------------------------------------------- /uboot/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/usb.h -------------------------------------------------------------------------------- /uboot/include/usb/ulpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/usb/ulpi.h -------------------------------------------------------------------------------- /uboot/include/usb_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/usb_defs.h -------------------------------------------------------------------------------- /uboot/include/usb_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/usb_ether.h -------------------------------------------------------------------------------- /uboot/include/usbdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/usbdevice.h -------------------------------------------------------------------------------- /uboot/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/version.h -------------------------------------------------------------------------------- /uboot/include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/video.h -------------------------------------------------------------------------------- /uboot/include/video_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/video_fb.h -------------------------------------------------------------------------------- /uboot/include/virtex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/virtex2.h -------------------------------------------------------------------------------- /uboot/include/vsc7385.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/vsc7385.h -------------------------------------------------------------------------------- /uboot/include/vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/vsprintf.h -------------------------------------------------------------------------------- /uboot/include/vxworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/vxworks.h -------------------------------------------------------------------------------- /uboot/include/w83c553f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/w83c553f.h -------------------------------------------------------------------------------- /uboot/include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/watchdog.h -------------------------------------------------------------------------------- /uboot/include/xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/xilinx.h -------------------------------------------------------------------------------- /uboot/include/xyzModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/include/xyzModem.h -------------------------------------------------------------------------------- /uboot/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/Makefile -------------------------------------------------------------------------------- /uboot/lib/addr_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/addr_map.c -------------------------------------------------------------------------------- /uboot/lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/aes.c -------------------------------------------------------------------------------- /uboot/lib/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/aes.h -------------------------------------------------------------------------------- /uboot/lib/asm-offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/asm-offsets.c -------------------------------------------------------------------------------- /uboot/lib/bch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/bch.c -------------------------------------------------------------------------------- /uboot/lib/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/bzlib.c -------------------------------------------------------------------------------- /uboot/lib/bzlib_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/bzlib_huffman.c -------------------------------------------------------------------------------- /uboot/lib/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/bzlib_private.h -------------------------------------------------------------------------------- /uboot/lib/circbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/circbuf.c -------------------------------------------------------------------------------- /uboot/lib/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/crc16.c -------------------------------------------------------------------------------- /uboot/lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/crc32.c -------------------------------------------------------------------------------- /uboot/lib/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/crc7.c -------------------------------------------------------------------------------- /uboot/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/ctype.c -------------------------------------------------------------------------------- /uboot/lib/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/div64.c -------------------------------------------------------------------------------- /uboot/lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /uboot/lib/fdtdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/fdtdec.c -------------------------------------------------------------------------------- /uboot/lib/fdtdec_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/fdtdec_test.c -------------------------------------------------------------------------------- /uboot/lib/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/gunzip.c -------------------------------------------------------------------------------- /uboot/lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/hashtable.c -------------------------------------------------------------------------------- /uboot/lib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/ldiv.c -------------------------------------------------------------------------------- /uboot/lib/libfdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/libfdt/Makefile -------------------------------------------------------------------------------- /uboot/lib/libfdt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/libfdt/README -------------------------------------------------------------------------------- /uboot/lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /uboot/lib/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /uboot/lib/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /uboot/lib/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /uboot/lib/lmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lmb.c -------------------------------------------------------------------------------- /uboot/lib/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzma/LzmaDec.c -------------------------------------------------------------------------------- /uboot/lib/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzma/LzmaDec.h -------------------------------------------------------------------------------- /uboot/lib/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzma/Makefile -------------------------------------------------------------------------------- /uboot/lib/lzma/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzma/README.txt -------------------------------------------------------------------------------- /uboot/lib/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzma/Types.h -------------------------------------------------------------------------------- /uboot/lib/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzma/lzma.txt -------------------------------------------------------------------------------- /uboot/lib/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzo/Makefile -------------------------------------------------------------------------------- /uboot/lib/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/lzo/lzodefs.h -------------------------------------------------------------------------------- /uboot/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/md5.c -------------------------------------------------------------------------------- /uboot/lib/net_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/net_utils.c -------------------------------------------------------------------------------- /uboot/lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/qsort.c -------------------------------------------------------------------------------- /uboot/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/rand.c -------------------------------------------------------------------------------- /uboot/lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/rbtree.c -------------------------------------------------------------------------------- /uboot/lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/sha1.c -------------------------------------------------------------------------------- /uboot/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/sha256.c -------------------------------------------------------------------------------- /uboot/lib/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/sha512.c -------------------------------------------------------------------------------- /uboot/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/string.c -------------------------------------------------------------------------------- /uboot/lib/strmhz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/strmhz.c -------------------------------------------------------------------------------- /uboot/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/time.c -------------------------------------------------------------------------------- /uboot/lib/tizen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/tizen/Makefile -------------------------------------------------------------------------------- /uboot/lib/tizen/tizen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/tizen/tizen.c -------------------------------------------------------------------------------- /uboot/lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/uuid.c -------------------------------------------------------------------------------- /uboot/lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/vsprintf.c -------------------------------------------------------------------------------- /uboot/lib/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/Makefile -------------------------------------------------------------------------------- /uboot/lib/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/adler32.c -------------------------------------------------------------------------------- /uboot/lib/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inffast.c -------------------------------------------------------------------------------- /uboot/lib/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inffast.h -------------------------------------------------------------------------------- /uboot/lib/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inffixed.h -------------------------------------------------------------------------------- /uboot/lib/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inflate.c -------------------------------------------------------------------------------- /uboot/lib/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inflate.h -------------------------------------------------------------------------------- /uboot/lib/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inftrees.c -------------------------------------------------------------------------------- /uboot/lib/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/inftrees.h -------------------------------------------------------------------------------- /uboot/lib/zlib/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/zlib.c -------------------------------------------------------------------------------- /uboot/lib/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/zlib.h -------------------------------------------------------------------------------- /uboot/lib/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/zutil.c -------------------------------------------------------------------------------- /uboot/lib/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib/zlib/zutil.h -------------------------------------------------------------------------------- /uboot/lib_rsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/Makefile -------------------------------------------------------------------------------- /uboot/lib_rsa/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/aes.c -------------------------------------------------------------------------------- /uboot/lib_rsa/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/asn1parse.c -------------------------------------------------------------------------------- /uboot/lib_rsa/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/bignum.c -------------------------------------------------------------------------------- /uboot/lib_rsa/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/md.c -------------------------------------------------------------------------------- /uboot/lib_rsa/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/md5.c -------------------------------------------------------------------------------- /uboot/lib_rsa/md_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/md_wrap.c -------------------------------------------------------------------------------- /uboot/lib_rsa/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/oid.c -------------------------------------------------------------------------------- /uboot/lib_rsa/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/rsa.c -------------------------------------------------------------------------------- /uboot/lib_rsa/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/sha1.c -------------------------------------------------------------------------------- /uboot/lib_rsa/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/lib_rsa/sha256.c -------------------------------------------------------------------------------- /uboot/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/mkconfig -------------------------------------------------------------------------------- /uboot/nand_spl/board/karo/tx25/config.mk: -------------------------------------------------------------------------------- 1 | PAD_TO := 2048 2 | -------------------------------------------------------------------------------- /uboot/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/Makefile -------------------------------------------------------------------------------- /uboot/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/arp.c -------------------------------------------------------------------------------- /uboot/net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/arp.h -------------------------------------------------------------------------------- /uboot/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/bootp.c -------------------------------------------------------------------------------- /uboot/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/bootp.h -------------------------------------------------------------------------------- /uboot/net/cdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/cdp.c -------------------------------------------------------------------------------- /uboot/net/cdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/cdp.h -------------------------------------------------------------------------------- /uboot/net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/dns.c -------------------------------------------------------------------------------- /uboot/net/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/dns.h -------------------------------------------------------------------------------- /uboot/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/eth.c -------------------------------------------------------------------------------- /uboot/net/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/httpd.c -------------------------------------------------------------------------------- /uboot/net/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/httpd.h -------------------------------------------------------------------------------- /uboot/net/link_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/link_local.c -------------------------------------------------------------------------------- /uboot/net/link_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/link_local.h -------------------------------------------------------------------------------- /uboot/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/net.c -------------------------------------------------------------------------------- /uboot/net/net_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/net_rand.h -------------------------------------------------------------------------------- /uboot/net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/nfs.c -------------------------------------------------------------------------------- /uboot/net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/nfs.h -------------------------------------------------------------------------------- /uboot/net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/ping.c -------------------------------------------------------------------------------- /uboot/net/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/ping.h -------------------------------------------------------------------------------- /uboot/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/rarp.c -------------------------------------------------------------------------------- /uboot/net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/rarp.h -------------------------------------------------------------------------------- /uboot/net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/sntp.c -------------------------------------------------------------------------------- /uboot/net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/sntp.h -------------------------------------------------------------------------------- /uboot/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/tftp.c -------------------------------------------------------------------------------- /uboot/net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/net/tftp.h -------------------------------------------------------------------------------- /uboot/post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/post/Makefile -------------------------------------------------------------------------------- /uboot/post/drivers/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/post/drivers/i2c.c -------------------------------------------------------------------------------- /uboot/post/drivers/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/post/drivers/rtc.c -------------------------------------------------------------------------------- /uboot/post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/post/post.c -------------------------------------------------------------------------------- /uboot/post/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/post/rules.mk -------------------------------------------------------------------------------- /uboot/post/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/post/tests.c -------------------------------------------------------------------------------- /uboot/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/rules.mk -------------------------------------------------------------------------------- /uboot/snapshot.commit: -------------------------------------------------------------------------------- 1 | $Format:%H %cD$ 2 | -------------------------------------------------------------------------------- /uboot/spl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/spl/.gitignore -------------------------------------------------------------------------------- /uboot/spl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/spl/Makefile -------------------------------------------------------------------------------- /uboot/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/test/Makefile -------------------------------------------------------------------------------- /uboot/test/munit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/test/munit.c -------------------------------------------------------------------------------- /uboot/test/munit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/test/munit.h -------------------------------------------------------------------------------- /uboot/test/nand_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/test/nand_ut.c -------------------------------------------------------------------------------- /uboot/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/.gitignore -------------------------------------------------------------------------------- /uboot/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/Makefile -------------------------------------------------------------------------------- /uboot/tools/aisimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/aisimage.c -------------------------------------------------------------------------------- /uboot/tools/aisimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/aisimage.h -------------------------------------------------------------------------------- /uboot/tools/bddb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bddb/README -------------------------------------------------------------------------------- /uboot/tools/bddb/bddb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bddb/bddb.css -------------------------------------------------------------------------------- /uboot/tools/bddb/defs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bddb/defs.php -------------------------------------------------------------------------------- /uboot/tools/bddb/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bddb/edit.php -------------------------------------------------------------------------------- /uboot/tools/bddb/new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bddb/new.php -------------------------------------------------------------------------------- /uboot/tools/bin2header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bin2header.c -------------------------------------------------------------------------------- /uboot/tools/bmp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/bmp_logo.c -------------------------------------------------------------------------------- /uboot/tools/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/checkpatch.pl -------------------------------------------------------------------------------- /uboot/tools/checkstack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/checkstack.pl -------------------------------------------------------------------------------- /uboot/tools/dumpimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/dumpimage.c -------------------------------------------------------------------------------- /uboot/tools/dumpimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/dumpimage.h -------------------------------------------------------------------------------- /uboot/tools/env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/env/Makefile -------------------------------------------------------------------------------- /uboot/tools/env/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/env/README -------------------------------------------------------------------------------- /uboot/tools/env/fw_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/env/fw_env.c -------------------------------------------------------------------------------- /uboot/tools/env/fw_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/env/fw_env.h -------------------------------------------------------------------------------- /uboot/tools/envcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/envcrc.c -------------------------------------------------------------------------------- /uboot/tools/fdt_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/fdt_host.h -------------------------------------------------------------------------------- /uboot/tools/fit_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/fit_image.c -------------------------------------------------------------------------------- /uboot/tools/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/Makefile -------------------------------------------------------------------------------- /uboot/tools/gdb/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/error.c -------------------------------------------------------------------------------- /uboot/tools/gdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/error.h -------------------------------------------------------------------------------- /uboot/tools/gdb/gdbcont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/gdbcont.c -------------------------------------------------------------------------------- /uboot/tools/gdb/gdbsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/gdbsend.c -------------------------------------------------------------------------------- /uboot/tools/gdb/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/remote.c -------------------------------------------------------------------------------- /uboot/tools/gdb/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/remote.h -------------------------------------------------------------------------------- /uboot/tools/gdb/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/serial.c -------------------------------------------------------------------------------- /uboot/tools/gdb/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/gdb/serial.h -------------------------------------------------------------------------------- /uboot/tools/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/getline.c -------------------------------------------------------------------------------- /uboot/tools/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/getline.h -------------------------------------------------------------------------------- /uboot/tools/imagetool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imagetool.c -------------------------------------------------------------------------------- /uboot/tools/imagetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imagetool.h -------------------------------------------------------------------------------- /uboot/tools/img2brec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/img2brec.sh -------------------------------------------------------------------------------- /uboot/tools/img2srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/img2srec.c -------------------------------------------------------------------------------- /uboot/tools/imls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imls/Makefile -------------------------------------------------------------------------------- /uboot/tools/imls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imls/README -------------------------------------------------------------------------------- /uboot/tools/imls/imls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imls/imls.c -------------------------------------------------------------------------------- /uboot/tools/imximage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imximage.c -------------------------------------------------------------------------------- /uboot/tools/imximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/imximage.h -------------------------------------------------------------------------------- /uboot/tools/jtagconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/jtagconsole -------------------------------------------------------------------------------- /uboot/tools/kwbimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/kwbimage.c -------------------------------------------------------------------------------- /uboot/tools/kwbimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/kwbimage.h -------------------------------------------------------------------------------- /uboot/tools/kwboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/kwboot.c -------------------------------------------------------------------------------- /uboot/tools/logos/esd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/logos/esd.bmp -------------------------------------------------------------------------------- /uboot/tools/mkenvimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mkenvimage.c -------------------------------------------------------------------------------- /uboot/tools/mkexynosspl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mkexynosspl.c -------------------------------------------------------------------------------- /uboot/tools/mkheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mkheader.py -------------------------------------------------------------------------------- /uboot/tools/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mkimage.c -------------------------------------------------------------------------------- /uboot/tools/mkimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mkimage.h -------------------------------------------------------------------------------- /uboot/tools/mpc86x_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mpc86x_clk.c -------------------------------------------------------------------------------- /uboot/tools/mxsboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/mxsboot.c -------------------------------------------------------------------------------- /uboot/tools/ncb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/ncb.c -------------------------------------------------------------------------------- /uboot/tools/netconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/netconsole -------------------------------------------------------------------------------- /uboot/tools/omapimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/omapimage.c -------------------------------------------------------------------------------- /uboot/tools/omapimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/omapimage.h -------------------------------------------------------------------------------- /uboot/tools/os_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/os_support.c -------------------------------------------------------------------------------- /uboot/tools/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/os_support.h -------------------------------------------------------------------------------- /uboot/tools/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/pack.py -------------------------------------------------------------------------------- /uboot/tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /uboot/tools/patman/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/patman/README -------------------------------------------------------------------------------- /uboot/tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /uboot/tools/ublimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/ublimage.c -------------------------------------------------------------------------------- /uboot/tools/ublimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/ublimage.h -------------------------------------------------------------------------------- /uboot/tools/ubsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/ubsha1.c -------------------------------------------------------------------------------- /uboot/tools/updater/dummy.c: -------------------------------------------------------------------------------- 1 | volatile int __dummy = 0xDEADBEEF; 2 | -------------------------------------------------------------------------------- /uboot/tools/updater/junk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/tools/updater/junk -------------------------------------------------------------------------------- /uboot/uip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/Makefile -------------------------------------------------------------------------------- /uboot/uip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/README -------------------------------------------------------------------------------- /uboot/uip/apps/dhcpc/Makefile.dhcpc: -------------------------------------------------------------------------------- 1 | APP_SOURCES += dhcpc.c timer.c 2 | -------------------------------------------------------------------------------- /uboot/uip/uip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/Makefile -------------------------------------------------------------------------------- /uboot/uip/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/clock.h -------------------------------------------------------------------------------- /uboot/uip/uip/lc-switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/lc-switch.h -------------------------------------------------------------------------------- /uboot/uip/uip/lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/lc.h -------------------------------------------------------------------------------- /uboot/uip/uip/psock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/psock.c -------------------------------------------------------------------------------- /uboot/uip/uip/psock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/psock.h -------------------------------------------------------------------------------- /uboot/uip/uip/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/pt.h -------------------------------------------------------------------------------- /uboot/uip/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/timer.c -------------------------------------------------------------------------------- /uboot/uip/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/timer.h -------------------------------------------------------------------------------- /uboot/uip/uip/uip-fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip-fw.c -------------------------------------------------------------------------------- /uboot/uip/uip/uip-fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip-fw.h -------------------------------------------------------------------------------- /uboot/uip/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip-split.c -------------------------------------------------------------------------------- /uboot/uip/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip-split.h -------------------------------------------------------------------------------- /uboot/uip/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip.c -------------------------------------------------------------------------------- /uboot/uip/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip.h -------------------------------------------------------------------------------- /uboot/uip/uip/uip_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip_arch.h -------------------------------------------------------------------------------- /uboot/uip/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip_arp.c -------------------------------------------------------------------------------- /uboot/uip/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uip_arp.h -------------------------------------------------------------------------------- /uboot/uip/uip/uiplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uiplib.c -------------------------------------------------------------------------------- /uboot/uip/uip/uiplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uiplib.h -------------------------------------------------------------------------------- /uboot/uip/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/uip/uipopt.h -------------------------------------------------------------------------------- /uboot/uip/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/unix/Makefile -------------------------------------------------------------------------------- /uboot/uip/unix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/unix/main.c -------------------------------------------------------------------------------- /uboot/uip/unix/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/unix/types.h -------------------------------------------------------------------------------- /uboot/uip/unix/uip-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gl-inet/uboot-ipq40xx/HEAD/uboot/uip/unix/uip-conf.h --------------------------------------------------------------------------------