Hi all
I implemented the following as I didn't like the restriction of choosing or accessing my bios at boot:

sudo clr-boot-manager set-timeout 3
sudo clr-boot-manager update

My question is, just like in NixOS in the boot loader configuration, you can set the console mode to max. How can a similar configuration be applied to the clr Linux kernel or its corresponding grub entry?

I've managed to disable mitigations by setting the kernel parameter successfully, but achieving maximum resolution for the console (systemD) remains elusive

Example like mine in my NixOS:

https://github.com/tolgaerok/nixos-2405-gnome/blob/8817bc75f9617300a771d1b4d5cac39502b6be35/core/boot/efi/efi.nix#L29

Didnt work, and followed as per to the instructions:

sudo clr-boot-manager mount-boot
sudo mkdir -p /boot/efi/
sudo mkdir -p /boot/efi/loader/entries
sudo clr-boot-manager list-kernels
ls /usr/lib/kernel
ls /lib/modules
sudo nano /boot/efi/loader/entries/solus-current.conf
title Solus
linux /usr/lib/kernel/com.solus-project.current.6.8.12-293
initrd /usr/lib/kernel/initrd-com.solus-project.current.6.8.12-293
options root=UUID=745a6698-6370-441f-9f94-fafd699ac04f quiet
sudo nano /boot/efi/loader/loader.conf
timeout 3
default solus-current
console-mode max
editor no
sudo clr-boot-manager update
reboot

ok found this on the live iso in the isolinux.cfg

ui vesamenu.c32
timeout 50
default live

MENU RESOLUTION 1024 768
menu title Solus 4.5 (GNOME)
menu background splash.png
MENU COLOR screen       37;40      #80ffffff #00000000 std
MENU COLOR border       30;44   #40ffffff #a0000000 std
MENU COLOR title        1;36;44 #ffffffff #a0000000 std
MENU COLOR sel          7;37;40 #e0ffffff #20ffffff all
MENU COLOR unsel        37;44   #50ffffff #a0000000 std
MENU COLOR help         37;40   #c0ffffff #a0000000 std
MENU COLOR timeout_msg  37;40   #80ffffff #00000000 std
MENU COLOR timeout      1;37;40 #c0ffffff #00000000 std
MENU COLOR msg07        37;40   #90ffffff #a0000000 std
MENU COLOR tabmsg       31;40   #ffDEDEDE #00000000 std
MENU HIDDEN
MENU HIDDENROW 7
MENU WIDTH 78
MENU MARGIN 15
MENU ROWS 4
MENU VSHIFT 17
MENU HSHIFT 25
MENU TABMSGROW 11

label live
  menu label Start Solus
  kernel /boot/kernel
  append initrd=/boot/initrd.img root=live:CDLABEL=SolusLiveGNOME ro rd.luks=0 rd.md=0 rd.live.overlay.overlayfs=1 quiet splash --
menu default
label live-nomodeset
  menu label Start Solus (nomodeset -- NVIDIA compatibility mode)
  kernel /boot/kernel
  append initrd=/boot/initrd.img root=live:CDLABEL=SolusLiveGNOME ro rd.luks=0 rd.md=0 rd.live.overlay.overlayfs=1 quiet splash nomodeset --
label live-debug
  menu label Start Solus (verbose debugging mode)
  kernel /boot/kernel
  append initrd=/boot/initrd.img root=live:CDLABEL=SolusLiveGNOME ro rd.luks=0 rd.md=0 rd.live.overlay.overlayfs=1 rd.debug rd.live.debug systemd.log_level=debug --
label local
  menu label Boot from local drive
  localboot 0x80

So it is possible but where do i amend the same resolution into my systemd boot menu

Staudey

Ok, these are the steps taken

sudo clr-boot-manager mount-boot

cd /boot/loader

sudo gedit loader.conf

added console-mode max into the loader.conf

so it looks like this:

timeout 3
console-mode max
default Solus-current-6.8.12-293.conf

saved and exit. i didnt execute sudo clr-boot-manager update as that wipes out the extra enteries in loader.conf

At reboot, i got the full resoultion on the systemD boot?

Your thoughts on how to keep this permanent ?

Quick access:

alias boot="sudo clr-boot-manager mount-boot && cd /boot/loader && sudo gedit loader.conf"

console-mode options:

console-mode max
console-mode auto
console-mode 0
console-mode 1
console-mode 2
console-mode keep

    ibm450 I'm afraid it's not currently possible to have clr-boot-manager keep the console-mode automatically. We have a feature request for this here.