bootloader: Reindent record type definition.
* gnu/bootloader.scm (<bootloader-configuration>): Reindent.
This commit is contained in:
parent
8a0e1bb12b
commit
91b6873b24
|
@ -104,25 +104,25 @@
|
||||||
(define-record-type* <bootloader-configuration>
|
(define-record-type* <bootloader-configuration>
|
||||||
bootloader-configuration make-bootloader-configuration
|
bootloader-configuration make-bootloader-configuration
|
||||||
bootloader-configuration?
|
bootloader-configuration?
|
||||||
(bootloader bootloader-configuration-bootloader) ; <bootloader>
|
(bootloader bootloader-configuration-bootloader) ;<bootloader>
|
||||||
(target bootloader-configuration-target ; string
|
(target bootloader-configuration-target ;string
|
||||||
(default #f))
|
(default #f))
|
||||||
(menu-entries bootloader-configuration-menu-entries ; list of <boot-parameters>
|
(menu-entries bootloader-configuration-menu-entries ;list of <boot-parameters>
|
||||||
(default '()))
|
(default '()))
|
||||||
(default-entry bootloader-configuration-default-entry ; integer
|
(default-entry bootloader-configuration-default-entry ;integer
|
||||||
(default 0))
|
(default 0))
|
||||||
(timeout bootloader-configuration-timeout ; seconds as integer
|
(timeout bootloader-configuration-timeout ;seconds as integer
|
||||||
(default 5))
|
(default 5))
|
||||||
(theme bootloader-configuration-theme ; bootloader-specific theme
|
(theme bootloader-configuration-theme ;bootloader-specific theme
|
||||||
(default #f))
|
(default #f))
|
||||||
(terminal-outputs bootloader-configuration-terminal-outputs ; list of symbols
|
(terminal-outputs bootloader-configuration-terminal-outputs ;list of symbols
|
||||||
(default '(gfxterm)))
|
(default '(gfxterm)))
|
||||||
(terminal-inputs bootloader-configuration-terminal-inputs ; list of symbols
|
(terminal-inputs bootloader-configuration-terminal-inputs ;list of symbols
|
||||||
(default '()))
|
(default '()))
|
||||||
(serial-unit bootloader-configuration-serial-unit ; integer | #f
|
(serial-unit bootloader-configuration-serial-unit ;integer | #f
|
||||||
(default #f))
|
(default #f))
|
||||||
(serial-speed bootloader-configuration-serial-speed ; integer | #f
|
(serial-speed bootloader-configuration-serial-speed ;integer | #f
|
||||||
(default #f)))
|
(default #f)))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
|
Loading…
Reference in New Issue