mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
services: inputattach: Fix broken baud rate option.
* gnu/services/desktop.scm (inputattach-shepherd-service): Use "--baud" for setting the baud-rate. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
f83d07f777
commit
daec54f062
1 changed files with 1 additions and 1 deletions
|
@ -1070,7 +1070,7 @@ (define inputattach-shepherd-service
|
||||||
(match-lambda
|
(match-lambda
|
||||||
(($ <inputattach-configuration> type device baud-rate log-file)
|
(($ <inputattach-configuration> type device baud-rate log-file)
|
||||||
(let ((args (append (if baud-rate
|
(let ((args (append (if baud-rate
|
||||||
(list "--baud-rate" (number->string baud-rate))
|
(list "--baud" (number->string baud-rate))
|
||||||
'())
|
'())
|
||||||
(list (string-append "--" type)
|
(list (string-append "--" type)
|
||||||
device))))
|
device))))
|
||||||
|
|
Loading…
Reference in a new issue