Hi,
I want to hide the boot process logs in Guix, having a quick search I
found that I can use following options in grub configuration file:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
the problem is that based on current bootloader definition, there is no
option exposed for additional grub co
pukkamustard writes:
> Hi Joshua,
>
> You need to add the `skribe-reader` to the list of readers in your
> site configuration:
>
> ```
> #:readers (list commonmark-reader skribe-reader)
> ```
Thanks that fixed it!
>
> Hope that helps,
> -pukkamustard
>
> PS: Would you be interested in porting S
Hi Reza!
Reza Alizadeh Majd 写道:
I want to hide the boot process logs in Guix, having a quick
search I
found that I can use following options in grub configuration
file:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Forget this line. No part of it makes sense on Guix (except
‘quiet’, which is
Hey Reza and Guix,
I should add that even if it is not supported now, hacking on the grub
configuration is not too difficult and is located in gnu/bootloader/grub.scm.
You should be able to specify parameters there.
Hope that helps,
John
Hi Tobias!
Thanks for your response.
On Tue, 18 Aug 2020 18:04:05 +0200
Tobias Geerinckx-Rice wrote:
> Hi Reza!
>
> Reza Alizadeh Majd 写道:
> > I want to hide the boot process logs in Guix, having a quick
> > search I
> > found that I can use following options in grub configuration
> > file:
Hi John,
On Tue, 18 Aug 2020 09:54:00 -0700
John Soo wrote:
> Hey Reza and Guix,
>
> I should add that even if it is not supported now, hacking on the
> grub configuration is not too difficult and is located in
> gnu/bootloader/grub.scm. You should be able to specify parameters
> there.
Thanks