From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1UPFIE-0007Q7-2r for mharc-grub-devel@gnu.org; Mon, 08 Apr 2013 12:51:42 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPFI3-0007NJ-Gg for grub-devel@gnu.org; Mon, 08 Apr 2013 12:51:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPFHu-00041y-N7 for grub-devel@gnu.org; Mon, 08 Apr 2013 12:51:31 -0400 Received: from mail-ea0-x22f.google.com ([2a00:1450:4013:c01::22f]:38318) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPFHu-00041M-He for grub-devel@gnu.org; Mon, 08 Apr 2013 12:51:22 -0400 Received: by mail-ea0-f175.google.com with SMTP id r16so2383091ead.20 for ; Mon, 08 Apr 2013 09:51:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:x-enigmail-version:content-type; bh=tvlXTVqnE/qhZWFw1H2vTOFqVvzyX0mZm6DJZEaVQqM=; b=yZvo4+mWkTIpOr2OedgRdst+ZjsLTnKKtYOUu8Vb7i5ELzfDEbuuCt8IGSMGcVytNk 4/11h0JoQnKoW7Fiv8n0+LA8iS2tcX08d2cy942/b2PIlywgrol3/C05blpYd0a0lbov t4btWfdRofTqCETaXviGbcLV0X0I7dF5tZfAywE30zd3wUmUodrUeO9E0zn1zhCRNV3T cMNnM6uxPz3RLL/oFY0WWZhUcASGnf2F2nv1nRho1m4MqpuEYcVQZYQO8lnEmZywwSLP Ste3oRFMwb2Ckds8hBAJ/wgWU/GLQbuEHkpQw+mTq6XkMv7FTvVtz+hntn4xND3dqHOn xk7A== X-Received: by 10.14.183.198 with SMTP id q46mr50926769eem.1.1365439881336; Mon, 08 Apr 2013 09:51:21 -0700 (PDT) Received: from debian.x201.phnet (117-235.197-178.cust.bluewin.ch. [178.197.235.117]) by mx.google.com with ESMTPS id cb50sm11387552eeb.14.2013.04.08.09.51.18 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 08 Apr 2013 09:51:20 -0700 (PDT) Message-ID: <5162F583.7010201@gmail.com> Date: Mon, 08 Apr 2013 18:51:15 +0200 From: =?UTF-8?B?VmxhZGltaXIgJ8+GLWNvZGVyL3BoY29kZXInIFNlcmJpbmVua28=?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130116 Icedove/10.0.12 MIME-Version: 1.0 To: The development of GNU GRUB Subject: Re: Linux console corruption when booted with terminal_output=console after rev 4789 (Decrease reported width by one to compensate for cursor algorithm problem.) References: <20130408195128.0e6ad1fe@opensuse.site> <5162F193.1010605@gmail.com> <20130408204007.3e3caa05@opensuse.site> In-Reply-To: <20130408204007.3e3caa05@opensuse.site> X-Enigmail-Version: 1.4.1 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enigFCC7AE4CB8E99EC36006F903" X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c01::22f X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Apr 2013 16:51:39 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigFCC7AE4CB8E99EC36006F903 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 08.04.2013 18:40, Andrey Borzenkov wrote: > =D0=92 Mon, 08 Apr 2013 18:34:27 +0200 > Vladimir '=CF=86-coder/phcoder' Serbinenko =D0=BF=D0= =B8=D1=88=D0=B5=D1=82: >=20 >> On 08.04.2013 17:51, Andrey Borzenkov wrote: >> >>> See http://susepaste.org/75296605 >>> >>> Notice that screen width is reported as 79.=20 >>> >>> This is absolutely reproducible with and without plymouth. >>> >> >> Try this please >> =3D=3D=3D modified file 'grub-core/loader/i386/linux.c' >> --- grub-core/loader/i386/linux.c 2013-03-22 20:01:28 +0000 >> +++ grub-core/loader/i386/linux.c 2013-04-08 16:33:08 +0000 >> @@ -547,6 +547,10 @@ >> linux_params.video_cursor_x =3D pos >> 8; >> linux_params.video_cursor_y =3D pos & 0xff; >> linux_params.video_width =3D grub_term_width (term); >> +#ifdef GRUB_MACHINE_PCBIOS >> + if (grub_strcmp (term->name, "console") =3D=3D 0) >> + linux_params.video_width++; >=20 > This is looks like piling hacks on hacks. What was wrong with my patch?= > Just curious. >=20 Its absence. There was no patch attached to the mail or included in it. Point me to it if I'm missing something. >> +#endif >> linux_params.video_height =3D grub_term_height (term); >> found =3D 1; >> break; >> >> >>> _______________________________________________ >>> Grub-devel mailing list >>> Grub-devel@gnu.org >>> https://lists.gnu.org/mailman/listinfo/grub-devel >>> >> >> >> >=20 >=20 >=20 > _______________________________________________ > Grub-devel mailing list > Grub-devel@gnu.org > https://lists.gnu.org/mailman/listinfo/grub-devel --------------enigFCC7AE4CB8E99EC36006F903 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iF4EAREKAAYFAlFi9YMACgkQNak7dOguQgkbHAEAmyUyZbhaavIBFyOaFI1blvwX ML8ldIxdm8khXaM2f/4A+gNnbZ3yi1P/f11ZKb4qKUcvoq5RYmYFoGasBDdYcnpk =9C1y -----END PGP SIGNATURE----- --------------enigFCC7AE4CB8E99EC36006F903--