From 202de4f703009fa12d6f4caf9f5377c737a2b82f Mon Sep 17 00:00:00 2001 From: Gareth McMullin Date: Sat, 5 Feb 2011 15:12:24 +1300 Subject: [PATCH] Fixed 'mon version' to show license as GPLv3+. --- src/command.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/command.c b/src/command.c index 66a017e5..26c712eb 100644 --- a/src/command.c +++ b/src/command.c @@ -88,8 +88,9 @@ int command_process(char *cmd) void cmd_version(void) { gdb_out("Black Magic Probe (Firmware 1.5, build " BUILDDATE ")\n"); - gdb_out("Copyright (C) 2010 Black Sphere Technologies\n"); - gdb_out("All rights reserved.\n\n"); + gdb_out("Copyright (C) 2011 Black Sphere Technologies Ltd.\n"); + gdb_out("License GPLv3+: GNU GPL version 3 or later " + "\n\n"); } void cmd_help(void)