summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2011-12-22 22:09:04 +0000
committerPascal Terjan <pterjan@mageia.org>2011-12-22 22:09:04 +0000
commit96372954857a21ecf264d061ce02f90171a5ad0d (patch)
treef3a7cefb690598d0747f297cb8d521f0149b8587
parent59636a1db53aaf18f35fcfc929e93bf01964dda5 (diff)
downloaddrakx-backup-do-not-use-96372954857a21ecf264d061ce02f90171a5ad0d.tar
drakx-backup-do-not-use-96372954857a21ecf264d061ce02f90171a5ad0d.tar.gz
drakx-backup-do-not-use-96372954857a21ecf264d061ce02f90171a5ad0d.tar.bz2
drakx-backup-do-not-use-96372954857a21ecf264d061ce02f90171a5ad0d.tar.xz
drakx-backup-do-not-use-96372954857a21ecf264d061ce02f90171a5ad0d.zip
interactive::curses: default to 80x25 (fixes serial)
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/interactive/curses.pm7
3 files changed, 9 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index f00282d8a..57a973d08 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -3,6 +3,7 @@
device" choice
o display partition labels when adding a foreign OS
- harddrake: fix missing names (mga#3745)
+- interactive::curses: default to 80x25 (fixes serial)
Version 13.72.1 - 11 December 2011
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index dbe309d24..1ebbb3578 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,7 @@
- do not hardcode systemd default through kernel command line, it
should be easily overridable by just picking the proper init package
- include xfs_freeze (needed for setup grub on XFS, mga#1536)
+- interactive::curses: default to 80x25 (fixes serial)
Version 13.73 - 11 December 2011
diff --git a/perl-install/interactive/curses.pm b/perl-install/interactive/curses.pm
index cdcb6fe7f..2015c38de 100644
--- a/perl-install/interactive/curses.pm
+++ b/perl-install/interactive/curses.pm
@@ -32,6 +32,13 @@ sub new {
open STDERR, ">", common::secured_file($stderr_file);
$cui ||= Curses::UI->new('-color_support' => 1);
+
+ # Set some default terminal size, for serial install
+ unless ($cui->{-width}) {
+ $cui->{-width} = $cui->{-w} = $cui->{-bw} = 80;
+ $cui->{-height} = $cui->{-h} = $cui->{-bh} = 25;
+ }
+
bless { cui => $cui }, $class;
}