From 5d236b2bfda7b460e6b970c3b6f6dc539b14020e Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Thu, 27 May 2010 09:41:46 +0000 Subject: Generate C file / header for svn version string It's now easier to force rebuild of files depending on the svn revision version.c/version.h are generated once with new tools/genversion.sh Changes in the VCS are still not auto detected, so you'll have to remove builddir/version.* if you want to change the string in your binaries APPSVERSION is now called RBVERSION and is defined in the generated header instead of being defined by the Makefiles appsversion is now called rbversion (the plugin api number didn't change since old modules are still binary compatible) Change some bootloaders to use knwon-at-buildtime RBVERSION instead of "%s" + rbversion You'll need to run make clean to regenerate dependencies after the removal of apps/version.h To build binaries with a different version string, hand-edit tools/version.sh or tools/genversion.sh (which calls the former) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26320 a1c6a512-1295-4272-9138-f99709370657 --- bootloader/ipodnano2g.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'bootloader/ipodnano2g.c') diff --git a/bootloader/ipodnano2g.c b/bootloader/ipodnano2g.c index 14b5bbce20..b2b2138f78 100644 --- a/bootloader/ipodnano2g.c +++ b/bootloader/ipodnano2g.c @@ -44,6 +44,7 @@ #include "power.h" #include "file.h" #include "common.h" +#include "version.h" /* Safety measure - maximum allowed firmware image size. The largest known current (October 2009) firmware is about 6.2MB so @@ -54,9 +55,6 @@ /* The buffer to load the firmware into - use an uncached alias of 0x08000000 */ unsigned char *loadbuffer = (unsigned char *)0x48000000; -/* Bootloader version */ -char version[] = APPSVERSION; - extern int line; void fatal_error(void) @@ -209,7 +207,7 @@ void main(void) lcd_setfont(FONT_SYSFIXED); printf("Rockbox boot loader"); - printf("Version: %s", version); + printf("Version: " RBVERSION); i = storage_init(); -- cgit v1.2.3