Last active
September 8, 2024 01:33
-
-
Save unaimillan/06bb70cb5337db07bfd9ae6938d08bc1 to your computer and use it in GitHub Desktop.
jtag `jtagd.service` service file for Quartus Prime jtagd server to run it using the systemd service on startup. Copy file to the /etc/systemd/system/ folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=JTAG Deamon | |
[Service] | |
Type=simple | |
Environment="LD_LIBRARY_PATH=/home/{YOUR USER}/intelFPGA_lite/{YOUR QUARTUS VERSION}/quartus/linux64" | |
# Environment="LD_LIBRARY_PATH=/home/user/intelFPGA_lite/21.1/quartus/linux64" # This works for "user" and Quartus 21.1 | |
ExecStart=/home/user/intelFPGA_lite/21.1/quartus/linux64/jtagd --foreground # --debug | |
# Restart=on-failure | |
# RestartSec=5 | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment