rtc.sh 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. #!/bin/bash
  2. set -e
  3. Version=1.0
  4. echo -e "\e[93mHeadless Node RTC addon v$Version :\e[0m"
  5. echo -e "wareck@gmail.com"
  6. echo -e ""
  7. if [ -f /boot/dietpi.txt ];then DietPi_="YES";else DietPi_="NO";fi
  8. if ! [ -f .rtc ]
  9. then
  10. echo -e "This script will install RTC addon."
  11. echo -e "This will be done in three steps:"
  12. echo -e "1: Enable and install i2c prototcol to dialog with RTC board."
  13. echo -e "2: Reboot."
  14. echo -e "3: Install software , init RTC clock and synchronise clock."
  15. echo -e ""
  16. echo -e "After reboot, start this script again to do the second step."
  17. echo -e
  18. if [ $DietPi_ = "YES" ]
  19. then
  20. echo -e "\e[38;5;154mDietpi\e[0m image detected:"
  21. echo -e "This script will enable /etc/rc.local for AutoStart (disabled by default on Dietpi).\n"
  22. fi
  23. read -n 1 -r -s -p "Press any key to continue..."
  24. echo -e "\n\n\e[95mRaspberry update :\e[0m"
  25. sudo apt-get update
  26. echo -e "\n\e[95mInstalling libraries :\e[0m"
  27. sudo apt install python-smbus python3-smbus python-dev python3-dev i2c-tools rpi.gpio -y
  28. if ! grep "dtparam=i2c1=on" /boot/config.txt
  29. then
  30. sudo bash -c 'echo "" >>/boot/config.txt'
  31. sudo bash -c 'echo "# Enable i2c for RTC" >>/boot/config.txt'
  32. sudo bash -c 'echo "dtparam=i2c1=on" >>/boot/config.txt'
  33. fi
  34. if ! grep "i2c-dev" /etc/modules ; then sudo bash -c 'echo "i2c-dev" >>/etc/modules';fi
  35. if ! grep "i2c-bcm2708" /etc/modules ; then sudo bash -c 'echo "i2c-bcm2708" >>/etc/modules';fi
  36. if ! grep "rtc-ds1307" /etc/modules ; then sudo bash -c 'echo "rtc-ds1307" >>/etc/modules';fi
  37. if ! grep "rtc-pcf8563" /etc/modules ; then sudo bash -c 'echo "rtc-pcf8563" >>/etc/modules';fi
  38. if ! grep "dtoverlay=i2c-rtc,ds1307" /boot/config.txt >/dev/null
  39. then
  40. sudo bash -c 'echo "" >>/boot/config.txt'
  41. sudo bash -c 'echo "# RTC clock ds1307 based" >>/boot/config.txt'
  42. sudo bash -c 'echo "dtoverlay=i2c-rtc,ds1307" >>/boot/config.txt'
  43. fi
  44. echo -e "\n\e[31mFirst step of RTC install was done.\e[0m"
  45. echo -e "\e[31mYou need to reboot and start rtc.sh again!\n\e[0m"
  46. touch .rtc && exit 0
  47. fi
  48. function Startup_ {
  49. echo -e "\n\e[95mAdding RTC to RPI startup:\e[0m"
  50. if [ $DietPi_ = "YES" ];then Dietpi_startup_;fi
  51. if ! grep "echo ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device || true" /etc/rc.local >/dev/null 2>&1
  52. then
  53. sudo bash -c 'sed -i -e "s/exit 0//g" /etc/rc.local'
  54. sudo bash -c 'echo "#RTC module init" >>/etc/rc.local'
  55. sudo bash -c 'echo "echo ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device || true" >> /etc/rc.local'
  56. sudo bash -c 'echo "sudo hwclock -s" >>/etc/rc.local'
  57. sudo bash -c 'echo "exit 0" >>/etc/rc.local'
  58. fi
  59. echo -e "Done."
  60. echo -e "\n\e[95mDisable fake RTC service:\e[0m"
  61. sudo apt-get -y remove fake-hwclock
  62. sudo update-rc.d -f fake-hwclock remove
  63. sudo systemctl disable fake-hwclock || true
  64. sudo systemctl disable fake-hwclock.service || true
  65. echo -e "Done."
  66. echo -e "\n\e[95mRTC Checks:\e[0m"
  67. echo -e -n "Internal time: "
  68. date
  69. echo -e -n "RTC module time: "
  70. sudo bash -c 'hwclock -r'
  71. echo -e ""
  72. echo -e "\e[97mRTC Installation was finish !\e[0m\n"
  73. }
  74. function install_step2 {
  75. sudo modprobe i2c-dev
  76. echo -e "\n\e[95mCreate device:\e[0m"
  77. sudo bash -c 'echo ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device > /dev/null 2>&1' || true
  78. echo "Done."
  79. echo -e "\n\e[95mRTC clock reset:\e[0m"
  80. sudo bash -c 'hwclock -r'
  81. echo -e "\n\e[95mRTC clock setup :\e[0m"
  82. sudo bash -c 'hwclock -w'
  83. echo "Done."
  84. Startup_
  85. }
  86. function Dietpi_startup_ {
  87. if ! [ -f /etc/rc.local ]
  88. then
  89. cat <<'EOF'>>/tmp/rc.local
  90. #!/bin/bash
  91. exit 0
  92. EOF
  93. sudo cp /tmp/rc.local /etc/
  94. sudo chmod +x /etc/rc.local
  95. fi
  96. sudo systemctl disable rc-local
  97. sudo systemctl disable rc.local
  98. cat <<'EOF'>> /tmp/rc-local.service
  99. # This file is part of systemd.
  100. #
  101. # systemd is free software; you can redistribute it and/or modify it
  102. # under the terms of the GNU Lesser General Public License as published by
  103. # the Free Software Foundation; either version 2.1 of the License, or
  104. # (at your option) any later version.
  105. # This unit gets pulled automatically into multi-user.target by
  106. # systemd-rc-local-generator if /etc/rc.local is executable.
  107. [Unit]
  108. Description=/etc/rc.local Compatibility
  109. ConditionFileIsExecutable=/etc/rc.local
  110. After=network.target
  111. [Service]
  112. Type=forking
  113. ExecStart=/etc/rc.local start
  114. TimeoutSec=0
  115. RemainAfterExit=yes
  116. GuessMainPID=no
  117. EOF
  118. sudo cp /tmp/rc-local.service /lib/systemd/system/rc-local.service
  119. sudo systemctl daemon-reload
  120. }
  121. function rtc_check {
  122. echo -e "\e[95m...Install step 2...\e[0m\n"
  123. echo -e "\e[95mRTC check :\e[0m"
  124. sudo su -c 'echo ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device' > /dev/null 2>&1 | true
  125. sudo i2cdetect -y 1
  126. echo -e "\e[31mDS1307 RTC module: You must see \"UU\" on address 68.\e[0m"
  127. echo -e "\e[31mPCf8563 RTC module: You must see \"UU\" on address 51.\e[0m"
  128. echo -e "\e[31mIf not, double check your wiring and try again.\e[0m"
  129. echo -e "\e[31mIf still not, choose \"Quit\" and follow instructions.\e[0m\n"
  130. PS3='
  131. Please enter your choice: '
  132. options=("Check again" "Continue" "Quit")
  133. select opt in "${options[@]}"
  134. do
  135. case $opt in
  136. "Check again")
  137. rtc_check
  138. break
  139. ;;
  140. "Continue")
  141. break
  142. ;;
  143. "Quit")
  144. echo -e "\n\e[93mIf you don't have \"UU\" on address 68\e[0m:"
  145. echo -e "\n\e[93mFirst double check your wiring.\e[0m\n"
  146. echo -e "\e[93mthen type :\e[0m"
  147. echo -e "\e[93msudo su\e[0m"
  148. echo -e "\e[93mecho ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device\e[0m"
  149. echo -e "\e[93mexit\e[0m"
  150. echo -e ""
  151. echo -e "\e[93mthen \e[0m"
  152. echo -e "\e[93m./rtc.sh\n\e[0m"
  153. exit 0 && break
  154. ;;
  155. *) echo invalid option;;
  156. esac
  157. done
  158. }
  159. if [ -f .rtc ]
  160. then
  161. rtc_check
  162. install_step2
  163. fi