mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
system: Fix typo in 'read-boot-parameters'.
Fixes a regression introduced in
commit 075681d350
.
* gnu/system.scm (read-boot-parameters): For 'root-device', use
'device-sexp->device', not 'device->sexp'.
This commit is contained in:
parent
5f7fe1c57e
commit
7940188ebf
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ (define device-sexp->device
|
|||
rest ...)
|
||||
(boot-parameters
|
||||
(label label)
|
||||
(root-device (device->sexp root))
|
||||
(root-device (device-sexp->device root))
|
||||
|
||||
(bootloader-name
|
||||
(match (assq 'bootloader-name rest)
|
||||
|
|
Loading…
Reference in a new issue