Author: stepan Date: 2006-10-07 02:23:51 +0200 (Sat, 07 Oct 2006) New Revision: 2449
Modified: trunk/LinuxBIOSv2/util/flashrom/flash_rom.c Log: Tiny patch to show the size of the detected flash part from Uwe Hermann uwe@hermann-uwe.de X-Signed-Off-By: Stefan Reinauer stepan@coresystems.de
Modified: trunk/LinuxBIOSv2/util/flashrom/flash_rom.c =================================================================== --- trunk/LinuxBIOSv2/util/flashrom/flash_rom.c 2006-10-07 00:21:13 UTC (rev 2448) +++ trunk/LinuxBIOSv2/util/flashrom/flash_rom.c 2006-10-07 00:23:51 UTC (rev 2449) @@ -298,7 +298,7 @@ exit(1); }
- printf("Flash part is %s\n", flash->name); + printf("Flash part is %s (%d KB)\n", flash->name, flash->total_size);
if (!filename && !erase_it) { // FIXME: Do we really want this feature implicitly?