summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/rk27xx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bootloader/rk27xx.c b/bootloader/rk27xx.c
index 4afefebd2d..62280e2749 100644
--- a/bootloader/rk27xx.c
+++ b/bootloader/rk27xx.c
@@ -18,6 +18,7 @@
18#include "file.h" 18#include "file.h"
19#include "crc32-rkw.h" 19#include "crc32-rkw.h"
20#include "rkw-loader.h" 20#include "rkw-loader.h"
21#include "version.h"
21 22
22/* beginning of DRAM */ 23/* beginning of DRAM */
23#define DRAM_ORIG 0x60000000 24#define DRAM_ORIG 0x60000000
@@ -127,6 +128,7 @@ void main(void)
127 else if (boot == of) 128 else if (boot == of)
128 snprintf(filename,sizeof(filename), BOOTDIR "/%s", "BASE.RKW"); 129 snprintf(filename,sizeof(filename), BOOTDIR "/%s", "BASE.RKW");
129 130
131 printf("Bootloader version: %s", RBVERSION);
130 printf("Loading: %s", filename); 132 printf("Loading: %s", filename);
131 133
132 ret = load_rkw(loadbuffer, filename, LOAD_SIZE); 134 ret = load_rkw(loadbuffer, filename, LOAD_SIZE);