1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-23 17:45:53 +02: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:
Ludovic Courtès
2017-09-11 23:00:40 +02:00
parent 5f7fe1c57e
commit 7940188ebf
+1 -1
View File
@@ -250,7 +250,7 @@ directly by the user."
rest ...)
(boot-parameters
(label label)
(root-device (device->sexp root))
(root-device (device-sexp->device root))
(bootloader-name
(match (assq 'bootloader-name rest)