Thomas Renninger
9d964488e1
Flashrom gets splitted out into a seperate package (new package accepted via submitrequest #56361) - would be great to see in openSUSE 11.4 soon OBS-URL: https://build.opensuse.org/request/show/55464 OBS-URL: https://build.opensuse.org/package/show/hardware/coreboot-utils?expand=0&rev=11
30 lines
710 B
Diff
30 lines
710 B
Diff
--- a/nvramtool/common.c
|
|
+++ b/nvramtool/common.c
|
|
@@ -34,7 +34,7 @@
|
|
const char prog_name[] = "nvramtool";
|
|
|
|
/* version of this program */
|
|
-const char prog_version[] = "2.1";
|
|
+const char prog_version[] = "2.1 (r" NVRAMTOOL_REVISION ")";
|
|
|
|
/****************************************************************************
|
|
* get_line_from_file
|
|
--- a/nvramtool/Makefile
|
|
+++ b/nvramtool/Makefile
|
|
@@ -20,10 +20,15 @@
|
|
|
|
all: dep $(PROGRAM)
|
|
|
|
+SVNDEF := -D'NVRAMTOOL_REVISION="$(shell basename `cd ..;pwd`|cut -c17-)"'
|
|
+
|
|
$(PROGRAM): $(OBJS)
|
|
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
|
|
$(STRIP) $(STRIP_ARGS) $(PROGRAM)
|
|
|
|
+common.o: common.c
|
|
+ $(CC) -c $(CFLAGS) $(SVNDEF) $< -o $@
|
|
+
|
|
clean:
|
|
rm -f $(PROGRAM) *.o
|
|
|