diff options
author | Tim Gesthuizen <tim.gesthuizen@yahoo.de> | 2020-02-06 19:26:03 +0100 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2020-02-07 11:51:02 +0800 |
commit | daec54f062a703ac0e4e3b4361e5a0cf7309053a (patch) | |
tree | 2cc9423f5b3d6879ad3b870ac9d38ee5f970b617 /gnu | |
parent | f83d07f7778b699d46741a5667113342f5f0a737 (diff) | |
download | guix-daec54f062a703ac0e4e3b4361e5a0cf7309053a.tar guix-daec54f062a703ac0e4e3b4361e5a0cf7309053a.tar.gz |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/desktop.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 9dcdf38be1..1294d748ac 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -1070,7 +1070,7 @@ as expected."))) (match-lambda (($ <inputattach-configuration> type device baud-rate log-file) (let ((args (append (if baud-rate - (list "--baud-rate" (number->string baud-rate)) + (list "--baud" (number->string baud-rate)) '()) (list (string-append "--" type) device)))) |