diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2020-02-29 15:04:30 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2020-02-29 15:04:30 +0000 |
commit | 406323ad9ded85a7bd1c729052353602b883931a (patch) | |
tree | 714e77744c9f988ea2daf30d6e027260b689f85d | |
parent | e8f3026f210a8de175242658304c8fe83729cf5a (diff) | |
download | drakx-406323ad9ded85a7bd1c729052353602b883931a.tar drakx-406323ad9ded85a7bd1c729052353602b883931a.tar.gz drakx-406323ad9ded85a7bd1c729052353602b883931a.tar.bz2 drakx-406323ad9ded85a7bd1c729052353602b883931a.tar.xz drakx-406323ad9ded85a7bd1c729052353602b883931a.zip |
installer: write ISO date to installer log
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/install2.pm | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ced94a4c5..a86bd9668 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- write ISO date to installer log - partitioning: o make reformating nilfs2 fses to work - sync list for modules needing firmware with kernel 5.5 diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index bd037cf04..d6712b1bc 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -693,6 +693,8 @@ sub main { $o->{stage2_phys_medium} = install::media::stage2_phys_medium($o->{method}); + log::l('ISO date: ' . cat_('/tmp/media/DATE.txt')) if -e '/tmp/media/DATE.txt'; + install::any::log_system_info($o); eval { touch('/root/non-chrooted-marker.DrakX') }; #- helps distinguishing /root and /mnt/root when we don't know if we are chrooted |