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
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

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)