Xilinx On Linux » History » Version 2
Alexis Jeandet, 16/07/2014 08:01 PM
1 | 1 | Alexis Jeandet | h1. Xilinx On Linux |
---|---|---|---|
2 | |||
3 | 2 | Alexis Jeandet | For fedora 20, to use Xilinx USB JTAG you need to update the udev rules: |
4 | 1 | Alexis Jeandet | |
5 | <pre><code class="bash"> |
||
6 | # version 0003 |
||
7 | SUBSYSTEM=="usb", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="0008", MODE="0664", GROUP="plugdev" |
||
8 | ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="0008", MODE="666" |
||
9 | SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="0007", RUN+="/sbin/fxload -v -t fx2 -I /usr/share/xusbdfwu.hex -D $tempnode" |
||
10 | SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="0009", RUN+="/sbin/fxload -v -t fx2 -I /usr/share/xusb_xup.hex -D $tempnode" |
||
11 | SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="000d", RUN+="/sbin/fxload -v -t fx2 -I /usr/share/xusb_emb.hex -D $tempnode" |
||
12 | SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="000f", RUN+="/sbin/fxload -v -t fx2 -I /usr/share/xusb_xlp.hex -D $tempnode" |
||
13 | SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="0013", RUN+="/sbin/fxload -v -t fx2 -I /usr/share/xusb_xp2.hex -D $tempnode" |
||
14 | SUBSYSTEMS=="usb", ACTION=="add", ATTRS{idVendor}=="03fd", ATTRS{idProduct}=="0015", RUN+="/sbin/fxload -v -t fx2 -I /usr/share/xusb_xse.hex -D $tempnode" |
||
15 | </code></pre> |