I would like to get back the messages on boot up after grub
I guess some time ago I removed this and can't find a way to get it back
thanks

You mean you don't see it on the screen? Disable CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER and you should be able to see it.jms.gentoo wrote:hi,
I would like to get back the messages on boot up after grub
I guess some time ago I removed this and can't find a way to get it back :roll:
thanks

yeslogrusx wrote: You mean you don't see it on the screen?
It's not enabledlogrusx wrote: Disable CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER and you should be able to see it.

Code: Select all
c1:12345:respawn:/sbin/agetty --noclear 38400 tty1 linux


Hu wrote:OP: please describe the problem in more detail.
Which of the following statements disagrees with your current system?.
yesHu wrote: [*]When you power on the system, the firmware transfers control to grub.
yesHu wrote: [*]Grub prints its menu.
yesHu wrote: [*]Grub transfers control to Linux.
well once gub transfere message to linuxHu wrote: [*]Linux prints messages from the kernel as it initializes
Code: Select all
Loading Linux x.y.z
Loading initial ramdisk ...
onlyHu wrote: [*]When kernel initialization completes, all kernel messages remain on screen. The screen is not explicitly cleared, so only messages that scroll out due to new activity become unreachable.
Code: Select all
Loading Linux x.y.z
Loading initial ramdisk ...
Hu wrote:[*]Messages from the initramfs or system init scripts begin to appear.
Code: Select all
Loading Linux x.y.z
Loading initial ramdisk ...
it's straight to KDMHu wrote:[*]Init script messages remain on screen when the login prompt appears.

Code: Select all
loginctl
SESSION UID USER SEAT TTY
1 1000 jms seat0 tty2
Code: Select all
env | grep "XDG"
XDG_CACHE_HOME=/tmp/jms/.cache
XDG_CONFIG_DIRS=/home/jms/.config/kdedefaults:/etc/xdg
XDG_CURRENT_DESKTOP=KDE
XDG_DATA_DIRS=/usr/local/share:/usr/share:/etc/eselect/wine/share
XDG_RUNTIME_DIR=/run/user/1000
XDG_SEAT=seat0
XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
XDG_SESSION_CLASS=user
XDG_SESSION_ID=1
XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1
XDG_SESSION_TYPE=x11
XDG_VTNR=2
Code: Select all
Loading Linux x.y.z
Loading initial ramdisk ...

Code: Select all
$ grep FRAMEB .config
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
$ grep FB .config
# CONFIG_NET_SCH_SFB is not set
CONFIG_SYSFB=y
# CONFIG_SYSFB_SIMPLEFB is not set
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
CONFIG_FB_VESA=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SM712 is not set
# CONFIG_CRYPTO_CFB is not set
# CONFIG_CRYPTO_OFB is not set

Code: Select all
Loading Linux x.y.z
Loading initial ramdisk ... Code: Select all
lspci -nnk
noszatox wrote:Is there "quiet" somewhere in kernel's boot command line?
thanksfigueroa wrote:Perhaps you can clean something useful from selected portions of my .config
yes I believe it will be very fast now, but I somewhat miss to see the penguin logo , green messages, fsck ...It's really too fast. The only thing that count for me is to be able to see if there is only green messages or if some are red

Code: Select all
26:00.0 VGA compatible controller [0300]: NVIDIA Corporation GP107 [GeForce GTX 1050] [10de:1c81] (rev a1)
Subsystem: Gigabyte Technology Co., Ltd GP107 [GeForce GTX 1050] [1458:3766]
Kernel driver in use: nvidia
Kernel modules: nvidia_drm, nvidiaCode: Select all
CONFIG_SYSFB=y
CONFIG_SYSFB_SIMPLEFB=yCode: Select all
CONFIG_FB_VESA=y
CONFIG_FB_EFI=yCode: Select all
28:00.1 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse Cryptographic Coprocessor PSPCPP [1022:1486]Code: Select all
CONFIG_CRYPTO_DEV_CCP=y
CONFIG_CRYPTO_DEV_CCP_DD=yCode: Select all
# CONFIG_CRYPTO_DEV_CCP is not set
Thank you very muchNeddySeagoon wrote: That's an nVidia card using the binary blob driver.
Its the only DRM driver that does not provide a console at no extra charge.
Turn offCode: Select all
CONFIG_SYSFB=y CONFIG_SYSFB_SIMPLEFB=y
