Jump to content

Mango Jo

Members
  • Posts

    10
  • Joined

  • Last visited

  1. I confirm that it doesn't work properly I'm using GitLab runner to try and compile armbian with no success. I think to be able to compile you need to have docker in privileged mode but I'm not sure how to circumvent this issue yet.
  2. Wait I don't know how to remove or modify a reply. Is this something only reserved for op? I'll be back with an answer
  3. Your assessment is correct. I'm modifying my code so it doesn't lead to misinformation! thanks
  4. Hello all, another option is to modify the service directly to restart it automatically, here's an example provided by chat gpt : [Unit] Description=WireGuard via wg-quick(8) for %I After=network-online.target nss-lookup.target Wants=network-online.target nss-lookup.target PartOf=wg-quick.target Documentation=man:wg-quick(8) Documentation=man:wg(8) Documentation=https://www.wireguard.com/ Documentation=https://www.wireguard.com/quickstart/ Documentation=https://git.zx2c4.com/wireguard-tools/about/src/man/wg-quick.8 Documentation=https://git.zx2c4.com/wireguard-tools/about/src/man/wg.8 [Service] Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/wg-quick up %i ExecStop=/usr/bin/wg-quick down %i ExecReload=/bin/bash -c 'exec /usr/bin/wg syncconf %i <(exec /usr/bin/wg-quick strip %i)' Environment=WG_ENDPOINT_RESOLUTION_RETRIES=infinity Restart=always RestartSec=5 [Install] WantedBy=multi-user.target the restart always and restart sec makes the service restart automatically after 5 seconds if failed. this means that on boot it will fail and restart automatically after 5 seconds which might be enough time for network connection.
  5. Exactly the same error using Radxa Zero and armbian bookworm. Like the exact same thing. When i manualy restart the service all is good. when i try to enable systemd-networkd-wait-online.service , the vendor preset is disabled meaning that the wg service has no way to know when the network is online : After=network-online.target nss-lookup.target Wants=network-online.target nss-lookup.target any help appreciated.
  6. Hi, Like the title says the UART overlays are not working on the armbian radxa zero device if I use the official out-of-the-box image. Using the armbian-config I can enable UART A and B but these changes do not reflect in the /dev/tty devices (using other distros is can see /dev/ttyAML0, /dev/ttyAML1 and /dev/ttyAML4). Unless the devices are called something else i confirm that the overlays are not working. That being said I want to recompile a armbian image with the correct overlays but I am a complete noob. Here is my plan : i successfully compiled a minimal cli armbian image for the radxa zero without any modification (whooohoo) i found the overlays from the official radxa github (whooohoo) : https://github.com/radxa/overlays/blob/main/arch/arm64/boot/dts/amlogic/overlays/README.overlays Now i want to include these overlays in the armbian project so that they can be compiled in the image. Reading the documentation i think that i need to include these files somewhere in the package directory: or somewhere in the config directory I also think I need to include some compiling instructions. I feel like I'm so close but at the same time, I feel like I'm so far. Any direction is very much appreciated. Thank you ps the board is officially supported but I can't find the appropriate topic.
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines