This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:routers:tp-link:tl-wr703n [2014/01/25 23:17] – [tl-wr703n bridge ap] admin | projects:routers:tp-link:tl-wr703n [2024/09/04 23:12] (current) – [Information and links] admin | ||
---|---|---|---|
Line 2: | Line 2: | ||
* Version 1.6 | * Version 1.6 | ||
+ | This page has some information how to upgrade the ram and flash memory of a TP-LINK TL-WR703N router. | ||
==== Initial installation ==== | ==== Initial installation ==== | ||
Installed via web menu (default username and password are: admin), (following [[http:// | Installed via web menu (default username and password are: admin), (following [[http:// | ||
Line 22: | Line 23: | ||
mtd write openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin firmware | mtd write openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin firmware | ||
reboot | reboot | ||
- | After the reboot all your settings are gone, so repeat steps from above: connect with telnet, set password, and change ip address.\\ | + | After the reboot all your settings are gone, so repeat steps from above: connect with telnet, set password, and change ip address.\\ |
< | < | ||
root@OpenWrt: | root@OpenWrt: | ||
Line 146: | Line 147: | ||
==== Increase ram memory ==== | ==== Increase ram memory ==== | ||
The original ram memory chip (Zentel A3S56D40FTP-G5) has a size of 4MB. To verify this, the free command should give you roughly this amount. To get an exact value, use the following command: | The original ram memory chip (Zentel A3S56D40FTP-G5) has a size of 4MB. To verify this, the free command should give you roughly this amount. To get an exact value, use the following command: | ||
- | | + | |
- | And find this hex number: | + | And find this hex number: |
- | After upgrading the ram memory chip (Micron MT46V32M16P) it should be 16MB in total. The output from dmesg is 0x04000000 which is correctly | + | After upgrading the ram memory chip (Micron MT46V32M16P) it should be 16MB in total. The output from / |
==== Increase flash memory ==== | ==== Increase flash memory ==== | ||
- | Electrically upgrading | + | Before removing |
- | | + | === Backing up u-boot and art partitions === |
+ | Logon to your TL-WR703N | ||
+ | | ||
+ | cat /dev/mtd4 > / | ||
+ | Then exit and copy the two files to your system with: | ||
+ | scp root@IPADDRESS:/tmp/mtd0.0x00000000.backup_u-boot.bin . | ||
+ | scp root@IPADDRESS:/ | ||
+ | While you are at it, also download the newest firmware from openwrt and u-boot which has better support | ||
- | I try to program this chip before soldering it onto the board. | + | === Removing the old flash chip === |
+ | Unsolder the 8-pin flash chip from the back of the board. | ||
+ | * w25q128 (Which has 16MB instead of 4MB) See [[https://forum.openwrt.org/viewtopic.php? | ||
- | For the system to recognize the interface please read more [[software: | + | === Creating a flash binary for the new chip === |
+ | Once done, you can use the following script to build an image for the larger memory. | ||
+ | <code bash> | ||
+ | #!/bin/sh | ||
+ | # This script generates a 16MB flash image for the TL-WR703N | ||
+ | # | ||
+ | # The following files are required: | ||
+ | # | ||
+ | # art partition from issuing on the WR703N: cat /dev/mtd4 > / | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | |||
+ | # u-boot: | ||
+ | uboot_bak=" | ||
+ | uboot_new=" | ||
+ | # firmware: | ||
+ | firmware=" | ||
+ | # art: | ||
+ | art=" | ||
+ | # result file: | ||
+ | | ||
+ | # offsets: | ||
+ | mac=" | ||
+ | model=" | ||
+ | wps=" | ||
+ | |||
+ | if [ ! -f $art ]; then | ||
+ | echo "file $art is not present, quitting." | ||
+ | exit | ||
+ | fi | ||
+ | if [ ! -f $uboot_bak ]; then | ||
+ | echo "file $uboot_bak is not present, quitting." | ||
+ | exit | ||
+ | fi | ||
+ | if [ ! -f $uboot_new ]; then | ||
+ | echo "file $uboot_new is not present, quitting." | ||
+ | exit | ||
+ | fi | ||
+ | if [ ! -f $firmware ]; then | ||
+ | echo "file $firmware is not present, quitting." | ||
+ | exit | ||
+ | fi | ||
+ | echo "This script creates an image ready to flash onto the TL-WR703N..." | ||
+ | # | ||
+ | echo " | ||
+ | rm $outf | ||
+ | dd if=/ | ||
+ | # | ||
+ | echo " | ||
+ | dd if=$uboot_new of=$outf conv=notrunc 2>/ | ||
+ | # FYI: From http:// | ||
+ | # Copy from the original u-boot backup file the MAC address (Offset: 0x0001FC00, 6 bytes) | ||
+ | echo " | ||
+ | dd if=$uboot_bak of=$outf skip=$(($mac)) count=6 seek=$(($mac)) bs=1 conv=notrunc 2>/ | ||
+ | # Copy from the original u-boot backup file the model number (Offset: 0x0001FD00, 8 bytes) | ||
+ | echo " | ||
+ | dd if=$uboot_bak of=$outf skip=$(($model)) count=8 seek=$(($model)) bs=1 conv=notrunc 2>/ | ||
+ | # (For the TL-MR3020 only) Extract from the original u-boot backup file the WPS pin (Offset: 0x0001FE00, 8 bytes) | ||
+ | # dd if=$uboot_bak of=total.img skip=$(($wps)) count=8 seek=$(($wps)) bs=1 conv=notrunc 2>/ | ||
+ | # | ||
+ | echo " | ||
+ | dd if=$art of=$outf obs=16320k seek=1 conv=notrunc 2>/ | ||
+ | # Open the openwrt firmware openwrt-ar71xx-generic-tl-mr3420-v1-squashfs-factory.bin write all data(about 15.75M) as step 2 from 0x000000020000 to the file. | ||
+ | echo " | ||
+ | dd if=$firmware of=$outf obs=128k seek=1 conv=notrunc 2>/ | ||
+ | echo "... Finished writing $outf. You can now flash the file onto a chip." | ||
+ | </ | ||
+ | |||
+ | === Flashing with buspirate === | ||
+ | Use your [[http:// | ||
+ | flashrom -p buspirate_spi: | ||
+ | If ttyUSB0 is not correct, find out with following command which device it should be: | ||
+ | dmesg | grep -A 4 Pirate | grep tty | ||
+ | |||
+ | === Flashing with JTAG === | ||
+ | If you have no buspirate at hand, you can also flash via JTAG. You can use several different JTAG interfaces with flashrom. I tried it with two, an openmoko debug board v3 and a [[http:// | ||
+ | |||
+ | For the system to recognize the interface please read more [[software: | ||
+ | |||
+ | ==== Connecting after flashing ==== | ||
+ | After the chip has been soldered onto the board and powered on, connect with telnet: | ||
+ | telnet 192.168.1.1 | ||
+ | |||
+ | Then set a password for root: | ||
+ | passwd | ||
+ | Now it is possible to connect with ssh: | ||
+ | ssh root@192.168.1.1 | ||
===== Network configurations ===== | ===== Network configurations ===== | ||
* [[http:// | * [[http:// | ||
Line 207: | Line 305: | ||
</ | </ | ||
===== Information and links ===== | ===== Information and links ===== | ||
- | * [[http:// | + | * [[https:// |
* [[http:// | * [[http:// | ||
* [[http:// | * [[http:// |