22a5e4dda5
- Upgrade librem5-base to v33 - Include the haptic vibration driver in initfs for supporting osk-sdl's haptic feedback feature - remove gps udev rule in pmaports in favor of using rule from librem5-base - install modem audio udev rule from librem5-base - add openrc service for putting device into 'ship mode' on shutdown (prevents battery from slowly draining) - include Evergreen/r4 dtb in /boot - Fix audio with port of ucm config to ucm2 (patch submitted upstream here: https://source.puri.sm/Librem5/librem5-base/-/merge_requests/214)
8 lines
231 B
Bash
8 lines
231 B
Bash
#!/bin/sh
|
|
|
|
# Enable GPS support
|
|
rc-update add gpsd default
|
|
sed -i 's/DEVICES=\"/DEVICES=\"\/dev\/gnss0/' /etc/conf.d/gpsd
|
|
sed -i 's/GPSD_OPTIONS=\"/GPSD_OPTIONS=\"-s 9600/' /etc/conf.d/gpsd
|
|
|
|
rc-update add librem5-shipmode shutdown
|