diff options
| author | Mathieu Othacehe <othacehe@gnu.org> | 2022-08-29 22:24:24 +0200 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-08-30 08:51:12 +0200 |
| commit | 93ed34977eba26fbb74881bbb3d9af9b3118a663 (patch) | |
| tree | 6e899716b04d6f8086977064394ceebf8cbf3295 /gnu/bootloader.scm | |
| parent | f126f23b132148192b2c9a89032a5831af0b3c52 (diff) | |
bootloader: Wrap lines.
* gnu/bootloader (<bootloader-configuration>): Wrap lines, no functional
change.
Diffstat (limited to 'gnu/bootloader.scm')
| -rw-r--r-- | gnu/bootloader.scm | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/gnu/bootloader.scm b/gnu/bootloader.scm index 7d076ec51cc..77c05e89464 100644 --- a/gnu/bootloader.scm +++ b/gnu/bootloader.scm | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2017 David Craven <david@craven.ch> | 2 | ;;; Copyright © 2017 David Craven <david@craven.ch> |
| 3 | ;;; Copyright © 2017, 2020 Mathieu Othacehe <m.othacehe@gmail.com> | 3 | ;;; Copyright © 2017, 2020, 2022 Mathieu Othacehe <othacehe@gnu.org> |
| 4 | ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> | 4 | ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> |
| 5 | ;;; Copyright © 2019, 2021 Ludovic Courtès <ludo@gnu.org> | 5 | ;;; Copyright © 2019, 2021 Ludovic Courtès <ludo@gnu.org> |
| 6 | ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> | 6 | ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> |
| @@ -212,31 +212,33 @@ instead~%"))) | |||
| 212 | (define-record-type* <bootloader-configuration> | 212 | (define-record-type* <bootloader-configuration> |
| 213 | bootloader-configuration make-bootloader-configuration | 213 | bootloader-configuration make-bootloader-configuration |
| 214 | bootloader-configuration? | 214 | bootloader-configuration? |
| 215 | (bootloader bootloader-configuration-bootloader) ;<bootloader> | 215 | (bootloader |
| 216 | (targets %bootloader-configuration-targets ;list of strings | 216 | bootloader-configuration-bootloader) ;<bootloader> |
| 217 | (default #f)) | 217 | (targets %bootloader-configuration-targets |
| 218 | (target %bootloader-configuration-target ;deprecated | 218 | (default #f)) ;list of strings |
| 219 | (default #f) (sanitize warn-target-field-deprecation)) | 219 | (target %bootloader-configuration-target ;deprecated |
| 220 | (menu-entries bootloader-configuration-menu-entries ;list of <menu-entry> | 220 | (default #f) |
| 221 | (default '())) | 221 | (sanitize warn-target-field-deprecation)) |
| 222 | (default-entry bootloader-configuration-default-entry ;integer | 222 | (menu-entries bootloader-configuration-menu-entries |
| 223 | (default 0)) | 223 | (default '())) ;list of <menu-entry> |
| 224 | (timeout bootloader-configuration-timeout ;seconds as integer | 224 | (default-entry bootloader-configuration-default-entry |
| 225 | (default 5)) | 225 | (default 0)) ;integer |
| 226 | (keyboard-layout bootloader-configuration-keyboard-layout ;<keyboard-layout> | #f | 226 | (timeout bootloader-configuration-timeout |
| 227 | (default #f)) | 227 | (default 5)) ;seconds as integer |
| 228 | (theme bootloader-configuration-theme ;bootloader-specific theme | 228 | (keyboard-layout bootloader-configuration-keyboard-layout |
| 229 | (default #f)) | 229 | (default #f)) ;<keyboard-layout> | #f |
| 230 | (terminal-outputs bootloader-configuration-terminal-outputs ;list of symbols | 230 | (theme bootloader-configuration-theme |
| 231 | (default '(gfxterm))) | 231 | (default #f)) ;bootloader-specific theme |
| 232 | (terminal-inputs bootloader-configuration-terminal-inputs ;list of symbols | 232 | (terminal-outputs bootloader-configuration-terminal-outputs |
| 233 | (default '())) | 233 | (default '(gfxterm))) ;list of symbols |
| 234 | (serial-unit bootloader-configuration-serial-unit ;integer | #f | 234 | (terminal-inputs bootloader-configuration-terminal-inputs |
| 235 | (default #f)) | 235 | (default '())) ;list of symbols |
| 236 | (serial-speed bootloader-configuration-serial-speed ;integer | #f | 236 | (serial-unit bootloader-configuration-serial-unit |
| 237 | (default #f)) | 237 | (default #f)) ;integer | #f |
| 238 | (device-tree-support? bootloader-configuration-device-tree-support? | 238 | (serial-speed bootloader-configuration-serial-speed |
| 239 | (default #t))) ;boolean | 239 | (default #f)) ;integer | #f |
| 240 | (device-tree-support? bootloader-configuration-device-tree-support? | ||
| 241 | (default #t))) ;boolean | ||
| 240 | 242 | ||
| 241 | (define-deprecated (bootloader-configuration-target config) | 243 | (define-deprecated (bootloader-configuration-target config) |
| 242 | bootloader-configuration-targets | 244 | bootloader-configuration-targets |
