7ca42afe42
Move getty configuration from the .post-install script to deviceinfo.
8 lines
220 B
Bash
Executable file
8 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Enable GPS support
|
|
rc-update add gpsd default
|
|
sed -i 's/DEVICE=\"\"/DEVICE=\"\/dev\/ttymxc2\"/' /etc/conf.d/gpsd
|
|
sed -i 's/BAUDRATE=\"4800\"/BAUDRATE=\"9600\"/' /etc/conf.d/gpsd
|
|
|
|
rc-update add ofono default
|