source: tt-loader/commands.txt @ 11

Last change on this file since 11 was 11, checked in by guillaume, 16 years ago

Publication tt-loader v0.1

File size: 1.6 KB
RevLine 
[11]1//////// X-LOAD
2// Load x-load in the phone
3a 0x20010000
4// Check README to generate x-load.bin
5f x-load.bin
6
7// Boot with x-load
8a 0x20010c00
9b
10
11end
12/////////////////////////////////////////////////////////////////// X-LOAD END
13
14/////////////////////////////////////////////////////////////////// U-BOOT
15// Send an address
16a 0x20010000
17// Load a file in phone memory at the previous given address
18f x-load.bin
19
20// Call a sub from x-load.bin: TT BoardInit (should only work with TT)
21a 0x20010da4
22c
23
24// Load another program to a new address, check README to generate u-boot.bin
25a 0x10280000
26f u-boot.bin
27
28// Send an address and dump the content to check upload has been done
29a 0x10299a50
30M;M;M;M;M;M;M;M
31
32// Send u-boot start address and boot there
33a 0x10280000
34b
35
36end
37/////////////////////////////////////////////////////////////////// U-BOOT END
38
39/////////////////////////////////////////////////////////////////// DUMP MEM
40// Send an address
41a 0x20000000
42
43// Dump 8kB from that address
44M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 512 octets
45M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 1ko
46M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
47M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 2ko
48M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
49M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 3ko
50M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
51M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 4ko
52M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
53M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 5ko
54M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
55M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 6ko
56M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
57M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 7ko
58M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M //
59M;M;M;M;M;M;M;M;M;M;M;M;M;M;M;M // 8ko
60
61end
62/////////////////////////////////////////////////////////////////// DUMP MEM END
63
64
Note: See TracBrowser for help on using the repository browser.