bootloader: extlinux: Add a warning message on top of generated conf file.
* gnu/bootloader/extlinux.scm (extlinux-configuration-file): Warn users about the fact that the configuration file is automatically generated.
This commit is contained in:
parent
f1d1ef71ea
commit
65efb3c031
|
@ -59,7 +59,8 @@ corresponding to old generations of the system."
|
||||||
#~(call-with-output-file #$output
|
#~(call-with-output-file #$output
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(let ((timeout #$(bootloader-configuration-timeout config)))
|
(let ((timeout #$(bootloader-configuration-timeout config)))
|
||||||
(format port "
|
(format port "# This file was generated from your GuixSD configuration. Any changes
|
||||||
|
# will be lost upon reconfiguration.
|
||||||
UI menu.c32
|
UI menu.c32
|
||||||
PROMPT ~a
|
PROMPT ~a
|
||||||
TIMEOUT ~a~%"
|
TIMEOUT ~a~%"
|
||||||
|
|
Loading…
Reference in New Issue