blob: 328690180457179ac77a3123df4f9e1830bc186d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Set to the list of devices you want to spawn a getty on if the device exists
GETTYS="tty1 tty2 tty3 tty4 tty5 tty6 hvc0"
# For every tty defined here, fill agetty options and baud rate if applicable
GETTYS_hvc0_OPTIONS="-L"
GETTYS_ttyS0_OPTIONS="-8 -h"
GETTYS_ttyS0_BAUDRATE="115200"
GETTYS_ttyS1_OPTIONS="-8 -h"
GETTYS_ttyS1_BAUDRATE="115200"
|