You are not logged in.

#1 2018-06-22 23:50:27

CarterCox
Member
From: Argentina
Registered: 2018-02-24
Posts: 116

[SOLVED]What happened to GRUB's resolution?

GRUB used to have a high resolution, now it has gone down to a very low one, and I haven't made any changes in my system. Modyfing the settings in /etc/default/grub doesn't do a thing.

Maybe it's the video drivers (I'm using modesetting, not Intel)?
Is anyone experiencing the same thing?

Last edited by CarterCox (2018-06-24 13:22:51)


And neither the angels in Heaven above
   Nor the demons down under the sea
Can ever dissever my soul from the soul
   Of the beautiful Annabel Lee;

Offline

#2 2018-06-22 23:57:02

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,523
Website

Re: [SOLVED]What happened to GRUB's resolution?

CarterCox wrote:

Maybe it's the video drivers (I'm using modesetting, not Intel)?

I don't use GRUB, so I can't say much, but I can promise you your Xorg drivers don't have anything at all to do with your boot loader.


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#3 2018-06-22 23:57:44

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: [SOLVED]What happened to GRUB's resolution?

CarterCox wrote:

Maybe it's the video drivers (I'm using modesetting, not Intel)?

GRUB does not use modesetting or intel as it runs before the kernel or and kernel or X driver are loaded.
If you did not update grub or its config then how could it change?  Or is the resolution you are referring to something after linux is started?

Offline

#4 2018-06-23 00:06:54

CarterCox
Member
From: Argentina
Registered: 2018-02-24
Posts: 116

Re: [SOLVED]What happened to GRUB's resolution?

@Trillby: Yes, I thought so. Thanks.

@loqs: I didn't change anything. In fact, when actually changing, it ignores my settings.
The package was updated 2 days ago. Maybe it has something to do with that.
This is what I mean:

IMG_20180622_210548_1.jpg

The fonts and everything used to be smaller and better-looking.

Last edited by CarterCox (2018-06-23 00:07:22)


And neither the angels in Heaven above
   Nor the demons down under the sea
Can ever dissever my soul from the soul
   Of the beautiful Annabel Lee;

Offline

#5 2018-06-23 05:49:09

ABOhiccups
Member
Registered: 2017-08-27
Posts: 97

Re: [SOLVED]What happened to GRUB's resolution?

I have the same problem too. Which means I can't use my own Custom Image for Grub.

Offline

#6 2018-06-23 07:16:54

seth
Member
Registered: 2012-09-03
Posts: 51,056

Re: [SOLVED]What happened to GRUB's resolution?

Looks like a disabled framebuffer.
Please paste /boot/grub/grub.cfg and error/debug messages from a grub-mkconfig run.

Offline

#7 2018-06-23 10:53:47

CarterCox
Member
From: Argentina
Registered: 2018-02-24
Posts: 116

Re: [SOLVED]What happened to GRUB's resolution?

No errors when generating grub.cfg:

insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

set menu_color_normal=white/black
set menu_color_highlight=light-cyan/black

if loadfont unicode ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=1
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=1
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-2a0a766b-1271-4129-ac91-8b9de7fd9c9e' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  7c80f5a7-a585-4398-943d-aee1fd1aea03
	else
	  search --no-floppy --fs-uuid --set=root 7c80f5a7-a585-4398-943d-aee1fd1aea03
	fi
	echo	'Loading Linux linux-zen ...'
	linux	/vmlinuz-linux-zen root=UUID=2a0a766b-1271-4129-ac91-8b9de7fd9c9e rw  quiet loglevel=3 fbcon=scrollback:1000k
	echo	'Loading initial ramdisk ...'
	initrd	/intel-ucode.img /initramfs-linux-zen.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-2a0a766b-1271-4129-ac91-8b9de7fd9c9e' {
	menuentry 'Arch Linux, with Linux linux-zen' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-zen-advanced-2a0a766b-1271-4129-ac91-8b9de7fd9c9e' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  7c80f5a7-a585-4398-943d-aee1fd1aea03
		else
		  search --no-floppy --fs-uuid --set=root 7c80f5a7-a585-4398-943d-aee1fd1aea03
		fi
		echo	'Loading Linux linux-zen ...'
		linux	/vmlinuz-linux-zen root=UUID=2a0a766b-1271-4129-ac91-8b9de7fd9c9e rw  quiet loglevel=3 fbcon=scrollback:1000k
		echo	'Loading initial ramdisk ...'
		initrd	/intel-ucode.img /initramfs-linux-zen.img
	}
	menuentry 'Arch Linux, with Linux linux-zen (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-zen-fallback-2a0a766b-1271-4129-ac91-8b9de7fd9c9e' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  7c80f5a7-a585-4398-943d-aee1fd1aea03
		else
		  search --no-floppy --fs-uuid --set=root 7c80f5a7-a585-4398-943d-aee1fd1aea03
		fi
		echo	'Loading Linux linux-zen ...'
		linux	/vmlinuz-linux-zen root=UUID=2a0a766b-1271-4129-ac91-8b9de7fd9c9e rw  quiet loglevel=3 fbcon=scrollback:1000k
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-zen-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

Output of command (including errors):

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux-zen
Found initrd image: /boot/intel-ucode.img /boot/initramfs-linux-zen.img
Found fallback initrd image(s) in /boot: initramfs-linux-zen-fallback.img
done

And neither the angels in Heaven above
   Nor the demons down under the sea
Can ever dissever my soul from the soul
   Of the beautiful Annabel Lee;

Offline

#8 2018-06-23 12:10:55

seth
Member
Registered: 2012-09-03
Posts: 51,056

Re: [SOLVED]What happened to GRUB's resolution?

Tries to set gfxterm,  missing module/font?

ls -lR /boot/grub

Otherwise try to pre-load all_video and gfxterm.

Offline

#9 2018-06-23 17:46:54

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: [SOLVED]What happened to GRUB's resolution?

Offline

#10 2018-06-23 18:59:01

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: [SOLVED]What happened to GRUB's resolution?

Related or unrelated - I am unable to display grub in a high resolution booting with an nvidia GT 1030.  If I boot using the on board graphics, grub is displayed in a high res. mode.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#11 2018-06-24 13:22:38

CarterCox
Member
From: Argentina
Registered: 2018-02-24
Posts: 116

Re: [SOLVED]What happened to GRUB's resolution?

This seems to be what I mean. It's probably related to the update on June 20.

We'll have to wait and see what happens.

Thanks!


And neither the angels in Heaven above
   Nor the demons down under the sea
Can ever dissever my soul from the soul
   Of the beautiful Annabel Lee;

Offline

Board footer

Powered by FluxBB