1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 06:01:16 +02:00

Eliminate version string duplication

Corresponding to flashrom svn r659.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
This commit is contained in:
Carl-Daniel Hailfinger
2009-07-22 20:13:00 +00:00
parent fcbdbbc0d4
commit a80cfbc3d7
3 changed files with 4 additions and 2 deletions

View File

@ -30,6 +30,7 @@
#include "flash.h"
#include "flashchips.h"
const char *flashrom_version = FLASHROM_VERSION;
char *chip_to_probe = NULL;
int verbose = 0;
int programmer = PROGRAMMER_INTERNAL;
@ -503,7 +504,7 @@ void usage(const char *name)
void print_version(void)
{
printf("flashrom v%s\n", FLASHROM_VERSION);
printf("flashrom v%s\n", flashrom_version);
}
int main(int argc, char *argv[])