NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: install/58288 10.0 (final) sysinst terminated after "Window too short..." message on a EFI netbook EeePC
The following reply was made to PR install/58288; it has been noted by GNATS.
From: Valery Ushakov <uwe%stderr.spb.ru@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: install/58288 10.0 (final) sysinst terminated after "Window too
short..." message on a EFI netbook EeePC
Date: Sun, 25 May 2025 20:38:32 +0300
> sysinst: failed to allocate output window
It seems curses is confused about the terminal size. Parts of it
think it's height is 40 (from stty), parts of it think it's 24 (from
the 80x24 default).
subwin: (0x7c07f69fd300, 36, 80, 4, 0, 0)
subwin: orig 0@0..24@80
subwin: maxy = 36 (nlines)
subwin: maxx = 80 (ncols)
by 4 + maxy 36 > orig->maxy 24 + orig->begy 0
With stty rows 0 cols 0 it probably just works consistently in the
default 24x80 and everything works out.
-uwe
Home |
Main Index |
Thread Index |
Old Index