diff options
Diffstat (limited to 'bootloader/telechips.c')
| -rw-r--r-- | bootloader/telechips.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c index 98f8beb..9e9e75c 100644 --- a/bootloader/telechips.c +++ b/bootloader/telechips.c @@ -43,6 +43,7 @@ #include "power.h" #include "file.h" #include "common.h" +#include "version.h" /* Show the Rockbox logo - in show_logo.c */ extern int show_logo(void); @@ -50,8 +51,6 @@ extern int show_logo(void); /* Address to load main Rockbox image to */ #define LOAD_ADDRESS 0x20000000 /* DRAM_START */ -char version[] = APPSVERSION; - extern int line; #define MAX_LOAD_SIZE (8*1024*1024) /* Arbitrary, but plenty. */ @@ -152,7 +151,7 @@ void* main(void) available for loading the firmware. Otherwise display the debug screen. */ #ifdef TCCBOOT printf("Rockbox boot loader"); - printf("Version %s", version); + printf("Version " RBVERSION); printf("ATA"); rc = storage_init(); |