diff options
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/rk27xx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootloader/rk27xx.c b/bootloader/rk27xx.c index 4afefeb..62280e2 100644 --- a/bootloader/rk27xx.c +++ b/bootloader/rk27xx.c @@ -18,6 +18,7 @@ #include "file.h" #include "crc32-rkw.h" #include "rkw-loader.h" +#include "version.h" /* beginning of DRAM */ #define DRAM_ORIG 0x60000000 @@ -127,6 +128,7 @@ void main(void) else if (boot == of) snprintf(filename,sizeof(filename), BOOTDIR "/%s", "BASE.RKW"); + printf("Bootloader version: %s", RBVERSION); printf("Loading: %s", filename); ret = load_rkw(loadbuffer, filename, LOAD_SIZE); |