[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/1] services: Add agetty service.
From: |
Leo Famulari |
Subject: |
Re: [PATCH 1/1] services: Add agetty service. |
Date: |
Tue, 14 Feb 2017 19:24:17 -0500 |
User-agent: |
Mutt/1.7.2 (2016-11-26) |
On Tue, Feb 14, 2017 at 07:12:44PM -0500, Leo Famulari wrote:
> * gnu/services/base.scm (<agetty-configuration>): New record type.
> (agetty-shepherd-service, agetty-service): New procedures.
> (agetty-service-type): New variable.
My intention is to get a serial tty, for example /dev/ttyS0, so that I
can install GuixSD on a device that lacks any graphical display
interfaces:
http://pcengines.ch/apu2b4.htm
> +(define-record-type* <agetty-configuration>
> + agetty-configuration make-agetty-configuration
> + agetty-configuration?
> + (agetty agetty-configuration-agetty ;<package>
> + (default util-linux))
> + (tty agetty-configuration-tty) ;string
> + (term agetty-term ;string
> + (default #f))
> + (extra agetty-extra ;string
> + (default #f))
This 'extra' is a time-saving kludge. I'll add fields for all of
agetty's configuration options once I'm satisfied that the service works
on GuixSD.
For now, I can apply the attached diff and connect to a QEMU VM over an
emulated serial device.
Apply the diff and build a new installer image:
$ ./pre-inst-env guix system disk-image --image-size=1.5G \
gnu/system/install.scm
Copy the image out of your store, make it writable, and then boot it
with QEMU:
$ qemu-system-x86_64 -enable-kvm -m 3072 -net user -net nic,model=virtio \
-boot menu=on -drive file=/home/leo/tmp/test-image -serial pty
QEMU will tell you which pts device it's using, and then you can use
screen to connect to the correct device and log in:
$ screen -t 'test' /dev/pts/N 115200,-ixoff,-ixon
However, it doesn't work when I boot my physical device with the same
installer image.
When I connect to my physical device using the Keyspan USA-19H
serial-to-USB converter, I can watch the system boot, but Shepherd never
reports that the 'term-ttyS0' service has started, and I never see the
MOTD or login prompt.
Any advice or debugging ideas?
testing.diff
Description: Text document
signature.asc
Description: PGP signature
- [PATCH 1/1] services: Add agetty service., Leo Famulari, 2017/02/14
- Re: [PATCH 1/1] services: Add agetty service.,
Leo Famulari <=
- Re: [PATCH 1/1] services: Add agetty service., myglc2, 2017/02/15
- Re: [PATCH 1/1] services: Add agetty service., Leo Famulari, 2017/02/15
- Re: [V2 PATCH 1/1] services: Add agetty service., Leo Famulari, 2017/02/16
- Re: [V2 PATCH 1/1] services: Add agetty service., myglc2, 2017/02/17
- Re: [V2 PATCH 1/1] services: Add agetty service., Leo Famulari, 2017/02/17
- Re: [V2 PATCH 1/1] services: Add agetty service., myglc2, 2017/02/17