User Tools

Site Tools


libre_computer_board_aml-s905x-cc_le_potato

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
libre_computer_board_aml-s905x-cc_le_potato [2023/04/19 15:39] austinlibre_computer_board_aml-s905x-cc_le_potato [2024/09/22 22:08] (current) – external edit 127.0.0.1
Line 41: Line 41:
   * dracut --kver="6.0.19-419654-g73f2949c2dd9"   * dracut --kver="6.0.19-419654-g73f2949c2dd9"
   * grub-mkconfig -o /boot/grub/grub.cfg   * grub-mkconfig -o /boot/grub/grub.cfg
-  * grub-mkstandalone -O arm64-efi -o /boot/efi/EFI/BOOT/BOOTAA64.EFI "boot/grub/grub.cfg=/boot/grub/grub.cfg"+  * grub-mkstandalone -O arm64-efi -o /boot/efi/EFI/BOOT/BOOTAA64.EFI "/boot/grub/grub.cfg=/boot/grub/grub.cfg"
  
  
Line 118: Line 118:
 FEATURES="getbinpkg" FEATURES="getbinpkg"
 </code> </code>
 +
 +=== Adding RTC ===
 +
 +  * wire your RTC to the GPIO same as a raspberry pi{{:rtc.jpeg?400|}}
 +  * install deps<code>emerge --ask dtc libgpiod</code>
 +  * clone libretech-wiring-tool<code>
 +git clone https://github.com/libre-computer-project/libretech-wiring-tool.git
 +</code>
 +  * compile and install the overlays and commands<code>
 +make
 +make install
 +</code>
 +  * create an init script to add the overlays: 
 +      * <code> vim /etc/init.d/rtc</code>
 +      * <code>
 +#!/sbin/openrc-run
 +# Copyright 2023 Gentoo Authors
 +# Distributed under the terms of the GNU General Public License v2
 +
 +name="i2c rtc overlays"
 +description="make rtc "
 +
 +depend() {
 +    before hwclock
 +}
 +
 +start() {
 +    /opt/librecomputer/libretech-wiring-tool/ldto enable i2c-ao
 +    /opt/librecomputer/libretech-wiring-tool/ldto enable i2c-ao-ds3231
 +}
 +</code>
 +  * set make script executable and add too boot runlevel<code>
 +chmod 755 rtc
 +rc-update add rtc boot
 +</code>
 +  * reboot and check dmesg, if it worked you'll see a log like so<code>
 +[   11.809520] rtc-ds1307 1-0068: registered as rtc0
 +[   11.810886] rtc-ds1307 1-0068: setting system clock to 2023-05-04T11:58:05 UTC (1683201485)
 +</code>
 +  * you can also check with i2cdetect denoting the UU in 0x68 location<code>
 +mobilemouse ~ # i2cdetect -y 1
 +      1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
 +00:                         -- -- -- -- -- -- -- --
 +10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
 +20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
 +30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
 +40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
 +50: -- -- -- -- -- -- -- 57 -- -- -- -- -- -- -- --
 +60: -- -- -- -- -- -- -- -- UU -- -- -- -- -- -- --
 +70: -- -- -- -- -- -- -- --
 +</code>
 +
 +=== GPIO Reference ===
 +
 +{{:potatogpio.png?800|}}
 +
 +
libre_computer_board_aml-s905x-cc_le_potato.1681918752.txt.gz · Last modified: 2024/09/22 22:08 (external edit)