summaryrefslogtreecommitdiff
path: root/bootloader/telechips.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/telechips.c')
-rw-r--r--bootloader/telechips.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bootloader/telechips.c b/bootloader/telechips.c
index 98f8bebc38..9e9e75c183 100644
--- a/bootloader/telechips.c
+++ b/bootloader/telechips.c
@@ -43,6 +43,7 @@
43#include "power.h" 43#include "power.h"
44#include "file.h" 44#include "file.h"
45#include "common.h" 45#include "common.h"
46#include "version.h"
46 47
47/* Show the Rockbox logo - in show_logo.c */ 48/* Show the Rockbox logo - in show_logo.c */
48extern int show_logo(void); 49extern int show_logo(void);
@@ -50,8 +51,6 @@ extern int show_logo(void);
50/* Address to load main Rockbox image to */ 51/* Address to load main Rockbox image to */
51#define LOAD_ADDRESS 0x20000000 /* DRAM_START */ 52#define LOAD_ADDRESS 0x20000000 /* DRAM_START */
52 53
53char version[] = APPSVERSION;
54
55extern int line; 54extern int line;
56 55
57#define MAX_LOAD_SIZE (8*1024*1024) /* Arbitrary, but plenty. */ 56#define MAX_LOAD_SIZE (8*1024*1024) /* Arbitrary, but plenty. */
@@ -152,7 +151,7 @@ void* main(void)
152 available for loading the firmware. Otherwise display the debug screen. */ 151 available for loading the firmware. Otherwise display the debug screen. */
153#ifdef TCCBOOT 152#ifdef TCCBOOT
154 printf("Rockbox boot loader"); 153 printf("Rockbox boot loader");
155 printf("Version %s", version); 154 printf("Version " RBVERSION);
156 155
157 printf("ATA"); 156 printf("ATA");
158 rc = storage_init(); 157 rc = storage_init();