1. 程式人生 > >openwrt韌體,串列埠燒寫flash

openwrt韌體,串列埠燒寫flash

原文地址:http://blog.chinaunix.net/uid-25631578-id-4011568.html

AR系列分割槽地址

4M flash的分割槽地址:
分割槽名        起始地址        結束地址         分割槽長度 
uboot        0x9f000000          0x9f020000           0x20000 
firmware         0x9f020000          0x9f3e0000           0x3c0000
art            0x9f3f0000          0x9f3e0000           0x10000

8M flash的分割槽地址:
分割槽名        起始地址        結束地址         分割槽長度 


uboot        0x9f000000          0x9f020000           0x20000 
firmware         0x9f020000          0x9f7e0000           0x7c0000
art            0x9f7f0000          0x9f7e0000           0x10000

1.命令列刷系統

韌體傳至/tmp

  1. cd /tmp
  2. cat /proc/mtd
  3. dev: size erasesize name
  4. mtd0: 00020000 00010000 “u-boot”
  5. mtd1: 000e01c4 00010000 “kernel”
  6. mtd2: 002efe3c 00010000 “rootfs”
  7. mtd3: 00060000 00010000 “rootfs_data”
  8. mtd4:
     00010000 00010000 “art”
  9. mtd5: 003d0000 00010000 “firmware”

從上面的命令可以得知,mtd5是 firmare

#使用mtd更新系統

  1. mtd -r write factory.bin firmware

#使用sysupgrade更新系統,推薦。

  1. sysupgrade factory.bin

2.ttl重新整理程式設計器韌體、fw、uboot、art

4M的:

刷程式設計器韌體:

  1. tftp 0x80000000 full.bin
  2. erase 0x9f000000 +0x400000
  3. cp.b 0x80000000 0x9f000000 0x400000

刷uboot:

  1. tftp 0x80000000 uboot.bin
  2. erase 0x9f000000 +0x20000
  3. cp.b 0x80000000 0x9f000000 0x20000

刷fw:

  1. tftp 0x80000000 fw.bin
  2. erase 0x9f020000 +0x3c0000
  3. cp.b 0x80000000 0x9f020000 0x3c0000

刷art:

  1. tftp 0x80000000 art.bin
  2. erase 0x9f3f0000 +0x10000
  3. cp.b 0x80000000 0x9f3f0000 0x10000

8M的:

刷程式設計器韌體:

  1. tftp 0x80000000 full.bin
  2. erase 0x9f000000 +0x800000
  3. cp.b 0x80000000 0x9f000000 0x800000

刷uboot:

  1. tftp 0x80000000 uboot.bin
  2. erase 0x9f000000 +0x20000
  3. cp.b 0x80000000 0x9f000000 0x20000

刷fw:

  1. tftp 0x80000000 fw.bin
  2. erase 0x9f020000 +0x7c0000
  3. cp.b 0x80000000 0x9f020000 0x7c0000

刷art:

  1. tftp 0x80000000 art.bin
  2. erase 0x9f7f0000 +0x10000
  3. cp.b 0x80000000 0x9f7f0000 0x10000