summaryrefslogtreecommitdiff
path: root/util/cbfstool/cbfstool.c
diff options
context:
space:
mode:
authorAurelien Guillaume <aurelien@iwi.me>2011-01-13 09:09:21 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2011-01-13 09:09:21 +0000
commitfe7d6b9a4a784f0b92b3c9dc5b6c6070b4c2e10c (patch)
treed4cfb2ab5f100fb49539f60ca7fe5dca876145ba /util/cbfstool/cbfstool.c
parentfb433bea6a886e8c00620bf4c799feae0d6c7072 (diff)
downloadcoreboot-fe7d6b9a4a784f0b92b3c9dc5b6c6070b4c2e10c.tar.xz
Add "cbfstool extract" function.
It dumps everything you ask for, but you might not get what you expect if the file is compressed or otherwise converted (eg. payloads in SELF format). (Originally it would only extract "raw" files. This is a change by me, as filetypes are commonly used to differentiate raw data files --Patrick) Signed-off-by: Aurelien Guillaume <aurelien@iwi.me> Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Acked-by: Patrick Georgi <patrick.georgi@secunet.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6250 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/cbfstool/cbfstool.c')
-rw-r--r--util/cbfstool/cbfstool.c29
1 files changed, 26 insertions, 3 deletions
diff --git a/util/cbfstool/cbfstool.c b/util/cbfstool/cbfstool.c
index e1b9fca58b..507edc255e 100644
--- a/util/cbfstool/cbfstool.c
+++ b/util/cbfstool/cbfstool.c
@@ -29,7 +29,8 @@ typedef enum {
CMD_ADD_STAGE,
CMD_CREATE,
CMD_LOCATE,
- CMD_PRINT
+ CMD_PRINT,
+ CMD_EXTRACT,
} cmd_t;
struct command {
@@ -244,13 +245,34 @@ static int cbfs_print(int argc, char **argv)
return 0;
}
+static int cbfs_extract(int argc, char **argv)
+{
+ char *romname = argv[1];
+ char *cmd = argv[2];
+ void *rom = loadrom(romname);
+
+ if (rom == NULL) {
+ printf("Could not load ROM image '%s'.\n", romname);
+ return 1;
+ }
+
+ if (argc != 5)
+ {
+ printf("Error: you must specify a CBFS name and a file to dump it in.\n");
+ return 1;
+ }
+
+ return extract_file_from_cbfs(romname, argv[3], argv[4]);
+}
+
struct command commands[] = {
{CMD_ADD, "add", cbfs_add},
{CMD_ADD_PAYLOAD, "add-payload", cbfs_add_payload},
{CMD_ADD_STAGE, "add-stage", cbfs_add_stage},
{CMD_CREATE, "create", cbfs_create},
{CMD_LOCATE, "locate", cbfs_locate},
- {CMD_PRINT, "print", cbfs_print}
+ {CMD_PRINT, "print", cbfs_print},
+ {CMD_EXTRACT, "extract", cbfs_extract},
};
void usage(void)
@@ -266,7 +288,8 @@ void usage(void)
" add-stage FILE NAME [COMP] [base] Add a stage to the ROM\n"
" create SIZE BOOTBLOCK [ALIGN] Create a ROM file\n"
" locate FILE NAME ALIGN Find a place for a file of that size\n"
- " print Show the contents of the ROM\n\n"
+ " print Show the contents of the ROM\n"
+ " extract NAME FILE Extracts a raw payload from ROM\n\n"
"TYPEs:\n"
);
print_supported_filetypes();