Files
system76-coreboot/util
Hung-Te Lin d173962c6e cbfstool: Store global variables into struct.
cbfstool.c uses lots of global variables for command line options and all named
as "rom*". This may be confusing when other global variables also start with
rom, ex:	int size = rom_size + romsize;
(rom_size is from command line and romsize is the size of last loaded ROM image).

If we pack all rom_* into a struct it may be more clear, ex:
	do_something(param.cbfs_name, param.size, &romsize);

Change-Id: I5a298f4d67e712f90e998bcb70f2a68b8c0db6ac
Signed-off-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-on: http://review.coreboot.org/2195
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2013-01-28 19:59:40 +01:00
..
2012-02-17 19:04:31 +01:00
2012-04-28 02:46:54 +02:00
2012-11-30 23:59:58 +01:00
2010-09-21 21:16:27 +00:00
2012-06-22 09:19:37 +02:00
2013-01-16 09:58:00 +01:00
2012-10-03 09:26:59 +02:00
2012-11-30 23:59:58 +01:00
2013-01-04 00:48:49 +01:00