summaryrefslogtreecommitdiff
path: root/bootloader/main-pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/main-pp.c')
-rw-r--r--bootloader/main-pp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index 4f1fe2a4e1..37f42eda43 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -39,6 +39,7 @@
39#include "crc32-mi4.h" 39#include "crc32-mi4.h"
40#include <string.h> 40#include <string.h>
41#include "power.h" 41#include "power.h"
42#include "version.h"
42#if defined(SANSA_E200) || defined(PHILIPS_SA9200) 43#if defined(SANSA_E200) || defined(PHILIPS_SA9200)
43#include "i2c.h" 44#include "i2c.h"
44#include "backlight-target.h" 45#include "backlight-target.h"
@@ -95,9 +96,6 @@ extern int show_logo(void);
95/* A buffer to load the original firmware or Rockbox into */ 96/* A buffer to load the original firmware or Rockbox into */
96unsigned char *loadbuffer = (unsigned char *)DRAM_START; 97unsigned char *loadbuffer = (unsigned char *)DRAM_START;
97 98
98/* Bootloader version */
99char version[] = APPSVERSION;
100
101/* Locations and sizes in hidden partition on Sansa */ 99/* Locations and sizes in hidden partition on Sansa */
102#if (CONFIG_STORAGE & STORAGE_SD) 100#if (CONFIG_STORAGE & STORAGE_SD)
103#define PPMI_SECTOR_OFFSET 1024 101#define PPMI_SECTOR_OFFSET 1024
@@ -525,7 +523,7 @@ void* main(void)
525 lcd_setfont(FONT_SYSFIXED); 523 lcd_setfont(FONT_SYSFIXED);
526 524
527 printf("Rockbox boot loader"); 525 printf("Rockbox boot loader");
528 printf("Version: %s", version); 526 printf("Version: " RBVERSION);
529 printf(MODEL_NAME); 527 printf(MODEL_NAME);
530 528
531 i=storage_init(); 529 i=storage_init();