From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#39607: Status: GRUB module all_video required to get video on 4K monitor Date: Mon, 24 Feb 2020 09:08:27 -0500 Message-ID: <877e0cf57o.fsf@gmail.com> References: <877e0pj7ax.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:46777) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j6EPv-0000pE-Hq for bug-guix@gnu.org; Mon, 24 Feb 2020 09:09:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j6EPu-0007qj-He for bug-guix@gnu.org; Mon, 24 Feb 2020 09:09:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:47052) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j6EPu-0007q2-D5 for bug-guix@gnu.org; Mon, 24 Feb 2020 09:09:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j6EPu-0000yY-68 for bug-guix@gnu.org; Mon, 24 Feb 2020 09:09:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: bug's message of "Mon\, 24 Feb 2020 14\:04\:27 +0000" List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: bug#39607 <39607@debbugs.gnu.org> Update, after debugging: the failure to find a working video mode had nothing to do with the 4K monitor, and everything to do with a problem in our GRUB configuration generator and having /gnu/store on a Btrfs submodule. In particular, this generated pice of GRUB configuration: --8<---------------cut here---------------start------------->8--- if loadfont /rootfs/gnu/store/m1fx9h7gzw78k0n4da0khbga5i6k8ipk-grub-2.04/share/grub/unicode.pf2; then setup_gfxterm fi --8<---------------cut here---------------end--------------->8--- was causing the setup_gfxterm to not be called due to failing to resolve the unicode.pf2 file when using a Btrfs submodule. The originally attached patches still provide some > simplification/cleanup that would make it good to merge nontheless, I believe! Maxim