blob: d4e3f20b9eafdb41de9bdc0a390bf2ce0d2fb981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package body HVInfo_Util is
procedure Print_Help is
begin
IO.Put_Line ("hvinfo is a hypervisor detection tool");
IO.Put_Line ("Usage: hvinfo [--help | --version]");
IO.Put_Line ("");
IO.Put_Line (" --help Print this message and exit");
IO.Put_Line (" --version Print version and exit");
end Print_Help;
procedure Print_Version is
begin
IO.Put_Line ("hvinfo " & Config.Version);
IO.Put_Line ("Copyright 2015 Daniil Baturin <daniil@baturin.org>");
IO.Put_Line ("");
IO.Put_Line ("This program is free software, distributed under the terms");
IO.Put_Line ("of the GNU General Public License version 2 or later.");
end Print_Version;
end HVInfo_Util;
|