aboutsummaryrefslogtreecommitdiffstats
path: root/src/header.c
blob: d577837f6fd41301bccaddfb2de8df0a614f3e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "project.h"

void header_print(uint8_t *buf)
{
GPT_header *h=(GPT_header *)  buf;


printf ("Signature %c%c%c%c%c%c%c%c\n",
	h->signature[0],
	h->signature[1],
	h->signature[2],
	h->signature[3],
	h->signature[4],
	h->signature[5],
	h->signature[6],
	h->signature[7]);

printf("rev=0x%08x header_size=%d header_crc=0x%08x\n",
	h->revision,h->header_size,h->header_crc);
printf("my_lba=%lld alternate_lba=%lld first_lba=%lld last_lba=%lld\n",
		(long long) h->my_lba, (long long) h->alternate_lba,
		(long long) h->first_usable_lba,(long long) h->last_usable_lba);

printf("guid=%s\n",guid_to_a(h->disk_guid));
printf("partition_entry_lba=%lld n_entries=%d ent_size=%d ents_crc=%08x\n",
	(long long) h->partition_entry_lba, h->n_partition_entries,
	h->partition_entry_size,h->partition_entry_crc);

printf("%x\n",crc32(0,buf,92));
h->header_crc=0;
printf("%x\n",crc32(0,buf,92));
h->partition_entry_crc=0;
printf("%x\n",crc32(0,buf,92));

}