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

Function cbfs_print_directory

util/cbfstool/cbfs_image.c:1603–1609  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1601}
1602
1603void cbfs_print_directory(struct cbfs_image *image)
1604{
1605 if (cbfs_is_legacy_cbfs(image))
1606 cbfs_print_header_info(image);
1607 printf("%-30s %-10s %-12s Size Comp\n", "Name", "Offset", "Type");
1608 cbfs_legacy_walk(image, cbfs_print_entry_info, NULL);
1609}
1610
1611void cbfs_print_parseable_directory(struct cbfs_image *image)
1612{

Callers 1

cbfs_printFunction · 0.85

Calls 4

cbfs_is_legacy_cbfsFunction · 0.85
cbfs_print_header_infoFunction · 0.85
printfFunction · 0.85
cbfs_legacy_walkFunction · 0.85

Tested by

no test coverage detected