Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: [SOLVED] /etc/issue wrap-around on boot (Read 827 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

[SOLVED] /etc/issue wrap-around on boot

I have a minor issue where I'm trying to display ascii art in /etc/issue at agetty.
After I log in and log out, the contents are displayed correctly, but on boot there's a weird wrap-around thing going on where it seems as if agetty isn't using the full width (or length) of the screen.

I had this issue on systemD and OpenRC, so I assume it has something to do with the screen resolution not being fully initialized before agetty is called.
Is there any way to easily fix this so that on boot, the  text can go on for longer before word-wrapping?


On boot agetty:
https://forum.artixlinux.org/index.php?action=dlattach;topic=2554.0;attach=1185;image

After logging in and out agetty:
https://forum.artixlinux.org/index.php?action=dlattach;topic=2554.0;attach=1187;image

Re: /etc/issue wrap-around on boot

Reply #1
What if you delay agetty service startup? Like editing /etc/init.d/agetty and add "after consolefont"?
If that doesn't do the trick, change 'consolefont' to 'local'.


Re: /etc/issue wrap-around on boot

Reply #3
In my experience, modesetting is usually done after udev finishes settling.

 

Re: /etc/issue wrap-around on boot

Reply #4
Thanks so much guys. Changing my config to

Code: [Select]
GRUB_GFXPAYLOAD_LINUX=text

in /etc/default/grub did the trick!