logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git
commit: 88ec033ced9bae763f48bbad4d3cb99e7c212a7b
parent 95f88122fd3bb4d026569f578e88c9b170944cea
Author: Michael Forney <mforney@mforney.org>
Date:   Sat,  6 Jun 2020 13:24:37 -0700

vis: Fix terminal UI on serial console

Diffstat:

Apkg/vis/patch/0002-Fix-terminal-UI-on-serial-console.patch34++++++++++++++++++++++++++++++++++
Mpkg/vis/ver2+-
2 files changed, 35 insertions(+), 1 deletion(-)

diff --git a/pkg/vis/patch/0002-Fix-terminal-UI-on-serial-console.patch b/pkg/vis/patch/0002-Fix-terminal-UI-on-serial-console.patch @@ -0,0 +1,34 @@ +From c2889016484ea3c36ed04228c3ce0df549260273 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= <mat@brain-dump.org> +Date: Sat, 6 Jun 2020 13:20:43 -0700 +Subject: [PATCH] Fix terminal UI on serial console + +--- + ui-terminal.c | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/ui-terminal.c b/ui-terminal.c +index c862f63..9cdfd7e 100644 +--- a/ui-terminal.c ++++ b/ui-terminal.c +@@ -371,13 +371,13 @@ static void ui_resize(Ui *ui) { + int width = 80, height = 24; + + if (ioctl(STDERR_FILENO, TIOCGWINSZ, &ws) != -1) { +- width = ws.ws_col; +- height = ws.ws_row; ++ if (ws.ws_col > 0) ++ width = ws.ws_col; ++ if (ws.ws_row > 0) ++ height = ws.ws_row; + } + +- width = MAX(width, 1); + width = MIN(width, MAX_WIDTH); +- height = MAX(height, 1); + height = MIN(height, MAX_HEIGHT); + if (!ui_term_backend_resize(tui, width, height)) + return; +-- +2.27.0 + diff --git a/pkg/vis/ver b/pkg/vis/ver @@ -1 +1 @@ -0.5-191-g7648280 r0 +0.5-191-g7648280 r1