├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── README ├── host_util ├── lzma │ ├── C │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ └── Types.h │ ├── Common │ │ ├── CRC.cpp │ │ ├── C_FileIO.cpp │ │ ├── C_FileIO.h │ │ ├── Defs.h │ │ ├── MyCom.h │ │ ├── MyException.h │ │ ├── MyGuidDef.h │ │ ├── MyInitGuid.h │ │ ├── MyString.cpp │ │ ├── MyString.h │ │ ├── MyUnknown.h │ │ ├── MyVector.cpp │ │ ├── MyVector.h │ │ ├── MyWindows.h │ │ ├── NewHandler.cpp │ │ ├── NewHandler.h │ │ ├── StdAfx.h │ │ ├── StringConvert.cpp │ │ ├── StringConvert.h │ │ ├── StringToInt.cpp │ │ ├── StringToInt.h │ │ └── Types.h │ ├── Exception.h │ ├── FileStreams.cpp │ ├── FileStreams.h │ ├── ICoder.h │ ├── IDecl.h │ ├── IStream.h │ ├── InBuffer.cpp │ ├── InBuffer.h │ ├── LzmaDecoder.cpp │ ├── LzmaDecoder.h │ ├── LzmaEncoder.cpp │ ├── LzmaEncoder.h │ ├── OutBuffer.cpp │ ├── OutBuffer.h │ ├── StdAfx.h │ ├── StreamUtils.cpp │ ├── StreamUtils.h │ ├── history.txt │ ├── lzma.txt │ ├── lzma_version.h │ ├── lzmp.cpp │ └── makefile.gcc └── u-boot-serial-flash ├── original_u-boot_images ├── alfa-network_hornet-ub_23062014.bin ├── alfa-network_tube2h_18052012.bin ├── buffalo_wpl-05g300_040112.bin ├── d-link_dir505_a1.bin ├── easylink_m-mini_031213.bin ├── gainstrong_oolite-v5.2_03062017.bin ├── gl-inet_gl-ar150_100815.bin ├── gl-inet_gl-ar300_270515.bin ├── gl-inet_gl-usb150_040717.bin ├── hak5_lan-turtle_20062017.bin ├── hak5_packet-squirrel_29072017.bin ├── hak5_wifi-pineapple-nano_13082015.bin ├── jjplus_jwap230_031115.bin ├── netgear_wndr4300_v2_120814.bin ├── openembed_som9331_030114.bin ├── p2w_r602n_cpe505n.bin ├── philips_hue-bridge-bsb002_v2_220715.bin ├── tp-link_tl-mr10u_v1_130321.bin ├── tp-link_tl-mr22u_v1_140123.bin ├── tp-link_tl-mr3020_v1_130225.bin ├── tp-link_tl-mr3040_v1_120328.bin ├── tp-link_tl-mr3040_v2_131121.bin ├── tp-link_tl-mr3220_v2_130423.bin ├── tp-link_tl-mr3420_v2_130314.bin ├── tp-link_tl-mr3420_v3_120617.bin ├── tp-link_tl-mr6400_v1_160318.bin ├── tp-link_tl-mr6400_v2_170330.bin ├── tp-link_tl-wa801nd_v2_130121.bin ├── tp-link_tl-wa830re_v2_121008.bin ├── tp-link_tl-wa850re_v2_160517.bin ├── tp-link_tl-wdr3500_v1_130909.bin ├── tp-link_tl-wdr3600_v1_130909.bin ├── tp-link_tl-wdr4300_v1_130617.bin ├── tp-link_tl-wr1043nd_v2_150910.bin ├── tp-link_tl-wr703n_v1_120228.bin ├── tp-link_tl-wr710n_v1_130419.bin ├── tp-link_tl-wr740n_v4_130513.bin ├── tp-link_tl-wr802n_v1_150717.bin ├── tp-link_tl-wr820n_v1_CN_141014.bin ├── tp-link_tl-wr841n_v11_150616.bin ├── tp-link_tl-wr841n_v8_130506.bin ├── tp-link_tl-wr841n_v9_150210.bin ├── tp-link_tl-wr842n_v3_150921.bin ├── wallys_dr531_160915.bin ├── yuncore_ap90q.bin ├── yuncore_cpe830.bin ├── yuncore_cpe870.bin └── yuncore_t830.bin ├── target_util └── u-boot-upgrade └── u-boot ├── CHANGELOG ├── COPYING ├── CREDITS ├── Makefile ├── README ├── board └── ar7240 │ ├── ap121 │ ├── Makefile │ ├── ap121.c │ ├── config.mk │ ├── u-boot-bootstrap.lds │ └── u-boot.lds │ ├── ap143 │ ├── Makefile │ ├── ap143.c │ ├── config.mk │ ├── u-boot-bootstrap.lds │ └── u-boot.lds │ ├── common │ ├── ar7240_s26_phy.c │ ├── ar7240_s26_phy.h │ ├── athr_s27_phy.c │ ├── athr_s27_phy.h │ ├── athrs17_phy.c │ ├── athrs17_phy.h │ ├── athrs27_phy.c │ ├── athrs27_phy.h │ ├── common.c │ ├── phy.h │ ├── qca-eth-953x.c │ ├── qca-eth-953x.h │ ├── qca-eth-953x_phy.h │ └── spi_flash.c │ └── db12x │ ├── Makefile │ ├── config.mk │ ├── db12x.c │ ├── u-boot-bootstrap.lds │ └── u-boot.lds ├── common ├── Makefile ├── cmd_boot.c ├── cmd_bootm.c ├── cmd_custom.c ├── cmd_flash.c ├── cmd_itest.c ├── cmd_load.c ├── cmd_mem.c ├── cmd_net.c ├── cmd_nvedit.c ├── cmd_qcaclk.c ├── cmd_qcagpio.c ├── command.c ├── console.c ├── crc16.c ├── devices.c ├── dlmalloc.c ├── env_common.c ├── env_flash.c ├── env_nowhere.c ├── environment.c ├── exports.c ├── flash.c ├── hush.c ├── lists.c ├── main.c ├── s_record.c └── xyzModem.c ├── config.mk ├── cpu └── mips │ ├── Makefile │ ├── ar7240 │ ├── Makefile │ ├── ag7240.c │ ├── ag7240.h │ ├── ag7240_phy.h │ ├── ag934x.c │ ├── ag934x.h │ ├── ag934x_phy.h │ ├── ar933x_pll_init.S │ ├── qca95xx_pll_init.S │ ├── qca_clocks.c │ ├── qca_common.c │ ├── qca_dram.c │ ├── qca_gpio_init.S │ ├── qca_hs_uart.c │ ├── qca_ls_uart.c │ ├── qca_pci.c │ ├── qca_sf.c │ └── qca_usb.c │ ├── cache.S │ ├── config.mk │ ├── cpu.c │ ├── start.S │ └── start_bootstrap.S ├── drivers ├── Makefile └── netconsole.c ├── 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 │ ├── SE │ ├── 404.html │ ├── art.html │ ├── fail.html │ ├── flashing.html │ ├── index.html │ ├── style.css │ └── uboot.html │ ├── dragino │ ├── 404.html │ ├── f.png │ ├── fail.html │ ├── flashing.html │ ├── index.html │ ├── l.png │ └── style.css │ ├── general │ ├── 404.html │ ├── art.html │ ├── fail.html │ ├── flashing.html │ ├── index.html │ ├── style.css │ └── uboot.html │ ├── makefsdatac │ ├── oem │ ├── 404.html │ ├── fail.html │ ├── flashing.html │ ├── index.html │ └── style.css │ ├── villagetelco │ ├── 404.html │ ├── fail.html │ ├── flashing.html │ ├── index.html │ ├── style.css │ ├── v.png │ └── vt.png │ └── yuicompressor-2.4.8.jar ├── include ├── 953x.h ├── LzmaWrapper.h ├── ar7240_soc.h ├── ar934x_soc.h ├── asm-mips │ ├── addrspace.h │ ├── bitops.h │ ├── byteorder.h │ ├── cachectl.h │ ├── cacheops.h │ ├── global_data.h │ ├── io.h │ ├── isadep.h │ ├── mipsregs.h │ ├── posix_types.h │ ├── processor.h │ ├── ptrace.h │ ├── reg.h │ ├── regdef.h │ ├── sgidefs.h │ ├── string.h │ ├── system.h │ ├── types.h │ └── u-boot.h ├── atheros.h ├── cmd_qcaclk.h ├── cmd_qcagpio.h ├── command.h ├── common.h ├── configs │ ├── ap121.h │ ├── ap143.h │ ├── db12x.h │ └── qca9k_common.h ├── console.h ├── crc.h ├── devices.h ├── env_scripts.h ├── environment.h ├── exports.h ├── flash.h ├── hush.h ├── image.h ├── ioports.h ├── jffs2 │ ├── jffs2.h │ └── load_kernel.h ├── lcd.h ├── linux │ ├── bitops.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── config.h │ ├── ctype.h │ ├── list.h │ ├── mtd │ │ ├── mtd-abi.h │ │ └── mtd.h │ ├── posix_types.h │ ├── stat.h │ ├── stddef.h │ ├── string.h │ ├── time.h │ └── types.h ├── lists.h ├── malloc.h ├── miiphy.h ├── net.h ├── pci.h ├── pci_ids.h ├── rtc.h ├── s_record.h ├── serial.h ├── soc │ ├── ar933x_pll_init.h │ ├── mtk_soc_common.h │ ├── qca95xx_pll_init.h │ ├── qca_dram.h │ ├── qca_pll_list.h │ ├── qca_soc_common.h │ ├── soc_common.h │ └── soc_list.h ├── tinf.h ├── tplink_image.h ├── version.h └── xyzModem.h ├── lib_bootstrap ├── LzmaDecode.c ├── LzmaDecode.h ├── LzmaTypes.h ├── LzmaWrapper.c ├── Makefile ├── bootstrap_board.c └── string.c ├── lib_generic ├── LzmaDecode.c ├── LzmaDecode.h ├── LzmaTypes.h ├── LzmaWrapper.c ├── Makefile ├── crc32.c ├── ctype.c ├── display_options.c ├── ldiv.c ├── string.c ├── tinfcrc32.c ├── tinfgzip.c ├── tinflate.c └── vsprintf.c ├── lib_mips ├── Makefile ├── board.c ├── mips_linux.c └── time.c ├── mips_config.mk ├── mkconfig ├── net ├── Makefile ├── bootp.c ├── bootp.h ├── eth.c ├── httpd.c ├── httpd.h ├── net.c ├── nfs.c ├── nfs.h ├── rarp.c ├── rarp.h ├── sntp.c ├── sntp.h ├── tftp.c └── tftp.h ├── rtc ├── Makefile └── date.c └── tools ├── Makefile ├── envcrc.c └── mkimage.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/README.md -------------------------------------------------------------------------------- /bin/README: -------------------------------------------------------------------------------- 1 | Here you will find binary images after code compilation. 2 | -------------------------------------------------------------------------------- /host_util/lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /host_util/lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /host_util/lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/Alloc.c -------------------------------------------------------------------------------- /host_util/lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/Alloc.h -------------------------------------------------------------------------------- /host_util/lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzFind.c -------------------------------------------------------------------------------- /host_util/lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzFind.h -------------------------------------------------------------------------------- /host_util/lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzHash.h -------------------------------------------------------------------------------- /host_util/lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /host_util/lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /host_util/lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /host_util/lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /host_util/lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/C/Types.h -------------------------------------------------------------------------------- /host_util/lzma/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/CRC.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/C_FileIO.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/C_FileIO.h -------------------------------------------------------------------------------- /host_util/lzma/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/Defs.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyCom.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyException.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyGuidDef.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyInitGuid.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyString.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/MyString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyString.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyUnknown.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyVector.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/MyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyVector.h -------------------------------------------------------------------------------- /host_util/lzma/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/MyWindows.h -------------------------------------------------------------------------------- /host_util/lzma/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/NewHandler.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/NewHandler.h -------------------------------------------------------------------------------- /host_util/lzma/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/StdAfx.h -------------------------------------------------------------------------------- /host_util/lzma/Common/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/StringConvert.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/StringConvert.h -------------------------------------------------------------------------------- /host_util/lzma/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/StringToInt.cpp -------------------------------------------------------------------------------- /host_util/lzma/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/StringToInt.h -------------------------------------------------------------------------------- /host_util/lzma/Common/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Common/Types.h -------------------------------------------------------------------------------- /host_util/lzma/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/Exception.h -------------------------------------------------------------------------------- /host_util/lzma/FileStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/FileStreams.cpp -------------------------------------------------------------------------------- /host_util/lzma/FileStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/FileStreams.h -------------------------------------------------------------------------------- /host_util/lzma/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/ICoder.h -------------------------------------------------------------------------------- /host_util/lzma/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/IDecl.h -------------------------------------------------------------------------------- /host_util/lzma/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/IStream.h -------------------------------------------------------------------------------- /host_util/lzma/InBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/InBuffer.cpp -------------------------------------------------------------------------------- /host_util/lzma/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/InBuffer.h -------------------------------------------------------------------------------- /host_util/lzma/LzmaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/LzmaDecoder.cpp -------------------------------------------------------------------------------- /host_util/lzma/LzmaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/LzmaDecoder.h -------------------------------------------------------------------------------- /host_util/lzma/LzmaEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/LzmaEncoder.cpp -------------------------------------------------------------------------------- /host_util/lzma/LzmaEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/LzmaEncoder.h -------------------------------------------------------------------------------- /host_util/lzma/OutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/OutBuffer.cpp -------------------------------------------------------------------------------- /host_util/lzma/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/OutBuffer.h -------------------------------------------------------------------------------- /host_util/lzma/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/StdAfx.h -------------------------------------------------------------------------------- /host_util/lzma/StreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/StreamUtils.cpp -------------------------------------------------------------------------------- /host_util/lzma/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/StreamUtils.h -------------------------------------------------------------------------------- /host_util/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/history.txt -------------------------------------------------------------------------------- /host_util/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/lzma.txt -------------------------------------------------------------------------------- /host_util/lzma/lzma_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/lzma_version.h -------------------------------------------------------------------------------- /host_util/lzma/lzmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/lzmp.cpp -------------------------------------------------------------------------------- /host_util/lzma/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/lzma/makefile.gcc -------------------------------------------------------------------------------- /host_util/u-boot-serial-flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/host_util/u-boot-serial-flash -------------------------------------------------------------------------------- /original_u-boot_images/alfa-network_hornet-ub_23062014.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/alfa-network_hornet-ub_23062014.bin -------------------------------------------------------------------------------- /original_u-boot_images/alfa-network_tube2h_18052012.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/alfa-network_tube2h_18052012.bin -------------------------------------------------------------------------------- /original_u-boot_images/buffalo_wpl-05g300_040112.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/buffalo_wpl-05g300_040112.bin -------------------------------------------------------------------------------- /original_u-boot_images/d-link_dir505_a1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/d-link_dir505_a1.bin -------------------------------------------------------------------------------- /original_u-boot_images/easylink_m-mini_031213.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/easylink_m-mini_031213.bin -------------------------------------------------------------------------------- /original_u-boot_images/gainstrong_oolite-v5.2_03062017.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/gainstrong_oolite-v5.2_03062017.bin -------------------------------------------------------------------------------- /original_u-boot_images/gl-inet_gl-ar150_100815.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/gl-inet_gl-ar150_100815.bin -------------------------------------------------------------------------------- /original_u-boot_images/gl-inet_gl-ar300_270515.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/gl-inet_gl-ar300_270515.bin -------------------------------------------------------------------------------- /original_u-boot_images/gl-inet_gl-usb150_040717.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/gl-inet_gl-usb150_040717.bin -------------------------------------------------------------------------------- /original_u-boot_images/hak5_lan-turtle_20062017.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/hak5_lan-turtle_20062017.bin -------------------------------------------------------------------------------- /original_u-boot_images/hak5_packet-squirrel_29072017.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/hak5_packet-squirrel_29072017.bin -------------------------------------------------------------------------------- /original_u-boot_images/hak5_wifi-pineapple-nano_13082015.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/hak5_wifi-pineapple-nano_13082015.bin -------------------------------------------------------------------------------- /original_u-boot_images/jjplus_jwap230_031115.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/jjplus_jwap230_031115.bin -------------------------------------------------------------------------------- /original_u-boot_images/netgear_wndr4300_v2_120814.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/netgear_wndr4300_v2_120814.bin -------------------------------------------------------------------------------- /original_u-boot_images/openembed_som9331_030114.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/openembed_som9331_030114.bin -------------------------------------------------------------------------------- /original_u-boot_images/p2w_r602n_cpe505n.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/p2w_r602n_cpe505n.bin -------------------------------------------------------------------------------- /original_u-boot_images/philips_hue-bridge-bsb002_v2_220715.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/philips_hue-bridge-bsb002_v2_220715.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr10u_v1_130321.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr10u_v1_130321.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr22u_v1_140123.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr22u_v1_140123.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr3020_v1_130225.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr3020_v1_130225.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr3040_v1_120328.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr3040_v1_120328.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr3040_v2_131121.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr3040_v2_131121.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr3220_v2_130423.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr3220_v2_130423.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr3420_v2_130314.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr3420_v2_130314.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr3420_v3_120617.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr3420_v3_120617.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr6400_v1_160318.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr6400_v1_160318.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-mr6400_v2_170330.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-mr6400_v2_170330.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wa801nd_v2_130121.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wa801nd_v2_130121.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wa830re_v2_121008.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wa830re_v2_121008.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wa850re_v2_160517.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wa850re_v2_160517.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wdr3500_v1_130909.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wdr3500_v1_130909.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wdr3600_v1_130909.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wdr3600_v1_130909.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wdr4300_v1_130617.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wdr4300_v1_130617.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr1043nd_v2_150910.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr1043nd_v2_150910.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr703n_v1_120228.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr703n_v1_120228.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr710n_v1_130419.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr710n_v1_130419.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr740n_v4_130513.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr740n_v4_130513.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr802n_v1_150717.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr802n_v1_150717.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr820n_v1_CN_141014.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr820n_v1_CN_141014.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr841n_v11_150616.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr841n_v11_150616.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr841n_v8_130506.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr841n_v8_130506.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr841n_v9_150210.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr841n_v9_150210.bin -------------------------------------------------------------------------------- /original_u-boot_images/tp-link_tl-wr842n_v3_150921.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/tp-link_tl-wr842n_v3_150921.bin -------------------------------------------------------------------------------- /original_u-boot_images/wallys_dr531_160915.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/wallys_dr531_160915.bin -------------------------------------------------------------------------------- /original_u-boot_images/yuncore_ap90q.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/yuncore_ap90q.bin -------------------------------------------------------------------------------- /original_u-boot_images/yuncore_cpe830.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/yuncore_cpe830.bin -------------------------------------------------------------------------------- /original_u-boot_images/yuncore_cpe870.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/yuncore_cpe870.bin -------------------------------------------------------------------------------- /original_u-boot_images/yuncore_t830.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/original_u-boot_images/yuncore_t830.bin -------------------------------------------------------------------------------- /target_util/u-boot-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/target_util/u-boot-upgrade -------------------------------------------------------------------------------- /u-boot/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/CHANGELOG -------------------------------------------------------------------------------- /u-boot/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/COPYING -------------------------------------------------------------------------------- /u-boot/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/CREDITS -------------------------------------------------------------------------------- /u-boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/Makefile -------------------------------------------------------------------------------- /u-boot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/README -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap121/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap121/Makefile -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap121/ap121.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap121/ap121.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap121/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap121/config.mk -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap121/u-boot-bootstrap.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap121/u-boot-bootstrap.lds -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap121/u-boot.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap121/u-boot.lds -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap143/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap143/Makefile -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap143/ap143.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap143/ap143.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap143/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap143/config.mk -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap143/u-boot-bootstrap.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap143/u-boot-bootstrap.lds -------------------------------------------------------------------------------- /u-boot/board/ar7240/ap143/u-boot.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/ap143/u-boot.lds -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/ar7240_s26_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/ar7240_s26_phy.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/ar7240_s26_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/ar7240_s26_phy.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/athr_s27_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/athr_s27_phy.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/athr_s27_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/athr_s27_phy.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/athrs17_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/athrs17_phy.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/athrs17_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/athrs17_phy.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/athrs27_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/athrs27_phy.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/athrs27_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/athrs27_phy.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/common.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/phy.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/qca-eth-953x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/qca-eth-953x.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/qca-eth-953x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/qca-eth-953x.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/qca-eth-953x_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/qca-eth-953x_phy.h -------------------------------------------------------------------------------- /u-boot/board/ar7240/common/spi_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/common/spi_flash.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/db12x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/db12x/Makefile -------------------------------------------------------------------------------- /u-boot/board/ar7240/db12x/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/db12x/config.mk -------------------------------------------------------------------------------- /u-boot/board/ar7240/db12x/db12x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/db12x/db12x.c -------------------------------------------------------------------------------- /u-boot/board/ar7240/db12x/u-boot-bootstrap.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/db12x/u-boot-bootstrap.lds -------------------------------------------------------------------------------- /u-boot/board/ar7240/db12x/u-boot.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/board/ar7240/db12x/u-boot.lds -------------------------------------------------------------------------------- /u-boot/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/Makefile -------------------------------------------------------------------------------- /u-boot/common/cmd_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_boot.c -------------------------------------------------------------------------------- /u-boot/common/cmd_bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_bootm.c -------------------------------------------------------------------------------- /u-boot/common/cmd_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_custom.c -------------------------------------------------------------------------------- /u-boot/common/cmd_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_flash.c -------------------------------------------------------------------------------- /u-boot/common/cmd_itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_itest.c -------------------------------------------------------------------------------- /u-boot/common/cmd_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_load.c -------------------------------------------------------------------------------- /u-boot/common/cmd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_mem.c -------------------------------------------------------------------------------- /u-boot/common/cmd_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_net.c -------------------------------------------------------------------------------- /u-boot/common/cmd_nvedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_nvedit.c -------------------------------------------------------------------------------- /u-boot/common/cmd_qcaclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_qcaclk.c -------------------------------------------------------------------------------- /u-boot/common/cmd_qcagpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/cmd_qcagpio.c -------------------------------------------------------------------------------- /u-boot/common/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/command.c -------------------------------------------------------------------------------- /u-boot/common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/console.c -------------------------------------------------------------------------------- /u-boot/common/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/crc16.c -------------------------------------------------------------------------------- /u-boot/common/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/devices.c -------------------------------------------------------------------------------- /u-boot/common/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/dlmalloc.c -------------------------------------------------------------------------------- /u-boot/common/env_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/env_common.c -------------------------------------------------------------------------------- /u-boot/common/env_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/env_flash.c -------------------------------------------------------------------------------- /u-boot/common/env_nowhere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/env_nowhere.c -------------------------------------------------------------------------------- /u-boot/common/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/environment.c -------------------------------------------------------------------------------- /u-boot/common/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/exports.c -------------------------------------------------------------------------------- /u-boot/common/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/flash.c -------------------------------------------------------------------------------- /u-boot/common/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/hush.c -------------------------------------------------------------------------------- /u-boot/common/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/lists.c -------------------------------------------------------------------------------- /u-boot/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/main.c -------------------------------------------------------------------------------- /u-boot/common/s_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/s_record.c -------------------------------------------------------------------------------- /u-boot/common/xyzModem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/common/xyzModem.c -------------------------------------------------------------------------------- /u-boot/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/config.mk -------------------------------------------------------------------------------- /u-boot/cpu/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/Makefile -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/Makefile -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ag7240.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ag7240.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ag7240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ag7240.h -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ag7240_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ag7240_phy.h -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ag934x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ag934x.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ag934x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ag934x.h -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ag934x_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ag934x_phy.h -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/ar933x_pll_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/ar933x_pll_init.S -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca95xx_pll_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca95xx_pll_init.S -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_clocks.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_common.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_dram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_dram.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_gpio_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_gpio_init.S -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_hs_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_hs_uart.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_ls_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_ls_uart.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_pci.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_sf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_sf.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/ar7240/qca_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/ar7240/qca_usb.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/cache.S -------------------------------------------------------------------------------- /u-boot/cpu/mips/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/config.mk -------------------------------------------------------------------------------- /u-boot/cpu/mips/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/cpu.c -------------------------------------------------------------------------------- /u-boot/cpu/mips/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/start.S -------------------------------------------------------------------------------- /u-boot/cpu/mips/start_bootstrap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/cpu/mips/start_bootstrap.S -------------------------------------------------------------------------------- /u-boot/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/drivers/Makefile -------------------------------------------------------------------------------- /u-boot/drivers/netconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/drivers/netconsole.c -------------------------------------------------------------------------------- /u-boot/httpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/Makefile -------------------------------------------------------------------------------- /u-boot/httpd/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/fs.c -------------------------------------------------------------------------------- /u-boot/httpd/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/fs.h -------------------------------------------------------------------------------- /u-boot/httpd/fsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/fsdata.h -------------------------------------------------------------------------------- /u-boot/httpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/httpd.c -------------------------------------------------------------------------------- /u-boot/httpd/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/httpd.h -------------------------------------------------------------------------------- /u-boot/httpd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/main.c -------------------------------------------------------------------------------- /u-boot/httpd/tapdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/tapdev.c -------------------------------------------------------------------------------- /u-boot/httpd/tapdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/tapdev.h -------------------------------------------------------------------------------- /u-boot/httpd/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uip.c -------------------------------------------------------------------------------- /u-boot/httpd/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uip.h -------------------------------------------------------------------------------- /u-boot/httpd/uip_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uip_arch.c -------------------------------------------------------------------------------- /u-boot/httpd/uip_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uip_arch.h -------------------------------------------------------------------------------- /u-boot/httpd/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uip_arp.c -------------------------------------------------------------------------------- /u-boot/httpd/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uip_arp.h -------------------------------------------------------------------------------- /u-boot/httpd/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/uipopt.h -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/404.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/art.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/art.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/fail.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/flashing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/flashing.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/index.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/style.css -------------------------------------------------------------------------------- /u-boot/httpd/vendors/SE/uboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/SE/uboot.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/404.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/f.png -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/fail.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/flashing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/flashing.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/index.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/l.png -------------------------------------------------------------------------------- /u-boot/httpd/vendors/dragino/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/dragino/style.css -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/404.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/art.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/art.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/fail.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/flashing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/flashing.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/index.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/style.css -------------------------------------------------------------------------------- /u-boot/httpd/vendors/general/uboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/general/uboot.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/makefsdatac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/makefsdatac -------------------------------------------------------------------------------- /u-boot/httpd/vendors/oem/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/oem/404.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/oem/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/oem/fail.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/oem/flashing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/oem/flashing.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/oem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/oem/index.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/oem/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/oem/style.css -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/404.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/fail.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/flashing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/flashing.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/index.html -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/style.css -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/v.png -------------------------------------------------------------------------------- /u-boot/httpd/vendors/villagetelco/vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/villagetelco/vt.png -------------------------------------------------------------------------------- /u-boot/httpd/vendors/yuicompressor-2.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/httpd/vendors/yuicompressor-2.4.8.jar -------------------------------------------------------------------------------- /u-boot/include/953x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/953x.h -------------------------------------------------------------------------------- /u-boot/include/LzmaWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/LzmaWrapper.h -------------------------------------------------------------------------------- /u-boot/include/ar7240_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/ar7240_soc.h -------------------------------------------------------------------------------- /u-boot/include/ar934x_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/ar934x_soc.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/addrspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/addrspace.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/bitops.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/byteorder.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/cachectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/cachectl.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/cacheops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/cacheops.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/global_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/global_data.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/io.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/isadep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/isadep.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/mipsregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/mipsregs.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/posix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/posix_types.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/processor.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/ptrace.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/reg.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/regdef.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/sgidefs.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/string.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/system.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/types.h -------------------------------------------------------------------------------- /u-boot/include/asm-mips/u-boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/asm-mips/u-boot.h -------------------------------------------------------------------------------- /u-boot/include/atheros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/atheros.h -------------------------------------------------------------------------------- /u-boot/include/cmd_qcaclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/cmd_qcaclk.h -------------------------------------------------------------------------------- /u-boot/include/cmd_qcagpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/cmd_qcagpio.h -------------------------------------------------------------------------------- /u-boot/include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/command.h -------------------------------------------------------------------------------- /u-boot/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/common.h -------------------------------------------------------------------------------- /u-boot/include/configs/ap121.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/configs/ap121.h -------------------------------------------------------------------------------- /u-boot/include/configs/ap143.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/configs/ap143.h -------------------------------------------------------------------------------- /u-boot/include/configs/db12x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/configs/db12x.h -------------------------------------------------------------------------------- /u-boot/include/configs/qca9k_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/configs/qca9k_common.h -------------------------------------------------------------------------------- /u-boot/include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/console.h -------------------------------------------------------------------------------- /u-boot/include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/crc.h -------------------------------------------------------------------------------- /u-boot/include/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/devices.h -------------------------------------------------------------------------------- /u-boot/include/env_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/env_scripts.h -------------------------------------------------------------------------------- /u-boot/include/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/environment.h -------------------------------------------------------------------------------- /u-boot/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/exports.h -------------------------------------------------------------------------------- /u-boot/include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/flash.h -------------------------------------------------------------------------------- /u-boot/include/hush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/hush.h -------------------------------------------------------------------------------- /u-boot/include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/image.h -------------------------------------------------------------------------------- /u-boot/include/ioports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/ioports.h -------------------------------------------------------------------------------- /u-boot/include/jffs2/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/jffs2/jffs2.h -------------------------------------------------------------------------------- /u-boot/include/jffs2/load_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/jffs2/load_kernel.h -------------------------------------------------------------------------------- /u-boot/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/lcd.h -------------------------------------------------------------------------------- /u-boot/include/linux/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/bitops.h -------------------------------------------------------------------------------- /u-boot/include/linux/byteorder/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/byteorder/big_endian.h -------------------------------------------------------------------------------- /u-boot/include/linux/byteorder/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/byteorder/generic.h -------------------------------------------------------------------------------- /u-boot/include/linux/byteorder/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/byteorder/little_endian.h -------------------------------------------------------------------------------- /u-boot/include/linux/byteorder/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/byteorder/swab.h -------------------------------------------------------------------------------- /u-boot/include/linux/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/config.h -------------------------------------------------------------------------------- /u-boot/include/linux/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/ctype.h -------------------------------------------------------------------------------- /u-boot/include/linux/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/list.h -------------------------------------------------------------------------------- /u-boot/include/linux/mtd/mtd-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/mtd/mtd-abi.h -------------------------------------------------------------------------------- /u-boot/include/linux/mtd/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/mtd/mtd.h -------------------------------------------------------------------------------- /u-boot/include/linux/posix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/posix_types.h -------------------------------------------------------------------------------- /u-boot/include/linux/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/stat.h -------------------------------------------------------------------------------- /u-boot/include/linux/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/stddef.h -------------------------------------------------------------------------------- /u-boot/include/linux/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/string.h -------------------------------------------------------------------------------- /u-boot/include/linux/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/time.h -------------------------------------------------------------------------------- /u-boot/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/linux/types.h -------------------------------------------------------------------------------- /u-boot/include/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/lists.h -------------------------------------------------------------------------------- /u-boot/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/malloc.h -------------------------------------------------------------------------------- /u-boot/include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/miiphy.h -------------------------------------------------------------------------------- /u-boot/include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/net.h -------------------------------------------------------------------------------- /u-boot/include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/pci.h -------------------------------------------------------------------------------- /u-boot/include/pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/pci_ids.h -------------------------------------------------------------------------------- /u-boot/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/rtc.h -------------------------------------------------------------------------------- /u-boot/include/s_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/s_record.h -------------------------------------------------------------------------------- /u-boot/include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/serial.h -------------------------------------------------------------------------------- /u-boot/include/soc/ar933x_pll_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/ar933x_pll_init.h -------------------------------------------------------------------------------- /u-boot/include/soc/mtk_soc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/mtk_soc_common.h -------------------------------------------------------------------------------- /u-boot/include/soc/qca95xx_pll_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/qca95xx_pll_init.h -------------------------------------------------------------------------------- /u-boot/include/soc/qca_dram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/qca_dram.h -------------------------------------------------------------------------------- /u-boot/include/soc/qca_pll_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/qca_pll_list.h -------------------------------------------------------------------------------- /u-boot/include/soc/qca_soc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/qca_soc_common.h -------------------------------------------------------------------------------- /u-boot/include/soc/soc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/soc_common.h -------------------------------------------------------------------------------- /u-boot/include/soc/soc_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/soc/soc_list.h -------------------------------------------------------------------------------- /u-boot/include/tinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/tinf.h -------------------------------------------------------------------------------- /u-boot/include/tplink_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/tplink_image.h -------------------------------------------------------------------------------- /u-boot/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/version.h -------------------------------------------------------------------------------- /u-boot/include/xyzModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/include/xyzModem.h -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/LzmaDecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/LzmaDecode.c -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/LzmaDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/LzmaDecode.h -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/LzmaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/LzmaTypes.h -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/LzmaWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/LzmaWrapper.c -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/Makefile -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/bootstrap_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/bootstrap_board.c -------------------------------------------------------------------------------- /u-boot/lib_bootstrap/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_bootstrap/string.c -------------------------------------------------------------------------------- /u-boot/lib_generic/LzmaDecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/LzmaDecode.c -------------------------------------------------------------------------------- /u-boot/lib_generic/LzmaDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/LzmaDecode.h -------------------------------------------------------------------------------- /u-boot/lib_generic/LzmaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/LzmaTypes.h -------------------------------------------------------------------------------- /u-boot/lib_generic/LzmaWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/LzmaWrapper.c -------------------------------------------------------------------------------- /u-boot/lib_generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/Makefile -------------------------------------------------------------------------------- /u-boot/lib_generic/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/crc32.c -------------------------------------------------------------------------------- /u-boot/lib_generic/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/ctype.c -------------------------------------------------------------------------------- /u-boot/lib_generic/display_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/display_options.c -------------------------------------------------------------------------------- /u-boot/lib_generic/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/ldiv.c -------------------------------------------------------------------------------- /u-boot/lib_generic/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/string.c -------------------------------------------------------------------------------- /u-boot/lib_generic/tinfcrc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/tinfcrc32.c -------------------------------------------------------------------------------- /u-boot/lib_generic/tinfgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/tinfgzip.c -------------------------------------------------------------------------------- /u-boot/lib_generic/tinflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/tinflate.c -------------------------------------------------------------------------------- /u-boot/lib_generic/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_generic/vsprintf.c -------------------------------------------------------------------------------- /u-boot/lib_mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_mips/Makefile -------------------------------------------------------------------------------- /u-boot/lib_mips/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_mips/board.c -------------------------------------------------------------------------------- /u-boot/lib_mips/mips_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_mips/mips_linux.c -------------------------------------------------------------------------------- /u-boot/lib_mips/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/lib_mips/time.c -------------------------------------------------------------------------------- /u-boot/mips_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/mips_config.mk -------------------------------------------------------------------------------- /u-boot/mkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/mkconfig -------------------------------------------------------------------------------- /u-boot/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/Makefile -------------------------------------------------------------------------------- /u-boot/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/bootp.c -------------------------------------------------------------------------------- /u-boot/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/bootp.h -------------------------------------------------------------------------------- /u-boot/net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/eth.c -------------------------------------------------------------------------------- /u-boot/net/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/httpd.c -------------------------------------------------------------------------------- /u-boot/net/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/httpd.h -------------------------------------------------------------------------------- /u-boot/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/net.c -------------------------------------------------------------------------------- /u-boot/net/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/nfs.c -------------------------------------------------------------------------------- /u-boot/net/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/nfs.h -------------------------------------------------------------------------------- /u-boot/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/rarp.c -------------------------------------------------------------------------------- /u-boot/net/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/rarp.h -------------------------------------------------------------------------------- /u-boot/net/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/sntp.c -------------------------------------------------------------------------------- /u-boot/net/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/sntp.h -------------------------------------------------------------------------------- /u-boot/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/tftp.c -------------------------------------------------------------------------------- /u-boot/net/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/net/tftp.h -------------------------------------------------------------------------------- /u-boot/rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/rtc/Makefile -------------------------------------------------------------------------------- /u-boot/rtc/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/rtc/date.c -------------------------------------------------------------------------------- /u-boot/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/tools/Makefile -------------------------------------------------------------------------------- /u-boot/tools/envcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/tools/envcrc.c -------------------------------------------------------------------------------- /u-boot/tools/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepe2k/u-boot_mod/HEAD/u-boot/tools/mkimage.c --------------------------------------------------------------------------------