hydrophonitor/scripts/setup-rtc-1.sh

35 lines
793 B
Bash
Raw Normal View History

2022-10-22 11:41:10 +00:00
#!/bin/bash
set -x
echo "Setting up the real time clock module, part 1"
# Enable i2c
sudo raspi-config nonint do_i2c 0
# Enable i2c rtc on the default i2c pins
config="dtoverlay=i2c-rtc,ds3231"
if ! grep -q "$config" /boot/config.txt; then
echo "$config" | sudo tee -a /boot/config.txt
fi
2022-10-22 11:41:10 +00:00
# Disable fake-hwclock
2022-10-23 14:04:10 +00:00
sudo apt-get remove -y fake-hwclock
2022-10-22 11:41:10 +00:00
sudo update-rc.d -f fake-hwclock remove
sudo systemctl disable fake-hwclock
# Load needed modules at boot
config="i2c-bcm2708
2022-10-22 11:41:10 +00:00
i2c-dev
rtc-ds1307"
if ! grep -q "$config" /etc/modules; then
echo "$config" | sudo tee -a /etc/modules
fi
2022-10-22 11:41:10 +00:00
# Remove some lines from /lib/udev/hwclock-set
sudo sed -i '/^if \[ \-e \/run\/systemd\/system \] ; then$/,/^fi$/d' /lib/udev/hwclock-set
echo "Setup RTC part 1 done, reboot and run setup-rtc-2.sh"