3 /* Create space for a hash. Currently an MD5 has is used, which is 16 */
4 /* bytes long. however the last 64 bytes are RESERVED for hash related */
7 /* 64 bytes is the size of an MD5 hashing block size. */
10 BYTE(0x00); /* block format */
11 BYTE(0x00); /* Checksum method, 0x00 = MD5 hash */
12 BYTE(0x00); /* Reserved */
13 BYTE(0x00); /* Reserved */
15 /* Fill the last 60 bytes with data, including an empty hash aligned */
17 /* to the last 16 bytes. */
18 FILL(0x00000000); /* Reserved */
20 . = ORIGIN(EXST_HASH) + LENGTH(EXST_HASH) - 16;
21 __md5_hash_address__ = .;
26 . = ORIGIN(EXST_HASH) + LENGTH(EXST_HASH);