1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

Flashrom 0.9.0

Corresponding to flashrom svn r454.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
Carl-Daniel Hailfinger 2009-05-04 12:18:10 +00:00
parent 5e410def07
commit 3f8f9b65e2
2 changed files with 3 additions and 5 deletions

View File

@ -38,10 +38,8 @@ OBJS = chipset_enable.o board_enable.o udelay.o jedec.o stm50flw0x0x.o \
all: pciutils dep $(PROGRAM)
# Set the flashrom version string from the highest revision number
# of the checked out flashrom files.
SVNDEF := -D'FLASHROM_VERSION="$(shell svnversion -cn . \
| sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/")"'
# Set the flashrom version string
SVNDEF := -D'FLASHROM_VERSION="0.9.0"'
$(PROGRAM): $(OBJS)
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)

View File

@ -326,7 +326,7 @@ void usage(const char *name)
void print_version(void)
{
printf("flashrom r%s\n", FLASHROM_VERSION);
printf("flashrom v%s\n", FLASHROM_VERSION);
}
int main(int argc, char *argv[])