bump Linux 3.18 trunk revision to 47027; bump Linux 3.18 kernel version to 3.18.21
[ps3openwrt_patches.git] / 0150-kexec-tools-purgatory-print-sha256-regions.patch
bloba0a256c46521efbb55460b35f5620b65430d1730
1 --- a/purgatory/purgatory.c 2011-10-03 00:56:38.000000000 +0200
2 +++ b/purgatory/purgatory.c 2013-02-16 12:34:57.527254020 +0100
3 @@ -34,6 +34,13 @@ int verify_sha256_digest(void)
4 printf("%hhx ", sha256_digest[i]);
6 printf("\n");
8 + printf("sha256_regions:\n");
9 + for(ptr = sha256_regions; ptr < end; ptr++) {
10 + if (ptr->len == 0)
11 + continue;
12 + printf("start=0x%lx len=0x%lx\n", ptr->start, ptr->len);
13 + }
14 return 1;
16 return 0;