MCPcopy Create free account
hub / github.com/coreboot/coreboot / dump_oem

Function dump_oem

util/ifdtool/ifdtool.c:1006–1017  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1004}
1005
1006static void dump_oem(const uint8_t *oem)
1007{
1008 int i, j;
1009 printf("OEM Section:\n");
1010 for (i = 0; i < 4; i++) {
1011 printf("%02x:", i << 4);
1012 for (j = 0; j < 16; j++)
1013 printf(" %02x", oem[(i << 4) + j]);
1014 printf("\n");
1015 }
1016 printf("\n");
1017}
1018
1019static void dump_fd(char *image, int size)
1020{

Callers 1

dump_fdFunction · 0.85

Calls 1

printfFunction · 0.85

Tested by

no test coverage detected