1
0

support for ISE 12

This commit is contained in:
Michael Gernoth 2010-05-22 13:22:00 +02:00
parent 4d5f52f3c6
commit 4ba5d6d931
2 changed files with 11 additions and 0 deletions

View File

@ -58,6 +58,9 @@
<P>To fix this, run the following command as root:<BR>
<kbd>sed -i -e 's/TEMPNODE/tempnode/' -e 's/SYSFS/ATTRS/g' -e 's/BUS/SUBSYSTEMS/' /etc/udev/rules.d/xusbdfwu.rules</kbd><BR>
You may have to reboot for this change to take effect.</P></LI>
<LI><P><I>2010-05-22</I>: Support for ISE 12 is now available in the driver, the presence of "windrvr6"
is recognized again.</P></LI>
</UL>
</P>
<H2>Supported Cables</H2>

View File

@ -672,3 +672,11 @@ int uname (struct utsname *__name) {
return ret;
}
#endif
/* Ugly hack for ISE 12. They don't seem to open /proc/modules with
* open() anymore... */
int _Z14isModuleLoadedPci(void) {
DPRINTF("Faking _Z14isModuleLoadedPci\n");
return 1;
}