summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2016-06-23 14:40:04 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-06-23 15:12:51 +0200
commit2f3a58e4d6f0cc9b7dd23e4f6af3973389c5d3b4 (patch)
tree4ce2909cc1c3dbac6b59b2c16b0c315fea1ed1f4
parent2e7cd0b76acfdc63bfaa0043c1f9bb93c4045192 (diff)
downloaddrakx-2f3a58e4d6f0cc9b7dd23e4f6af3973389c5d3b4.tar
drakx-2f3a58e4d6f0cc9b7dd23e4f6af3973389c5d3b4.tar.gz
drakx-2f3a58e4d6f0cc9b7dd23e4f6af3973389c5d3b4.tar.bz2
drakx-2f3a58e4d6f0cc9b7dd23e4f6af3973389c5d3b4.tar.xz
drakx-2f3a58e4d6f0cc9b7dd23e4f6af3973389c5d3b4.zip
log if were running under UEFI
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/any.pm1
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 3a0b60d07..11880b9e8 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,5 +1,6 @@
- logs:
o fix found kernel names
+ o log if were running under UEFI
- summary:
o sort service categories, putting "Other" at end (mga#6286)
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index 92b3bcb2f..461cee94b 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -942,6 +942,7 @@ sub log_system_info {
my ($o) = @_;
log::l("second stage install running (", drakx_version($o), ")");
log::l(sprintf("Virtualization=%s", detect_devices::virt_technology()));
+ log::l(sprintf("Is UEFI=%s", bool2yesno(is_uefi())));
}