See attached. Thanks, Ward.
-- Ward Vandewege <[email protected]> Free Software Foundation - Senior Systems Administrator
The cbfstool print command should pretty-print the type of components that are type 'deleted'. Signed-off-by: Ward Vandewege <[email protected]> Index: print.c =================================================================== --- print.c (revision 4283) +++ print.c (working copy) @@ -57,6 +57,9 @@ case CBFS_COMPONENT_NULL: strcpy(type, "free"); break; + case CBFS_COMPONENT_DELETED: + strcpy(type, "deleted"); + break; default: sprintf(type, "0x%8.8x", htonl(c->type)); break;
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

