]> git.zerfleddert.de Git - usb-driver/blame - README
add support for ise 8.1i
[usb-driver] / README
CommitLineData
113af964 1This library emulates Jungo Windrvr USB functions in userspace which are
2required by XILINX impact to access the Platform cable USB. With this library
3it is possible to access the cable without loading a proprietary kernel module
4which breaks with every new kernel release. It uses the USB functions provided
5by the libusb userspace library instead and should work on every kernel version
6which is supported by libusb. It was written against impact from ISE Webpack
79.1SP1 and will very probably not work with older impact versions (<9.1).
8
9Build the library by calling `make'.
10
11To use this library you have to preload the library before starting impact:
12
13$ LD_PRELOAD=/path/to/libusb-driver.so impact
14or
15$ export LD_PRELOAD=/path/to/libusb-driver.so (for sh shells)
16$ setenv LD_PRELOAD /path/to/libusb-driver.so (for csh shells)
17$ impact
fdd05738 18
19To use the device as ordinary user, put the following line in a new
20file in /etc/udev/rules.d/ and restart udev:
21ACTION=="add", BUS=="usb", SYSFS{idVendor}=="03fd", MODE="666"
979132fe 22
23
24If your cable does not have the ID 03fd:0008 in the output of lsusb,
25the initial firmware has not been loaded (loading it changes the
26product-ID from another value to 8). To load the firmware follow
27these steps:
28
c2e95a30 291. If you have no /etc/udev/rules.d/xusbdfwu.rules file, copy it from
30 /path/to/ISE/bin/lin/xusbdfwu.rules to /etc/udev/rules.d/xusbdfwu.rules
979132fe 31
322. Install the package containing /sbin/fxload from your linux distribution.
33 It is usually called "fxload"
34
353. copy the file /path/to/ISE/bin/lin/xusbdfwu.hex to /usr/share/xusbdfwu.hex
36
374. restart udev and re-plug the cable
Impressum, Datenschutz