# HG changeset patch # User Mychaela Falconia # Date 1493574160 0 # Node ID 06c629b349037574651248348660ea028d6aea60 # Parent dbb54db721d1dfe7459f5f41c2c7bf1fb6f41461 target-utils/flash-boot-test/main.c: indicate the mode/version in the banner diff -r dbb54db721d1 -r 06c629b34903 target-utils/flash-boot-test/main.c --- a/target-utils/flash-boot-test/main.c Sun Apr 30 17:40:26 2017 +0000 +++ b/target-utils/flash-boot-test/main.c Sun Apr 30 17:42:40 2017 +0000 @@ -1,6 +1,11 @@ +#include "types.h" + +extern const u32 _Magic_words[2]; + main() { - printf("\nFlash boot test program running\n"); + printf("\nFlash boot test program running (mode %u)\n", + _Magic_words[0]); for (;;) { putchar('='); if (command_entry())