4 In the U-Boot Image for the pcs440ep board is a SHA1 checksum integrated.
5 This SHA1 sum is used, to check, if the U-Boot Image in Flash is not
8 The following command is available:
11 sha1 address len [addr] calculate the SHA1 sum [save at addr]
12 -p calculate the SHA1 sum from the U-Boot image in flash and print
13 -c check the U-Boot image in flash
16 calculates and prints the SHA1 sum, from the Image stored in Flash
19 check, if the SHA1 sum from the Image stored in Flash is correct
22 It is possible to calculate a SHA1 checksum from a memoryrange with:
26 If you want to store a new Image in Flash for the pcs440ep board,
27 which has no SHA1 sum, you can do the following:
29 a) cp the new Image on a position in RAM (here 0x300000)
30 (for this example we use the Image from Flash, stored at 0xfffa0000 and
33 "cp.b fffa0000 300000 60000"
35 b) Initialize the SHA1 sum in the Image with 0x00
36 The SHA1 sum is stored in Flash at:
37 CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN + SHA1_SUM_POS
38 for the pcs440ep Flash: 0xfffa0000 + 0x60000 + -0x20
40 for the example in RAM: 0x300000 + 0x60000 + -0x20
43 note: a SHA1 checksum is 20 bytes long.
47 c) now calculate the SHA1 sum from the memoryrange and write
48 the calculated checksum at the right place:
50 "sha1 300000 60000 35ffe0"
52 Now you have a U-Boot-Image for the pcs440ep board with the correct SHA1 sum.
54 If you do a "./MAKEALL pcs440ep" or a "make all" to get the U-Boot image,
55 the correct SHA1 sum will be automagically included in the U-Boot image.
57 Heiko Schocher, 11 Jul 2007