summaryrefslogtreecommitdiffstats
path: root/bootloader/nwz_linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/nwz_linux.c')
-rw-r--r--bootloader/nwz_linux.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/bootloader/nwz_linux.c b/bootloader/nwz_linux.c
index cac9909d2d..7b0ab5b9f1 100644
--- a/bootloader/nwz_linux.c
+++ b/bootloader/nwz_linux.c
@@ -44,6 +44,7 @@
#include <dirent.h>
#include <sys/wait.h>
#include <stdarg.h>
+#include "version.h"
/* all images must have the following size */
#define ICON_WIDTH 130
@@ -470,6 +471,11 @@ int main(int argc, char **argv)
dup2(fd, fileno(stderr));
close(fd);
}
+ /* print version */
+ printf("Rockbox boot loader\n");
+ printf("Version: %s\n", rbversion);
+ printf("%s\n", MODEL_NAME);
+
system_init();
core_allocator_init();
kernel_init();